Skip to content

Commit

Permalink
reformat build number in app title
Browse files Browse the repository at this point in the history
  • Loading branch information
zoff99 committed Jan 8, 2025
1 parent 4e940e4 commit 8482c80
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2357,10 +2357,10 @@ private fun MainAppStart()
var win_title_addon = "Unknown Version"
try
{
win_title_addon = BuildConfig.APP_VERSION + " (" + BuildConfig.GIT_COMMIT_HASH.take(7) +
" / " +
win_title_addon = BuildConfig.APP_VERSION + " (Build: " + BuildConfig.GIT_COMMIT_HASH.take(7) +
"-" +
MainActivity.getNativeLibTOXGITHASH() +
" / " +
"-" +
MainActivity.getNativeLibGITHASH() +
")"
} catch (_: java.lang.Exception)
Expand Down

0 comments on commit 8482c80

Please sign in to comment.