-
Notifications
You must be signed in to change notification settings - Fork 19
Space age update #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Space age update #75
Changes from 16 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
08ee869
Use HR versions by default in 2.0
Danielv123 f326323
Add 2.0 compatibility layer
Danielv123 c7e16ad
Add compat for global being renamed to storage
Danielv123 a2a261e
LuaRendering commands now return LuaRenderObjects
Danielv123 9736f02
space age removed shorthand ingredients specification
Danielv123 94f0628
Update graphics and circuit connectors to space age
Danielv123 e316853
Use version_ge from clusterio_lib during runtime
Danielv123 0200078
New space age prototype api
Danielv123 c450dcb
Add compat with new runtime prototype api
Danielv123 f905de6
Quality support for inventory combinators
Danielv123 9c278e0
Export items, send item requests with quality support
Danielv123 a6dbe00
Fix sending requests
Danielv123 7e17157
Fix fluid crashes and capacity issues
Danielv123 b055987
Fix typos
Danielv123 00fd79a
Bump mod versions
Danielv123 87bc7e7
Add CI for automated builds
Danielv123 29ddc58
New extractor and injector graphics by hurricane
Danielv123 9248f07
Fix 1.1 prototype compatibility
Danielv123 6b4728b
New graphics and icons for item, fluid and electricity entities
Danielv123 b6cba8c
New graphics
Danielv123 2064b0b
Remove blender post processing script
Danielv123 0ec5df7
Update locale for space age fluids
Danielv123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| # This workflow will do a clean install of node dependencies, cache/restore them, build the source code and run tests across different versions of node | ||
| # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | ||
|
|
||
| name: Node.js CI | ||
|
|
||
| on: | ||
| push: | ||
| pull_request: | ||
|
|
||
| jobs: | ||
| build: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 8 | ||
| - uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: 22.x | ||
| - run: pnpm i --no-frozen-lockfile | ||
| - run: node build.js | ||
| # Upload build to artifacts | ||
| - name: Upload build to artifacts | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: subspace_storage | ||
| path: ./dist | ||
| if-no-files-found: error | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| local compat = {} | ||
|
|
||
| function compat.set_parameters(combinator, parameters) | ||
| combinator.parameters = parameters | ||
| end | ||
|
|
||
| function compat.version_ge(major, minor) | ||
| return major < 2 or major == 2 and minor == 0 | ||
| end | ||
|
|
||
| return compat |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.