Release 3.4-beta-1

This commit is contained in:
Thomas 2022-10-04 17:44:34 +02:00
parent 4f212676de
commit a7675fbe03
4 changed files with 12 additions and 2 deletions

View File

@ -13,8 +13,8 @@ android {
defaultConfig {
minSdk 21
targetSdk 31
versionCode 409
versionName "3.3.2"
versionCode 410
versionName "3.4-beta-1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
flavorDimensions "default"

View File

@ -1,4 +1,9 @@
[
{
"version": "3.4-beta-1",
"code": "410",
"note": "- New cache mechanism\n- Cache can be disabled in settings\n- Add counters for new messages\n- Some fixes."
},
{
"version": "3.3.2",
"code": "409",

View File

@ -817,6 +817,7 @@ public abstract class BaseMainActivity extends BaseActivity implements NetworkSt
if (position >= 0) {
if (binding.viewPager.getCurrentItem() == position) {
scrollToTop();
binding.bottomNavView.removeBadge(itemId);
} else {
binding.viewPager.setCurrentItem(position, false);
}

View File

@ -0,0 +1,4 @@
- New cache mechanism
- Cache can be disabled in settings
- Add counters for new messages
- Some fixes.