Skip to content

Commit

Permalink
Release v1.3.8
Browse files Browse the repository at this point in the history
Merge pull request #95 from Global-Tags/development
  • Loading branch information
RappyTV authored Jan 15, 2025
2 parents 1c70f32 + 19a049f commit b33cd4d
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
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.7")
version = providers.environmentVariable("VERSION").getOrElse("1.3.8")

labyMod {
defaultPackageName = "com.rappytv.globaltags" //change this to your main package name (used by all modules)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ private void initializeWithInfo(PlayerInfo<Component> info, boolean refetched, b
addEntry.accept(tag);
if (info.getRoleIcon() != null) {
addEntry.accept(
new IconWidget(Icon.url(info.getRoleIcon()))
new IconWidget(Icon.url(api.getUrls().getRoleIcon(info.getRoleIcon())))
.addId("staff-icon")
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public void render(Stack stack, Entity entity) {
9,
9
);
if(this.info.getRoleIcon() != null) Icon.url(this.info.getRoleIcon()).render(
if(this.info.getRoleIcon() != null) Icon.url(this.api.getUrls().getRoleIcon(this.info.getRoleIcon())).render(
stack,
this.getWidth() + 0.9F,
-1.2F,
Expand Down
21 changes: 19 additions & 2 deletions core/src/main/resources/assets/globaltags/i18n/no_no.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@
"none": "Ingen",
"custom": "Egendefinert",
"heart": "Hjerte",
"star": "Stjerne"
"star": "Stjerne",
"crown": "Krone"
}
},
"resetTag": {
Expand All @@ -91,6 +92,17 @@
"description": "Tømmer tag-cachen manuelt.\nCachen tømmes automatisk hvert §b5 minutter§f.\nDu kan i tillegg tømme cachen med §b/gt cc§f.",
"text": "Tøm",
"name": "Tøm cachen"
},
"referralLeaderboards": {
"name": "Ledertavler for henvisninger",
"activity": {
"current_month": "Denne måneden",
"open": "Åpne laby.net profil",
"loading": "Laster…",
"total": "Antall"
},
"text": "Vis",
"description": "Viser et ledertavl av spillere som har invitert de fleste spillere til GlobalTags."
}
},
"commands": {
Expand Down Expand Up @@ -136,7 +148,12 @@
"report": {
"name": "Rapporter GlobalTag",
"title": "Rapporter %s",
"send": "Send rapporten"
"send": "Send rapporten",
"checkbox": {
"label": "Denne tag bryter %s.",
"hover": "Klikk her for å åpne GlobalTags reglene.",
"rules": "GlobalTags reglene"
}
},
"ban": {
"name": "Utesteng GlobalTag-spiller",
Expand Down

0 comments on commit b33cd4d

Please sign in to comment.