Skip to content

Commit

Permalink
Merge pull request #1690 from DSheirer/1689-harris-patch-group-prefixes
Browse files Browse the repository at this point in the history
#1689 Increment Build 0.6.0 Beta 3 and Remove TG/RA prefixes for Harris Patch Groups
  • Loading branch information
DSheirer committed Nov 4, 2023
2 parents bee0405 + cfaac0f commit 02363c3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Expand Up @@ -53,7 +53,8 @@ repositories {
maven { url "https://jitpack.io" }
}

version = '0.6.0-beta2'
//Note: this should match the GitLab release tag.
version = '0.6.0-beta-3'

//Java 20 is required for this version of the Project Panama preview/incubator feature
java {
Expand Down
Expand Up @@ -166,12 +166,12 @@ public String toString()

if(hasPatchedTalkgroups())
{
sb.append(" TG").append(getPatchedTalkgroupIdentifiers());
sb.append(getPatchedTalkgroupIdentifiers());
}

if(hasPatchedRadios())
{
sb.append(" RA").append(getPatchedRadioIdentifiers());
sb.append(getPatchedRadioIdentifiers());
}

return sb.toString();
Expand Down

0 comments on commit 02363c3

Please sign in to comment.