Improved revision handling

This commit is contained in:
M66B
2021-09-18 11:49:01 +02:00
parent 2ef084d9ee
commit 9d7a82e612
5 changed files with 11 additions and 9 deletions

View File

@@ -61,7 +61,8 @@ public class FragmentAbout extends FragmentBase {
TextView tvGplV3 = view.findViewById(R.id.tvGplV3);
LinearLayout llContributors = view.findViewById(R.id.llContributors);
tvVersion.setText(getString(R.string.title_version, BuildConfig.VERSION_NAME));
String version = BuildConfig.VERSION_NAME + BuildConfig.REVISION;
tvVersion.setText(getString(R.string.title_version, version));
tvRelease.setText(BuildConfig.RELEASE_NAME);
long last = 0;