File tree Expand file tree Collapse file tree 7 files changed +34
-9
lines changed
common/src/main/resources/assets/create_pattern_schematics/lang Expand file tree Collapse file tree 7 files changed +34
-9
lines changed Original file line number Diff line number Diff line change 3333 run : ./gradlew build
3434
3535 - name : capture build artifacts
36- uses : actions/upload-artifact@v2
36+ uses : actions/upload-artifact@v4
3737 with :
3838 name : Artifacts
3939 path : build/libs/
Original file line number Diff line number Diff line change 1+ Feel free to contribute, dev is done on the 1.20.1 branch ^^
Original file line number Diff line number Diff line change @@ -94,10 +94,12 @@ allprojects {
9494
9595publishMods {
9696 def TOKENS = new HashMap<String , String > ();
97- file(" $projectDir /.env" ). readLines(). each() {
98- def (key, value) = it. tokenize(' =' )
99- TOKENS . put(key, value)
100- }
97+ def envFile = file(" $projectDir /.env" );
98+ if (envFile. exists())
99+ envFile. readLines(). each() {
100+ def (key, value) = it. tokenize(' =' )
101+ TOKENS . put(key, value)
102+ }
101103
102104 def cfg = new Yaml (). load(new File (" $projectDir /changelog.yaml" ). newInputStream())
103105 def changelogText = cfg[minecraft_version + " -" + mod_version];
Original file line number Diff line number Diff line change 1919 - Misc refactor
2020 - Mainly just to bump version to republish
2121 - Added crafting using existing schematics instead of paper
22-
22+
23+ 1.19.2-1.1.15 : |
24+ - Updated to 1.1.15 from 1.20.1
25+ - Update logo for 1.20.1
26+ - Added Spanish gameplay translations
27+ 1.20.1-1.1.14 : |
28+ - Update logo for 1.20.1
29+ 1.20.1-1.1.15 : |
30+ - Added Spanish gameplay translations
2331 ...
Original file line number Diff line number Diff line change 1+ {
2+ "create_pattern_schematics.contraption_application.applied_to" : " Aplicar Esquema Patrón a " ,
3+ "create_pattern_schematics.contraption_application.deployers" : " Desplegado(r/os)" ,
4+ "create_pattern_schematics.contraption_application.not_positioned" : " No se pudo aplicar el esquema: ¡Esquema no esta colocado!" ,
5+ "create_pattern_schematics.schematic.tool.clone" : " Clonar" ,
6+ "create_pattern_schematics.schematic.tool.clone.description.0" : " Repetir el esquema seleccionado" ,
7+ "create_pattern_schematics.schematic.tool.clone.description.1" : " Apunte al Esquema y usar [Ctrl]+[RUEDA DEL RATÓN] para repetir" ,
8+ "create_pattern_schematics.schematic.tool.clone.description.2" : " [Ctrl+Shift]+[RUEDA DEL RATÓN] clonaré donde donde te enfrentas" ,
9+ "create_pattern_schematics.schematic.tool.clone.description.3" : " " ,
10+ "item.create_pattern_schematics.empty_pattern_schematic" : " Esquema Patrón vacío" ,
11+ "item.create_pattern_schematics.pattern_schematic" : " Esquema Patrón"
12+ }
Original file line number Diff line number Diff line change 11{
22 "homepage" : " https://modrinth.com/mod/create-pattern-schematics" ,
33 "promos" : {
4- "1.19.2-recommended" : " 1.1.13" ,
5- "1.19.2-latest" : " 1.1.13"
4+ "1.20.1-recommended" : " 1.1.15" ,
5+ "1.20.1-latest" : " 1.1.15" ,
6+ "1.19.2-recommended" : " 1.1.15" ,
7+ "1.19.2-latest" : " 1.1.15"
68 }
79}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G
22
33# Mod Info
44archives_base_name = pattern_schematics
5- mod_version = 1.1.13
5+ mod_version = 1.1.15
66maven_group = com.cak.pattern_schematics
77
88minecraft_version = 1.19.2
You can’t perform that action at this time.
0 commit comments