diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 8b3e501..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,39 +0,0 @@ -## v0.2.0 - Snapshot -* Added sonatype -* Added gradle kotlin dsl -* Updated workflows -* Updated dependencies -* Updated README.md - -## v0.1.6 - Snapshot -* Updated depends -* Moved to JitCI -* Improve testing to avoid unwanted files committed - -## v0.1.5 - Snapshot -* Now translations are automatically colorized (unless you set `colorize` to `false`) -* Updated tests - -## v0.1.4 - Snapshot -* Updated SimpleCoreAPI to v0.3.0-SNAPSHOT -* Now the TranslationManager is initialized at the load stage of the -module -* Added GitHub Repository option for AutoUpdater - -## v0.1.3 - Snapshot -* Moved Translation from objects/ -* Added new register methods to TranslationManager -* Added mainColor to Translation -* Now Translation can be automatically registered! -* Removed TranslationManagerTest.kt -* Created new Tests (TranslationColorTest.kt and TranslationTest.kt) -* Now the Jar is automatically uploaded to the release! - -## v0.1.2 - Snapshots -* Fixed dependency FilesModule - -## v0.1.1 - Snapshot -* Updated Dependencies - -## v0.1.0 - Snapshot -Hello, World! diff --git a/build.gradle.kts b/build.gradle.kts index 5daa2ec..f7c6e08 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -15,7 +15,7 @@ val env = project.rootProject.file(".env").let { file -> if(file.exists()) file.readLines().filter { it.isNotBlank() && !it.startsWith("#") && it.split("=").size == 2 }.associate { it.split("=")[0] to it.split("=")[1] } else emptyMap() }.toMutableMap().apply { putAll(System.getenv()) } -val projectVersion = env["VERSION"] ?: "0.2.0-SNAPSHOT" +val projectVersion = env["VERSION"] ?: "0.3.0-SNAPSHOT" group = "xyz.theprogramsrc" version = projectVersion diff --git a/src/main/resources/module.properties b/src/main/resources/module.properties index c87efec..99dd00c 100644 --- a/src/main/resources/module.properties +++ b/src/main/resources/module.properties @@ -3,5 +3,5 @@ name=TranslationsModule description=@description@ version=@version@ author=TheProgramSrc -module-id=translationsmodule -dependencies=filesmodule +module-id=TheProgramSrc/SimpleCore-TranslationsModule +dependencies=TheProgramSrc/SimpleCore-FilesModule