99.16 - Beta (99116)
This commit is contained in:
parent
79ca8acaaf
commit
39d0b1a88e
5 changed files with 6 additions and 6 deletions
|
@ -10,8 +10,8 @@ android {
|
|||
applicationId 'com.discord'
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
versionCode 99115
|
||||
versionName "99.15 - Beta"
|
||||
versionCode 99116
|
||||
versionName "99.16 - Beta"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="99115" android:versionName="99.15 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="99116" android:versionName="99.16 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="29"/>
|
||||
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
||||
|
|
|
@ -17,7 +17,7 @@ public final class AutocompleteExtensionsKt {
|
|||
for (IntRange intRange : u.sortedWith(map.keySet(), new AutocompleteExtensionsKt$replaceAutocompleteDataWithServerValues$$inlined$sortedByDescending$1())) {
|
||||
Autocompletable autocompletable = (Autocompletable) map.get(intRange);
|
||||
if (autocompletable != null) {
|
||||
if (intRange.getFirst() > str2.length()) {
|
||||
if (intRange.getFirst() > str2.length() || intRange.getLast() > str2.length()) {
|
||||
AppLog appLog = AppLog.g;
|
||||
StringBuilder O = a.O("Invalid mention position to insert ");
|
||||
O.append(autocompletable.getInputReplacement());
|
||||
|
|
|
@ -313,7 +313,7 @@ public final class WidgetSettings extends AppFragment implements OnTabSelectedLi
|
|||
TextView textView = binding.f;
|
||||
m.checkNotNullExpressionValue(textView, "appInfoHeader");
|
||||
String string = getString(R.string.app_information);
|
||||
textView.setText(string + " - 99.15 - Beta (99115)");
|
||||
textView.setText(string + " - 99.16 - Beta (99116)");
|
||||
binding.A.setOnClickListener(new WidgetSettings$onViewBound$$inlined$with$lambda$3(this));
|
||||
binding.u.setOnClickListener(WidgetSettings$onViewBound$1$5.INSTANCE);
|
||||
binding.q.setOnClickListener(WidgetSettings$onViewBound$1$6.INSTANCE);
|
||||
|
|
|
@ -1446,7 +1446,7 @@
|
|||
<string name="color_picker_title">Select a color</string>
|
||||
<string name="color_picker_transparency">Transparency</string>
|
||||
<string name="color_picker_use_default">Use Default</string>
|
||||
<string name="res_2131887527_com_crashlytics_android_build_id">3748aa9f75954fa2960a7a09409b799c</string>
|
||||
<string name="res_2131887527_com_crashlytics_android_build_id">feb5024e52c444cb98016148b5f9a6df</string>
|
||||
<string name="coming_soon">Coming Soon</string>
|
||||
<string name="command_accessibility_desc_app_header_item">Slash command application {applicationName}</string>
|
||||
<string name="command_accessibility_desc_app_item">{applicationName} application</string>
|
||||
|
|
Loading…
Reference in a new issue