Browse Source

fix feature list

AndyScherzinger 6 years ago
parent
commit
6ba8b24c40
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/main/java/com/owncloud/android/features/FeatureList.java

+ 3 - 3
src/main/java/com/owncloud/android/features/FeatureList.java

@@ -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;
     }