-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from HiveGamesOSS/develop
1.4.0
- Loading branch information
Showing
123 changed files
with
1,576,554 additions
and
207 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -78,6 +78,7 @@ jobs: | |
|
||
- name: Sign files with Trusted Signing | ||
uses: azure/[email protected] | ||
if: github.repository == 'HiveGamesOSS/Chunker' | ||
with: | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
|
This file contains 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 |
---|---|---|
|
@@ -69,6 +69,7 @@ jobs: | |
|
||
- name: Sign files with Trusted Signing | ||
uses: azure/[email protected] | ||
if: github.repository == 'HiveGamesOSS/Chunker' | ||
with: | ||
azure-tenant-id: ${{ secrets.AZURE_TENANT_ID }} | ||
azure-client-id: ${{ secrets.AZURE_CLIENT_ID }} | ||
|
@@ -139,12 +140,26 @@ jobs: | |
cd artifacts && zip -r "chunker-cli-linux-amd64.zip" "chunker-cli" && cd .. | ||
rm -rf "artifacts/chunker-cli" | ||
- name: Compress Linux Unpacked | ||
run: | | ||
version="${{ github.event.inputs.version }}" | ||
cd artifacts/linux-unpacked && zip -r "../Chunker-$version-amd64-linux.zip" . && cd ../.. | ||
rm -rf "artifacts/linux-unpacked" | ||
- name: Rename AppImage files | ||
run: | | ||
for file in artifacts/*.AppImage; do | ||
mv "$file" "${file%.AppImage}-amd64-linux.AppImage" | ||
done | ||
- name: Rename deb files | ||
run: | | ||
for file in artifacts/*.deb; do | ||
new_file="${file//chunker-electron_/Chunker-}" | ||
new_file="${new_file//_/-}" | ||
mv "$file" "${new_file%.deb}-linux.deb" | ||
done | ||
- name: Download Windows artifact | ||
uses: actions/download-artifact@v4 | ||
with: | ||
|
@@ -156,6 +171,12 @@ jobs: | |
cd artifacts && zip -r "chunker-cli-windows-x86.zip" "chunker-cli" && cd .. | ||
rm -rf "artifacts/chunker-cli" | ||
- name: Compress Windows Unpacked | ||
run: | | ||
version="${{ github.event.inputs.version }}" | ||
cd artifacts/win-unpacked && zip -r "../Chunker-$version-windows-x86.zip" . && cd ../.. | ||
rm -rf "artifacts/win-unpacked" | ||
- name: Rename exe files | ||
run: | | ||
for file in artifacts/*.exe; do | ||
|
This file contains 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 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 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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
{ | ||
"name": "chunker-electron", | ||
"version": "1.3.1", | ||
"description": "Convert worlds between Java and Bedrock.", | ||
"private": true, | ||
"version": "1.4.0", | ||
"description": "Convert worlds between Java and Bedrock.", | ||
"main": "src/index.js", | ||
"type": "module", | ||
"scripts": { | ||
|
@@ -11,10 +11,11 @@ | |
"publish": "node src/hook/pre-build.js && electron-builder" | ||
}, | ||
"keywords": [], | ||
"author": "Hive Games Limited", | ||
"author": "Hive Games Limited <[email protected]>", | ||
"homepage": "https://github.com/HiveGamesOSS/Chunker", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"electron": "33.0.2", | ||
"electron": "33.2.0", | ||
"electron-builder": "25.0.5", | ||
"git-last-commit": "^1.0.1" | ||
}, | ||
|
@@ -25,12 +26,15 @@ | |
"icon": "../ui/build/favicon.png", | ||
"win": { | ||
"target": [ | ||
"portable" | ||
"portable", | ||
"dir" | ||
] | ||
}, | ||
"linux": { | ||
"target": [ | ||
"AppImage" | ||
"AppImage", | ||
"deb", | ||
"dir" | ||
] | ||
}, | ||
"extraResources": [ | ||
|
@@ -54,7 +58,7 @@ | |
"dependencies": { | ||
"archiver": "^7.0.1", | ||
"electron-dl": "^4.0.0", | ||
"electron-log": "^5.2.0", | ||
"electron-log": "^5.2.2", | ||
"fs-extra": "^11.2.0", | ||
"jszip": "^3.10.1" | ||
} | ||
|
This file contains 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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 |
---|---|---|
|
@@ -2,6 +2,9 @@ | |
"name": "chunker-app", | ||
"private": true, | ||
"description": "Parent package of the Chunker Electron app and user interface.", | ||
"author": "Hive Games Limited <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "https://github.com/HiveGamesOSS/Chunker", | ||
"scripts": { | ||
"start": "concurrently \"cross-env BROWSER=none npm start --prefix ui\" \"npx wait-on http://127.0.0.1:3000 && cross-env DEV_UI_URL=http://localhost:3000 DEV_CLI_EXECUTABLE=../../cli/build/libs/ npm start --prefix electron\"", | ||
"build": "npm run build --prefix ui && npm run publish --prefix electron" | ||
|
@@ -12,10 +15,8 @@ | |
"ui" | ||
] | ||
}, | ||
"author": "Hive Games Limited", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"concurrently": "^9.0.1", | ||
"concurrently": "^9.1.0", | ||
"cross-env": "^7.0.3", | ||
"wait-on": "^8.0.1" | ||
} | ||
|
This file contains 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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
{ | ||
"name": "chunker-ui", | ||
"description": "React based interface for the Chunker electron app.", | ||
"private": true, | ||
"description": "React based interface for the Chunker electron app.", | ||
"author": "Hive Games Limited <[email protected]>", | ||
"license": "MIT", | ||
"homepage": "./", | ||
"scripts": { | ||
"start": "react-scripts start", | ||
"build": "react-scripts build", | ||
"eslint": "eslint src/**/*.js", | ||
"test": "react-scripts test" | ||
}, | ||
"author": "Hive Games", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@fortawesome/free-solid-svg-icons": "^6.6.0", | ||
"@fortawesome/react-fontawesome": "^0.2.2", | ||
|
@@ -24,7 +24,7 @@ | |
"leaflet-mouse-position": "^1.2.0", | ||
"react": "^18.3.1", | ||
"react-dom": "^18.3.1", | ||
"react-router-dom": "^6.27.0", | ||
"react-router-dom": "^6.28.0", | ||
"react-scripts": "^5.0.1", | ||
"react-select": "^5.8.2", | ||
"react-syntax-highlighter": "^15.6.1", | ||
|
Oops, something went wrong.