Skip to content

Commit

Permalink
Merge pull request #4 from TheProgramSrc/feat/dependency-update
Browse files Browse the repository at this point in the history
  • Loading branch information
Francisco Solis authored Mar 19, 2022
2 parents 45330f6 + d0a7e75 commit 1bea4a5
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
id 'org.jetbrains.dokka' version '1.6.0'
}

def projectVersion = (System.getenv("VERSION") ?: '0.1.3-SNAPSHOT').replaceFirst("v", "").replace('/', '')
def projectVersion = (System.getenv("VERSION") ?: '0.1.4-SNAPSHOT').replaceFirst("v", "").replace('/', '')

group 'xyz.theprogramsrc'
version projectVersion
Expand All @@ -31,7 +31,7 @@ dependencies {
compileOnly 'org.jetbrains.kotlin:kotlin-stdlib:1.6.10'
compileOnly 'org.spigotmc:spigot-api:1.18.1-R0.1-SNAPSHOT'
compileOnly 'net.md-5:bungeecord-api:1.18-R0.1-SNAPSHOT'
compileOnly 'xyz.theprogramsrc:simplecoreapi:0.1.12-SNAPSHOT'
compileOnly 'xyz.theprogramsrc:simplecoreapi:0.3.0-SNAPSHOT'
compileOnly 'xyz.theprogramsrc:filesmodule:0.1.1-SNAPSHOT'

testImplementation 'org.junit.jupiter:junit-jupiter:5.8.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import xyz.theprogramsrc.simplecoreapi.global.module.Module

class Main: Module() {

override fun onEnable() {
override fun onLoad() {
TranslationManager()
}
}
1 change: 1 addition & 0 deletions src/main/resources/module.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ version=@version@
author=TheProgramSrc
repository-id=translationsmodule
dependencies=filesmodule
github-repository=TheProgramSrc/SimpleCore-TranslationsModule

0 comments on commit 1bea4a5

Please sign in to comment.