forked from Juby210/discord-jadx
102.15 - Beta (102115)
This commit is contained in:
parent
8f24b7cc75
commit
ff2c5a2aa9
6 changed files with 11 additions and 8 deletions
|
@ -10,8 +10,8 @@ android {
|
|||
applicationId 'com.discord'
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 102114
|
||||
versionName "102.14 - Beta"
|
||||
versionCode 102115
|
||||
versionName "102.15 - 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="102114" android:versionName="102.14 - 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="102115" android:versionName="102.15 - Beta" android:installLocation="auto" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
|
||||
<uses-sdk android:minSdkVersion="21" android:targetSdkVersion="30"/>
|
||||
<uses-feature android:name="android.hardware.camera" android:required="false"/>
|
||||
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
|
||||
|
|
|
@ -100,7 +100,6 @@ public final class ModelUserNote {
|
|||
}
|
||||
|
||||
public ModelUserNote(long j, String str) {
|
||||
m.checkNotNullParameter(str, "note");
|
||||
this.noteUserId = j;
|
||||
this.note = str;
|
||||
}
|
||||
|
@ -124,7 +123,6 @@ public final class ModelUserNote {
|
|||
}
|
||||
|
||||
public final ModelUserNote copy(long j, String str) {
|
||||
m.checkNotNullParameter(str, "note");
|
||||
return new ModelUserNote(j, str);
|
||||
}
|
||||
|
||||
|
|
|
@ -156,7 +156,12 @@ public final class StoreUserNotes extends StoreV2 {
|
|||
|
||||
@StoreThread
|
||||
private final void handleRequestUserNoteSuccess(ModelUserNote modelUserNote) {
|
||||
updateNoteInternal(modelUserNote.getNoteUserId(), modelUserNote.getNote());
|
||||
long noteUserId = modelUserNote.getNoteUserId();
|
||||
String note = modelUserNote.getNote();
|
||||
if (note == null) {
|
||||
note = "";
|
||||
}
|
||||
updateNoteInternal(noteUserId, note);
|
||||
}
|
||||
|
||||
@StoreThread
|
||||
|
|
|
@ -346,7 +346,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 + " - 102.14 - Beta (102114)");
|
||||
textView.setText(string + " - 102.15 - Beta (102115)");
|
||||
binding.B.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);
|
||||
|
|
|
@ -1505,7 +1505,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_2131887585_com_crashlytics_android_build_id">2f69913a53e44d45807a2c75220b4c43</string>
|
||||
<string name="res_2131887585_com_crashlytics_android_build_id">3aca1d331a4748e5b4372a93f0f5fbb6</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