Skip to content

Commit

Permalink
show also toxcore commit hash and tox jni commit hash in the main win…
Browse files Browse the repository at this point in the history
…dow title
  • Loading branch information
zoff99 committed Jan 8, 2025
1 parent 20bf5fa commit fff443d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/main/kotlin/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -2357,7 +2357,12 @@ 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 + " (" + BuildConfig.GIT_COMMIT_HASH.take(7) +
" / " +
MainActivity.getNativeLibTOXGITHASH() +
" / " +
MainActivity.getNativeLibGITHASH() +
")"
} catch (_: java.lang.Exception)
{
}
Expand Down

0 comments on commit fff443d

Please sign in to comment.