diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ede72d9..6a70ec1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -33,7 +33,7 @@ jobs: run: ./gradlew build - name: capture build artifacts - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: Artifacts path: build/libs/ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..22fe79f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1 @@ +Feel free to contribute, dev is done on the 1.20.1 branch ^^ diff --git a/build.gradle b/build.gradle index f438836..d584c98 100644 --- a/build.gradle +++ b/build.gradle @@ -94,10 +94,12 @@ allprojects { publishMods { def TOKENS = new HashMap(); - file("$projectDir/.env").readLines().each() { - def (key, value) = it.tokenize('=') - TOKENS.put(key, value) - } + def envFile = file("$projectDir/.env"); + if (envFile.exists()) + envFile.readLines().each() { + def (key, value) = it.tokenize('=') + TOKENS.put(key, value) + } def cfg = new Yaml().load(new File("$projectDir/changelog.yaml").newInputStream()) def changelogText = cfg[minecraft_version + "-" + mod_version]; diff --git a/changelog.yaml b/changelog.yaml index 9b31f87..8704a44 100644 --- a/changelog.yaml +++ b/changelog.yaml @@ -19,5 +19,13 @@ - Misc refactor - Mainly just to bump version to republish - Added crafting using existing schematics instead of paper - + +1.19.2-1.1.15: | + - Updated to 1.1.15 from 1.20.1 + - Update logo for 1.20.1 + - Added Spanish gameplay translations +1.20.1-1.1.14: | + - Update logo for 1.20.1 +1.20.1-1.1.15: | + - Added Spanish gameplay translations ... \ No newline at end of file diff --git a/common/src/main/resources/assets/create_pattern_schematics/lang/es_es.json b/common/src/main/resources/assets/create_pattern_schematics/lang/es_es.json new file mode 100644 index 0000000..b1cb62f --- /dev/null +++ b/common/src/main/resources/assets/create_pattern_schematics/lang/es_es.json @@ -0,0 +1,12 @@ +{ + "create_pattern_schematics.contraption_application.applied_to": "Aplicar Esquema Patrón a ", + "create_pattern_schematics.contraption_application.deployers": " Desplegado(r/os)", + "create_pattern_schematics.contraption_application.not_positioned": "No se pudo aplicar el esquema: ¡Esquema no esta colocado!", + "create_pattern_schematics.schematic.tool.clone": "Clonar", + "create_pattern_schematics.schematic.tool.clone.description.0": "Repetir el esquema seleccionado", + "create_pattern_schematics.schematic.tool.clone.description.1": "Apunte al Esquema y usar [Ctrl]+[RUEDA DEL RATÓN] para repetir", + "create_pattern_schematics.schematic.tool.clone.description.2": "[Ctrl+Shift]+[RUEDA DEL RATÓN] clonaré donde donde te enfrentas", + "create_pattern_schematics.schematic.tool.clone.description.3": "", + "item.create_pattern_schematics.empty_pattern_schematic": "Esquema Patrón vacío", + "item.create_pattern_schematics.pattern_schematic": "Esquema Patrón" +} \ No newline at end of file diff --git a/forge-updates.json b/forge-updates.json index 2e94cc3..3a88ac9 100644 --- a/forge-updates.json +++ b/forge-updates.json @@ -1,7 +1,9 @@ { "homepage": "https://modrinth.com/mod/create-pattern-schematics", "promos": { - "1.19.2-recommended": "1.1.13", - "1.19.2-latest": "1.1.13" + "1.20.1-recommended": "1.1.15", + "1.20.1-latest": "1.1.15", + "1.19.2-recommended": "1.1.15", + "1.19.2-latest": "1.1.15" } } diff --git a/gradle.properties b/gradle.properties index 79a633f..a4d715d 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,7 +2,7 @@ org.gradle.jvmargs = -Xmx2G # Mod Info archives_base_name = pattern_schematics -mod_version = 1.1.13 +mod_version = 1.1.15 maven_group = com.cak.pattern_schematics minecraft_version = 1.19.2