-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Forge & Fabric 1.20.1 Backport (#495)
* fabric 1.6 * kill neoforge * update gradle to 8.7 * kill forge * config overhaul * remove SubSeason from SeasonProperties * update dede * optimize imports * 1.20.1 backport attempt 1 * change short_grass to grass * guide people to download owo-lib with help of owo-sentinel * make config more user friendly commented * delete owo lib * old configs * old configs 2 * update glitchcore & use configsync * update glitchcore to 1.0.4 * delete wispforest repo * use official glitchcore * change glitchcore ver to 1.0.0.60 * require the needed glitchcore version (I forgot to put it back after testing) * change glitchcore version to 0.0.1.0 * Revert "kill forge" This reverts commit ba30ed2. * add forge version * try to adapt code style of Adubbz * Revert "try to adapt code style of Adubbz" This reverts commit b68512a. * use 4 spaces in these classes * use 4 tabs in this clas (I don't really know why it was like this, but I don't want to change anything) * minimize the changes here * minimize the changes here * this is a catastrophe * minimze the number of changes * change the import to * * fix imports here * fix all imports in seasonsensorblock * update glitchcore to 0.0.1.1
- Loading branch information
1 parent
f2f731a
commit ff76e91
Showing
24 changed files
with
55 additions
and
242 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
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
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
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
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
32 changes: 27 additions & 5 deletions
32
common/src/main/resources/assets/sereneseasons/lang/de_de.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 |
---|---|---|
@@ -1,21 +1,43 @@ | ||
{ | ||
"commands.sereneseasons.usage": "/sereneseasons <getseason/setseason> [args]", | ||
"commands.sereneseasons.usage": "/season <get/set> [args]", | ||
"commands.sereneseasons.getseason.success": "Derzeitige Jahreszeit ist %s, Tag %s/%s, tick %s/%s", | ||
"commands.sereneseasons.setseason.success": "Setze Jahreszeit zu %s", | ||
"commands.sereneseasons.setseason.fail": "Ungültige Jahreszeit %s", | ||
"commands.sereneseasons.setseason.disabled": "Jahreszeiten sind derzeit deaktiviert!", | ||
|
||
"itemGroup.tabSereneSeasons": "Ruhige Jahreszeiten", | ||
"gamerule.doSeasonCycle": "Jahreszeiten schreiten voran", | ||
"itemGroup.tabSereneSeasons": "Serene Seasons", | ||
|
||
"block.sereneseasons.season_sensor": "Jahreszeiten Sensor", | ||
|
||
"item.sereneseasons.ss_icon": "SS Icon", | ||
"item.sereneseasons.calendar": "Kalender", | ||
|
||
"desc.sereneseasons.fertile_seasons": "Fertile Jahreszeiten", | ||
"desc.sereneseasons.year_round": "Ganzjährig", | ||
"desc.sereneseasons.day_counter": "Tag %s/%s", | ||
"desc.sereneseasons.tropical_day_counter": " (%s/%s)", | ||
"desc.sereneseasons.spring": "Frühling", | ||
"desc.sereneseasons.early_spring": "Frühlingsanfang", | ||
"desc.sereneseasons.mid_spring": "Frühlingsmitte", | ||
"desc.sereneseasons.late_spring": "Frühlingsende", | ||
"desc.sereneseasons.summer": "Sommer", | ||
"desc.sereneseasons.early_summer": "Frühsommer", | ||
"desc.sereneseasons.mid_summer": "Hochsommer", | ||
"desc.sereneseasons.late_summer": "Spätsommer", | ||
"desc.sereneseasons.autumn": "Herbst", | ||
"desc.sereneseasons.winter": "Winter" | ||
} | ||
"desc.sereneseasons.early_autumn": "Herbstanfang", | ||
"desc.sereneseasons.mid_autumn": "Herbstmitte", | ||
"desc.sereneseasons.late_autumn": "Herbstende", | ||
"desc.sereneseasons.winter": "Winter", | ||
"desc.sereneseasons.early_winter": "Winteranfang", | ||
"desc.sereneseasons.mid_winter": "Wintermitte", | ||
"desc.sereneseasons.late_winter": "Winterende", | ||
|
||
"desc.sereneseasons.early_wet": "Anfang der Regenzeit", | ||
"desc.sereneseasons.mid_wet": "Mitte der Regenzeit", | ||
"desc.sereneseasons.late_wet": "Ende der Regenzeit", | ||
"desc.sereneseasons.early_dry": "Anfang der Trockenzeit", | ||
"desc.sereneseasons.mid_dry": "Mitte der Trockenzeit", | ||
"desc.sereneseasons.late_dry": "Ende der Trockenzeit" | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip | ||
networkTimeout=10000 | ||
validateDistributionUrl=true | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
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
Oops, something went wrong.