Skip to content

Commit

Permalink
update constants
Browse files Browse the repository at this point in the history
  • Loading branch information
bluemods committed Aug 5, 2024
1 parent 83e9828 commit ab3e40f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/mods/constants/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public final class Constants {
// Version number. This is changed on release
// and is used for checking if Bluecord needs an update
public static final int VERSION_CODE = 23004;
public static final String VERSION_NAME = "2.3 Beta 4";
public static final String VERSION_NAME = "2.3";

// Adds support for Bluecord emotes and other systems that use a '.'
public static final String VALID_UNICODE_EMOJI_PATTERN = "^<&?\u200b?(a)?[:|\\.]([a-zA-Z_0-9]+)[:|\\.](\\d+)>";
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/mods/constants/URLConstants.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,6 @@ public static String phpLink(@NotNull String type) {
}

public static String getVersionString() {
return Constants.VERSION_NAME + (URLConstants.IS_BETA ? " (Beta)" : "");
return Constants.VERSION_NAME + (URLConstants.IS_BETA ? " (Beta 4)" : "");
}
}

0 comments on commit ab3e40f

Please sign in to comment.