File tree 7 files changed +34
-9
lines changed
common/src/main/resources/assets/create_pattern_schematics/lang
7 files changed +34
-9
lines changed Original file line number Diff line number Diff line change 33
33
run : ./gradlew build
34
34
35
35
- name : capture build artifacts
36
- uses : actions/upload-artifact@v2
36
+ uses : actions/upload-artifact@v4
37
37
with :
38
38
name : Artifacts
39
39
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 {
94
94
95
95
publishMods {
96
96
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
+ }
101
103
102
104
def cfg = new Yaml (). load(new File (" $projectDir /changelog.yaml" ). newInputStream())
103
105
def changelogText = cfg[minecraft_version + " -" + mod_version];
Original file line number Diff line number Diff line change 19
19
- Misc refactor
20
20
- Mainly just to bump version to republish
21
21
- 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
23
31
...
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 1
1
{
2
2
"homepage" : " https://modrinth.com/mod/create-pattern-schematics" ,
3
3
"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"
6
8
}
7
9
}
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G
2
2
3
3
# Mod Info
4
4
archives_base_name = pattern_schematics
5
- mod_version = 1.1.13
5
+ mod_version = 1.1.15
6
6
maven_group = com.cak.pattern_schematics
7
7
8
8
minecraft_version = 1.19.2
You can’t perform that action at this time.
0 commit comments