Skip to content

Commit

Permalink
it's stable stable 🐴
Browse files Browse the repository at this point in the history
  • Loading branch information
BomberFish committed Dec 2, 2024
1 parent 7939baa commit e1ec05f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Anura.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ class Anura {
minor: "0",
patch: "0",
},
buildstate: "alpha",
buildstate: "stable",
codename: "Idol",
get pretty() {
const semantic = anura.version.semantic;
return `${semantic.major}.${semantic.minor}.${semantic.patch} ${anura.version.buildstate}`;
return `${semantic.major}.${semantic.minor}.${semantic.patch}${anura.version.buildstate == "stable" ? "" : `-${anura.version.buildstate}`}`;
},
};
initComplete = false;
Expand Down

0 comments on commit e1ec05f

Please sign in to comment.