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

feat: Support custom user icons #65

Merged
merged 4 commits into from
Oct 13, 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 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
Loading