Disable unlimited stuff by default

This commit is contained in:
NekoInverter 2020-03-02 20:12:02 +08:00
parent 64a26617a2
commit f894de15d8
No known key found for this signature in database
GPG Key ID: 280D6CCCF95715F9
3 changed files with 6 additions and 6 deletions

View File

@ -299,7 +299,7 @@ android {
}
}
defaultConfig.versionCode = 10 * 1875
defaultConfig.versionCode = 10 * 1876
applicationVariants.all { variant ->
variant.outputs.all { output ->

View File

@ -19,7 +19,7 @@ public class BuildVars {
public static boolean USE_CLOUD_STRINGS = true;
public static boolean CHECK_UPDATES = true;
public static boolean TON_WALLET_STANDALONE = false;
public static int BUILD_VERSION = 1875;
public static int BUILD_VERSION = 1876;
public static String BUILD_VERSION_STRING = "5.15.0.3";
public static int APP_ID = 336779; //obtain your own APP_ID at https://core.telegram.org/api/obtaining_api_id
public static String APP_HASH = "b91eefacc86747c068c8d8a16b41500d"; //obtain your own APP_HASH at https://core.telegram.org/api/obtaining_api_id

View File

@ -48,8 +48,8 @@ public class NekoConfig {
public static int eventType = 0;
public static boolean newYear = false;
public static int actionBarDecoration = 0;
public static boolean unlimitedFavedStickers = true;
public static boolean unlimitedPinnedDialogs = true;
public static boolean unlimitedFavedStickers = false;
public static boolean unlimitedPinnedDialogs = false;
public static boolean residentNotification = false;
@ -137,8 +137,8 @@ public class NekoConfig {
actionBarDecoration = preferences.getInt("actionBarDecoration", 0);
newYear = preferences.getBoolean("newYear", false);
stickerSize = preferences.getFloat("stickerSize", 14.0f);
unlimitedFavedStickers = preferences.getBoolean("unlimitedFavedStickers", true);
unlimitedPinnedDialogs = preferences.getBoolean("unlimitedPinnedDialogs", true);
unlimitedFavedStickers = preferences.getBoolean("unlimitedFavedStickers", false);
unlimitedPinnedDialogs = preferences.getBoolean("unlimitedPinnedDialogs", false);
translationProvider = preferences.getInt("translationProvider", 1);
disablePhotoSideAction = preferences.getBoolean("disablePhotoSideAction", true);
openArchiveOnPull = preferences.getBoolean("openArchiveOnPull", false);