Skip to content

Commit 1de2bc3

Browse files
authored
Merge pull request #4 from cakeGit/1.20.1
Update to 1.1.15
2 parents 5ac9b38 + dd7b3c8 commit 1de2bc3

File tree

7 files changed

+34
-9
lines changed

7 files changed

+34
-9
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
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/

CONTRIBUTING.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Feel free to contribute, dev is done on the 1.20.1 branch ^^

build.gradle

+6-4
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,12 @@ allprojects {
9494

9595
publishMods {
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];

changelog.yaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,13 @@
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 numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

forge-updates.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
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
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G
22

33
# Mod Info
44
archives_base_name = pattern_schematics
5-
mod_version = 1.1.13
5+
mod_version = 1.1.15
66
maven_group = com.cak.pattern_schematics
77

88
minecraft_version = 1.19.2

0 commit comments

Comments
 (0)