Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.1.15 #4

Merged
merged 10 commits into from
Nov 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
1 change: 1 addition & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Feel free to contribute, dev is done on the 1.20.1 branch ^^
10 changes: 6 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -94,10 +94,12 @@ allprojects {

publishMods {
def TOKENS = new HashMap<String, String>();
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];
Expand Down
10 changes: 9 additions & 1 deletion changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
...
Original file line number Diff line number Diff line change
@@ -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"
}
6 changes: 4 additions & 2 deletions forge-updates.json
Original file line number Diff line number Diff line change
@@ -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"
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading