-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into main_translations
- Loading branch information
Showing
107 changed files
with
1,705 additions
and
82 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 |
---|---|---|
@@ -0,0 +1,113 @@ | ||
# Definisce il nome del workflow: | ||
name: Create Builds | ||
|
||
# Trigger del workflow quando viene modificato il file delle versioni: | ||
on: | ||
push: | ||
paths: | ||
- 'datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json' | ||
|
||
jobs: | ||
# Job per controllare quali versioni sono state modificate: | ||
check_changes: | ||
runs-on: ubuntu-24.04 | ||
outputs: | ||
release_changed: ${{ steps.check.outputs.release_changed }} | ||
nightly_changed: ${{ steps.check.outputs.nightly_changed }} | ||
steps: | ||
# Checkout del repository: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 2 | ||
|
||
# Script per verificare i cambiamenti nelle versioni: | ||
- name: Check changes | ||
id: check | ||
shell: bash | ||
run: | | ||
# Definisce il percorso del file da controllare: | ||
FILE="datapacks/Skyblock CE datapacks/data/skyblock/function/versions/changelog/building_version.json" | ||
# Gestisce il caso del primo commit: | ||
if ! git rev-parse HEAD^ >/dev/null 2>&1; then | ||
echo "First commit - setting both as changed" | ||
echo "release_changed=true" >> "$GITHUB_OUTPUT" | ||
echo "nightly_changed=true" >> "$GITHUB_OUTPUT" | ||
exit 0 | ||
fi | ||
# Confronta le versioni Release tra commit precedente e attuale: | ||
OLD_RELEASE=$(git show HEAD^:"$FILE" | grep '"Release Building"' || echo "") | ||
NEW_RELEASE=$(git show HEAD:"$FILE" | grep '"Release Building"' || echo "") | ||
OLD_NIGHTLY=$(git show HEAD^:"$FILE" | grep '"Nightly Building"' || echo "") | ||
NEW_NIGHTLY=$(git show HEAD:"$FILE" | grep '"Nightly Building"' || echo "") | ||
# Imposta i flag per i cambiamenti Release: | ||
if [ "$OLD_RELEASE" != "$NEW_RELEASE" ]; then | ||
echo "release_changed=true" >> "$GITHUB_OUTPUT" | ||
else | ||
echo "release_changed=false" >> "$GITHUB_OUTPUT" | ||
fi | ||
# Imposta i flag per i cambiamenti Nightly: | ||
if [ "$OLD_NIGHTLY" != "$NEW_NIGHTLY" ]; then | ||
echo "nightly_changed=true" >> "$GITHUB_OUTPUT" | ||
else | ||
echo "nightly_changed=false" >> "$GITHUB_OUTPUT" | ||
fi | ||
# Job per creare il build Release: | ||
release_build: | ||
needs: check_changes | ||
if: needs.check_changes.outputs.release_changed == 'true' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
# Checkout del repository: | ||
- uses: actions/checkout@v4 | ||
|
||
# Carica i file della Release come artifact: | ||
- name: Upload release content | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Skyblock_CE_Latest | ||
# Include tutti i file tranne quelli specificati: | ||
path: | | ||
. | ||
!.git/ | ||
!.github/ | ||
!.gitignore | ||
!Resources Pack/ | ||
!crowdin.yml | ||
!spyglass.json | ||
!*.zip | ||
!.DS_Store | ||
if-no-files-found: error | ||
retention-days: 60 | ||
|
||
# Job per creare il build Nightly: | ||
nightly_build: | ||
needs: check_changes | ||
if: needs.check_changes.outputs.nightly_changed == 'true' | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
# Checkout del repository: | ||
- uses: actions/checkout@v4 | ||
|
||
# Carica i file Nightly come artifact: | ||
- name: Upload nightly content | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: Skyblock_CE_Nightly_Snapshots | ||
# Include tutti i file tranne quelli specificati: | ||
path: | | ||
. | ||
!.git/ | ||
!.github/ | ||
!.gitignore | ||
!Resources Pack/ | ||
!crowdin.yml | ||
!spyglass.json | ||
!*.zip | ||
!.DS_Store | ||
if-no-files-found: error | ||
retention-days: 60 |
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Crowdin Action | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
synchronize-with-crowdin: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: crowdin action | ||
uses: crowdin/github-action@v2 | ||
with: | ||
upload_sources: true | ||
upload_translations: false | ||
download_translations: true | ||
localization_branch_name: main_translations | ||
create_pull_request: true | ||
pull_request_title: 'New Crowdin Translations' | ||
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)' | ||
pull_request_base_branch_name: 'main' | ||
env: | ||
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository). | ||
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | ||
|
||
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api | ||
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} | ||
|
||
# Visit https://crowdin.com/settings#api-key to create this token | ||
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} |
Binary file renamed
BIN
+8.43 MB
...k-classic-edition-portable-1.21_JE-3a.jar → ...k-classic-edition-portable-1.21_JE-4a.jar
Binary file not shown.
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
25 changes: 0 additions & 25 deletions
25
...yblock CE datapacks/data/skyblock/function/versions/changelog/nightly_building.mcfunction
This file was deleted.
Oops, something went wrong.
10 changes: 10 additions & 0 deletions
10
...s/legacy_skyblock/data/skyblock_legacy/function/legacy_remove/nightly_building.mcfunction
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#Copyright (C) Loweredgames (Lorenzo Giannini) | ||
#Contacted:<https://github.com/Loweredgames> | ||
#This Source Code Form is subject to the terms of the License. | ||
#NOT OFFICIAL MINECRAFT PRODUCT. NOT APPROVED BY OR ASSOCIATED WITH MOJANG STUDIO. | ||
#READING THE COPYRIGHT (C): <https://www.minecraft.net/en-us/terms> | ||
|
||
|
||
##NIGHTLY BUILDING VERSION SYSTEM (DA RIMUOVERE TUTTO NELLA 1.22) | ||
bossbar set minecraft:nightly_building visible true | ||
bossbar remove minecraft:nightly_building |
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
20 changes: 0 additions & 20 deletions
20
datapacks/Skyblock CE datapacks/legacy_skyblock/data/skyblock_legacy/recipe/bundle.json
This file was deleted.
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
19 changes: 19 additions & 0 deletions
19
...cks/Skyblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_azalea.json
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"M#" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:oak_sapling" | ||
], | ||
"M": [ | ||
"minecraft:moss_block" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:azalea", | ||
"count": 1 | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...k CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_cobbled_deepslate.json
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"##", | ||
"##" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:cobblestone" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:cobbled_deepslate", | ||
"count": 4 | ||
} | ||
} |
22 changes: 22 additions & 0 deletions
22
...ck CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_flowering_azalea.json
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"M#P" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:oak_sapling" | ||
], | ||
"M": [ | ||
"minecraft:moss_block" | ||
], | ||
"P": [ | ||
"minecraft:pink_petals" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:flowering_azalea", | ||
"count": 1 | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...yblock CE datapacks/skyblock_custom_world/data/skyblock/recipe/skyblock_glow_berries.json
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 |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"type": "minecraft:crafting_shaped", | ||
"group": "skyblock", | ||
"pattern": [ | ||
"###", | ||
"#T#", | ||
"###" | ||
], | ||
"key": { | ||
"#": [ | ||
"minecraft:glow_ink_sac" | ||
], | ||
"T": [ | ||
"minecraft:torchflower" | ||
] | ||
}, | ||
"result": { | ||
"id": "minecraft:glow_berries", | ||
"count": 1 | ||
} | ||
} |
Oops, something went wrong.