mirror of
https://github.com/DrKLO/Telegram.git
synced 2024-12-22 06:25:14 +01:00
update to 9.5.6
This commit is contained in:
parent
5e5b7659cb
commit
bab9943ee0
4 changed files with 6 additions and 5 deletions
|
@ -638,7 +638,7 @@ public class AndroidUtilities {
|
|||
if (TextUtils.indexOf(s, '─') >= 0) {
|
||||
s = new SpannableStringBuilder(s.toString().replace('─', ' '));
|
||||
}
|
||||
if (TextUtils.lastIndexOf(s, '_') == s.length() - 1) {
|
||||
if (!TextUtils.isEmpty(s) && TextUtils.lastIndexOf(s, '_') == s.length() - 1) {
|
||||
//fix infinity loop regex
|
||||
SpannableStringBuilder spannableStringBuilder = new SpannableStringBuilder(s.toString());
|
||||
s = spannableStringBuilder.replace(s.length() - 1, s.length(), "a");
|
||||
|
|
|
@ -24,8 +24,8 @@ public class BuildVars {
|
|||
public static boolean USE_CLOUD_STRINGS = true;
|
||||
public static boolean CHECK_UPDATES = true;
|
||||
public static boolean NO_SCOPED_STORAGE = Build.VERSION.SDK_INT <= 29;
|
||||
public static int BUILD_VERSION = 3236;
|
||||
public static String BUILD_VERSION_STRING = "9.5.5";
|
||||
public static int BUILD_VERSION = 3237;
|
||||
public static String BUILD_VERSION_STRING = "9.5.6";
|
||||
public static int APP_ID = 4;
|
||||
public static String APP_HASH = "014b35b6184100b085b0d0572f9b5103";
|
||||
|
||||
|
|
1
TMessagesProj/src/main/res/raw/utyan_cache.json
Normal file
1
TMessagesProj/src/main/res/raw/utyan_cache.json
Normal file
File diff suppressed because one or more lines are too long
|
@ -13,8 +13,8 @@
|
|||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
|
||||
# org.gradle.parallel=true
|
||||
#Sat Mar 12 05:53:50 MSK 2016
|
||||
APP_VERSION_CODE=3236
|
||||
APP_VERSION_NAME=9.5.5
|
||||
APP_VERSION_CODE=3237
|
||||
APP_VERSION_NAME=9.5.6
|
||||
APP_PACKAGE=org.telegram.messenger
|
||||
RELEASE_KEY_PASSWORD=android
|
||||
RELEASE_KEY_ALIAS=androidkey
|
||||
|
|
Loading…
Reference in a new issue