Skip to content

Commit

Permalink
1.0.2: Really fix it this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
gdude2002 committed Sep 23, 2024
1 parent 0ada0da commit d77c050
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions changes/1.0.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# i18n tools 1.0.2

This is what I get for developing on a work night!

## Translations Class Generator

**CLI:** Fix the main class in the manifest, which IntelliJ messed up somehow. It works now, I promise!
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ kotlin.incremental=true
org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m
org.gradle.parallel=true

projectVersion=1.0.1
projectVersion=1.0.2
4 changes: 2 additions & 2 deletions i18n-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ group = "dev.kordex.i18n"
version = projectVersion

application {
mainClass.set("dev.kordex.i18n.generator.MainKt.main")
mainClass.set("dev.kordex.i18n.generator.MainKt")
}

tasks.jar {
manifest {
attributes(
"Main-Class" to "dev.kordex.i18n.generator.MainKt.main"
"Main-Class" to "dev.kordex.i18n.generator.MainKt"
)
}
}
Expand Down

0 comments on commit d77c050

Please sign in to comment.