fix feature list

This commit is contained in:
AndyScherzinger 2018-06-08 11:08:07 +02:00
parent f4438afc03
commit 6ba8b24c40
No known key found for this signature in database
GPG key ID: 6CADC7E3523C308B

View file

@ -41,7 +41,7 @@ public class FeatureList {
private static final int VERSION_1_0_0 = 10000099;
private static final int VERSION_3_0_0 = 30000099;
private static final int VERSION_3_2_0 = 30020000;
private static final int VERSION_3_3_0 = 30030099;
private static final int BETA_VERSION_0 = 0;
static public ArrayList<FeatureItem> get(boolean isMultiAccount) {
@ -70,10 +70,10 @@ public class FeatureList {
R.string.whats_new_ipv6_content, VERSION_3_0_0,
BETA_VERSION_0, SHOW_ON_UPGRADE, false, false));
// 3.2.0
// 3.3.0
featuresList.add(new FeatureItem(R.drawable.whats_new_device_credentials,
R.string.whats_new_device_credentials_title, R.string.whats_new_device_credentials_content,
VERSION_3_2_0, BETA_VERSION_0, SHOW_ON_UPGRADE, false, false));
VERSION_3_3_0, BETA_VERSION_0, SHOW_ON_UPGRADE, false, false));
return featuresList;
}