Skip to content

Commit

Permalink
Merge pull request #65 from Global-Tags/feat/customUserIcons
Browse files Browse the repository at this point in the history
feat: Support custom user icons
  • Loading branch information
RappyTV authored Oct 13, 2024
2 parents fd525d2 + 042dfd3 commit 900e86c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import net.labymod.labygradle.common.extension.LabyModAnnotationProcessorExtensi
dependencies {
labyProcessor()
labyApi("api")
addonMavenDependency("com.rappytv.globaltags:GlobalTagsJava:1.1.4")
addonMavenDependency("com.rappytv.globaltags:GlobalTagsJava:1.1.5")
}

labyModAnnotationProcessor {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {

val versions = providers.gradleProperty("net.labymod.minecraft-versions").get().split(";")
group = "org.example"
version = providers.environmentVariable("VERSION").getOrElse("1.3.0")
version = providers.environmentVariable("VERSION").getOrElse("1.3.1")

labyMod {
defaultPackageName = "com.rappytv.globaltags" //change this to your main package name (used by all modules)
Expand Down
1 change: 0 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import net.labymod.labygradle.common.extension.LabyModAnnotationProcessorExtensi
dependencies {
labyProcessor()
api(project(":api"))
addonMavenDependency("com.rappytv.globaltags:GlobalTagsJava:1.1.4")
}

labyModAnnotationProcessor {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public class GlobalTagConfig extends AddonConfig {
@SpriteSlot(size = 32, y = 2, x = 3)
@ButtonSetting
public void joinDiscord(Setting setting) {
Laby.references().chatExecutor().openUrl("https://gt.rappytv.com/discord");
Laby.references().chatExecutor().openUrl("https://globaltags.xyz/discord");
}

@SettingSection("display")
Expand Down
1 change: 1 addition & 0 deletions core/src/main/resources/assets/globaltags/i18n/de_de.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"description": "Dieses Icon wird global links neben deinem Tag angezeigt.",
"entries": {
"none": "None",
"custom": "Eigenes Icon",
"android": "Android",
"apple": "Apple",
"bereal": "BeReal.",
Expand Down
1 change: 1 addition & 0 deletions core/src/main/resources/assets/globaltags/i18n/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"description": "This icon will be displayed left to your tag globally.",
"entries": {
"none": "None",
"custom": "Custom",
"android": "Android",
"apple": "Apple",
"bereal": "BeReal.",
Expand Down

0 comments on commit 900e86c

Please sign in to comment.