and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

...
 
Commits (3)
......@@ -2,7 +2,7 @@
#### Toolchain setup
- Get apktool (due to 2 bugs present in v2.3.4, you're strongly recommended to use v2.4.0 or higher, I compile latest from source).
- Get apktool (use [this self-built version](//f001.backblazeb2.com/file/avepub/apktool-cli-all.jar) which is master + [this pr](https://github.com/iBotPeaches/Apktool/pull/2463)).
- Get a keystore, see [here](https://stackoverflow.com/a/14994354/3286892), step 1.
- Get apksigner, it's part of android build tools.
- If you want Mutant Standard emoji patches, get 72x72 PNG copies of latest version of mutant standard emojis with codepoints. I have a zip [here](https://mutant.lavatech.top/72x72.zip).
......
......@@ -2,7 +2,7 @@
Modular Client Mod for Discord's Android app.
**Latest supported Discord Android version:** 57.11 (1387), released on 2021-01-10.
**Latest supported Discord Android version:** 56.0 (1371), released on 2021-01-05.
New patch development will be done for the latest supported version.
......
......@@ -69,7 +69,7 @@ if DO_GITPULL:
# Extract the APK if it's not already extracted to base cache
if not os.path.exists(BASE_APK_PATH):
subprocess.run(f"{APKTOOL_BIN} d {INPUT_FILE} -o {BASE_APK_PATH} -f",
subprocess.run(f"{APKTOOL_BIN} d --no-dummy {INPUT_FILE} -o {BASE_APK_PATH} -f",
shell=True,
cwd=WORK_FOLDER)
......
diff -crB from/res/menu/menu_chat_toolbar.xml to/res/menu/menu_chat_toolbar.xml
*** from/res/menu/menu_chat_toolbar.xml 2020-11-19 15:23:40.599202252 +0000
--- to/res/menu/menu_chat_toolbar.xml 2020-11-19 15:25:53.054799873 +0000
***************
*** 1,11 ****
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
! <item android:icon="@drawable/ic_call_24dp" android:id="@id/menu_chat_start_call" android:visible="false" android:title="@string/start_call" app:iconTint="?colorInteractiveNormal" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_call_disconnect_24dp" android:id="@id/menu_chat_stop_call" android:visible="false" android:title="@string/leave_call" app:iconTint="@color/status_red" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_group_add_white_24dp" android:id="@id/menu_chat_start_group" android:visible="false" android:title="@string/create_group_dm" app:iconTint="?colorInteractiveNormal" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_header_members_add_white_24dp" android:id="@id/menu_chat_add_friend" android:visible="false" android:title="@string/add_friend" app:iconTint="?colorInteractiveNormal" app:showAsAction="always" />
! <item android:icon="@drawable/ic_videocam_white_24dp" android:id="@id/menu_chat_start_video_call" android:visible="false" android:title="@string/start_video_call" app:iconTint="?colorInteractiveNormal" app:showAsAction="ifRoom" />
! <item android:icon="@drawable/ic_search_white_24dp" android:id="@id/menu_chat_search" android:visible="false" android:title="@string/search" app:iconTint="?colorInteractiveNormal" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_members_24dp" android:id="@id/menu_chat_side_panel" android:visible="false" android:title="@string/members" app:iconTint="?colorInteractiveNormal" app:showAsAction="always" />
! </menu>
\ No newline at end of file
--- 1,11 ----
<?xml version="1.0" encoding="utf-8"?>
<menu
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
! <item android:icon="@drawable/ic_call_24dp" android:id="@id/menu_chat_start_call" android:visible="false" android:title="@string/start_call" app:iconTint="?colorInteractiveNormal" app:showAsAction="never" />
<item android:icon="@drawable/ic_call_disconnect_24dp" android:id="@id/menu_chat_stop_call" android:visible="false" android:title="@string/leave_call" app:iconTint="@color/status_red" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_group_add_white_24dp" android:id="@id/menu_chat_start_group" android:visible="false" android:title="@string/create_group_dm" app:iconTint="?colorInteractiveNormal" app:showAsAction="ifRoom" />
<item android:icon="@drawable/ic_header_members_add_white_24dp" android:id="@id/menu_chat_add_friend" android:visible="false" android:title="@string/add_friend" app:iconTint="?colorInteractiveNormal" app:showAsAction="always" />
! <item android:icon="@drawable/ic_videocam_white_24dp" android:id="@id/menu_chat_start_video_call" android:visible="false" android:title="@string/start_video_call" app:iconTint="?colorInteractiveNormal" app:showAsAction="never" />
! <item android:icon="@drawable/ic_search_white_24dp" android:id="@id/menu_chat_search" android:visible="false" android:title="@string/search" app:iconTint="?colorInteractiveNormal" app:showAsAction="always" />
<item android:icon="@drawable/ic_members_24dp" android:id="@id/menu_chat_side_panel" android:visible="false" android:title="@string/members" app:iconTint="?colorInteractiveNormal" app:showAsAction="always" />
! </menu>
diff -crB from/smali_classes2/com/discord/widgets/home/WidgetHomeHeaderManager$getOnConfigureAction$1.smali to/smali_classes2/com/discord/widgets/home/WidgetHomeHeaderManager$getOnConfigureAction$1.smali
*** from/smali_classes2/com/discord/widgets/home/WidgetHomeHeaderManager$getOnConfigureAction$1.smali 2020-11-19 15:23:43.685245089 +0000
--- to/smali_classes2/com/discord/widgets/home/WidgetHomeHeaderManager$getOnConfigureAction$1.smali 2020-11-19 15:26:07.886953277 +0000
***************
*** 119,125 ****
invoke-static {v3, v4}, Ly/m/c/j;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V
! invoke-interface {v3, v1}, Landroid/view/MenuItem;->setVisible(Z)Landroid/view/MenuItem;
.line 5
invoke-interface {p1, v7}, Landroid/view/Menu;->findItem(I)Landroid/view/MenuItem;
--- 119,125 ----
invoke-static {v3, v4}, Ly/m/c/j;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V
! invoke-interface {v3, v2}, Landroid/view/MenuItem;->setVisible(Z)Landroid/view/MenuItem;
.line 5
invoke-interface {p1, v7}, Landroid/view/Menu;->findItem(I)Landroid/view/MenuItem;
***************
*** 140,146 ****
invoke-static {v3, v4}, Ly/m/c/j;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V
! invoke-interface {v3, v1}, Landroid/view/MenuItem;->setVisible(Z)Landroid/view/MenuItem;
.line 7
invoke-interface {p1, v7}, Landroid/view/Menu;->findItem(I)Landroid/view/MenuItem;
--- 140,146 ----
invoke-static {v3, v4}, Ly/m/c/j;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V
! invoke-interface {v3, v2}, Landroid/view/MenuItem;->setVisible(Z)Landroid/view/MenuItem;
.line 7
invoke-interface {p1, v7}, Landroid/view/Menu;->findItem(I)Landroid/view/MenuItem;
......@@ -46,643 +46,531 @@ This patch replaces the call button on DM headers with search button. The call b
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
diff -crB from/AndroidManifest.xml to/AndroidManifest.xml
*** from/AndroidManifest.xml 2020-12-08 18:13:28.198490900 +0000
--- to/AndroidManifest.xml 2020-12-08 18:10:38.788471600 +0000
***************
*** 30,37 ****
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application android:allowBackup="false" android:appCategory="social" android:appComponentFactory="androidx.core.app.CoreComponentFactory" android:icon="@mipmap/ic_logo_square" android:label="@string/discord" android:largeHeap="true" android:name="com.discord.app.App" android:requestLegacyExternalStorage="true" android:roundIcon="@mipmap/ic_logo_round" android:supportsRtl="true" android:theme="@style/AppTheme.Dark" android:usesCleartextTraffic="@bool/use_cleartext_traffic">
<activity android:name="com.discord.samsung.SamsungConnectActivity" android:theme="@style/AppTheme.Translucent"/>
! <activity android:name="com.discord.app.AppActivity" android:screenOrientation="fullUser" android:theme="@style/AppTheme.Dark" android:windowSoftInputMode="adjustResize|stateHidden"/>
! <activity android:exported="true" android:launchMode="singleTask" android:name="com.discord.app.AppActivity$Main" android:screenOrientation="fullUser" android:theme="@style/AppTheme.Loading" android:windowSoftInputMode="adjustResize|stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
--- 30,37 ----
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application android:allowBackup="false" android:appCategory="social" android:appComponentFactory="androidx.core.app.CoreComponentFactory" android:icon="@mipmap/ic_logo_square" android:label="@string/discord" android:largeHeap="true" android:name="com.discord.app.App" android:requestLegacyExternalStorage="true" android:roundIcon="@mipmap/ic_logo_round" android:supportsRtl="true" android:theme="@style/AppTheme.Dark" android:usesCleartextTraffic="@bool/use_cleartext_traffic">
<activity android:name="com.discord.samsung.SamsungConnectActivity" android:theme="@style/AppTheme.Translucent"/>
! <activity android:name="com.discord.app.AppActivity" android:theme="@style/AppTheme.Dark" android:windowSoftInputMode="adjustResize|stateHidden"/>
! <activity android:exported="true" android:launchMode="singleTask" android:name="com.discord.app.AppActivity$Main" android:theme="@style/AppTheme.Loading" android:windowSoftInputMode="adjustResize|stateHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
......@@ -13,643 +13,531 @@ Contributed by [clienthax](https://gitdab.com/clienthax).
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
This diff is collapsed.
......@@ -227,367 +227,303 @@ You can use the following line to patch authorities:
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
This diff is collapsed.
......@@ -220,369 +220,305 @@ Self note: Top bar color is set by `setStatusBarColorResourceId`
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
#### Value reference
......
diff --color -crB com.discord-base/smali_classes2/com/discord/widgets/settings/WidgetSettings.smali com.discord/smali_classes2/com/discord/widgets/settings/WidgetSettings.smali
*** com.discord-base/smali_classes2/com/discord/widgets/settings/WidgetSettings.smali 2021-01-10 03:45:25.447756522 +0300
--- com.discord/smali_classes2/com/discord/widgets/settings/WidgetSettings.smali 2021-01-10 05:25:32.921858679 +0300
***************
*** 581,587 ****
invoke-virtual {v2, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
! const-string v1, " - 57.11 (1387)"
invoke-virtual {v2, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
--- 581,587 ----
invoke-virtual {v2, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
! const-string v1, " - 57.11 (1387), with Cutthecord patches"
invoke-virtual {v2, v1}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
Only in com.discord/smali_classes2/com/discord/widgets/settings: WidgetSettings.smali.orig
Only in com.discord/smali_classes2/com/discord/widgets/settings: WidgetSettings.smali.rej
......@@ -214,367 +214,303 @@ This patch replaces version string and adds mention of cutthecord in the user se
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
diff --color -crB com.discord-base/smali/com/discord/utilities/analytics/AnalyticSuperProperties.smali com.discord/smali/com/discord/utilities/analytics/AnalyticSuperProperties.smali
*** com.discord-base/smali/com/discord/utilities/analytics/AnalyticSuperProperties.smali 2021-01-10 03:45:24.487749506 +0300
--- com.discord/smali/com/discord/utilities/analytics/AnalyticSuperProperties.smali 2021-01-10 04:50:11.827885037 +0300
***************
*** 318,388 ****
.end method
.method private final setSuperProperties(Ljava/util/Map;)V
! .locals 3
! .annotation system Ldalvik/annotation/Signature;
! value = {
! "(",
! "Ljava/util/Map<",
! "Ljava/lang/String;",
! "+",
! "Ljava/lang/Object;",
! ">;)V"
! }
! .end annotation
!
! sget-object v0, Lcom/discord/utilities/analytics/AnalyticSuperProperties;->superProperties$delegate:Lkotlin/properties/ReadWriteProperty;
!
! sget-object v1, Lcom/discord/utilities/analytics/AnalyticSuperProperties;->$$delegatedProperties:[Lkotlin/reflect/KProperty;
!
! const/4 v2, 0x0
!
! aget-object v1, v1, v2
!
! invoke-interface {v0, p0, v1, p1}, Lkotlin/properties/ReadWriteProperty;->setValue(Ljava/lang/Object;Lkotlin/reflect/KProperty;Ljava/lang/Object;)V
return-void
.end method
.method private final declared-synchronized updateSuperProperties(Ljava/util/Map;)V
! .locals 1
! .annotation system Ldalvik/annotation/Signature;
! value = {
! "(",
! "Ljava/util/Map<",
! "Ljava/lang/String;",
! "+",
! "Ljava/lang/Object;",
! ">;)V"
! }
! .end annotation
!
! monitor-enter p0
!
! .line 1
! :try_start_0
! invoke-virtual {p0}, Lcom/discord/utilities/analytics/AnalyticSuperProperties;->getSuperProperties()Ljava/util/Map;
!
! move-result-object v0
!
! invoke-static {v0, p1}, Lu/h/f;->plus(Ljava/util/Map;Ljava/util/Map;)Ljava/util/Map;
!
! move-result-object p1
!
! invoke-direct {p0, p1}, Lcom/discord/utilities/analytics/AnalyticSuperProperties;->setSuperProperties(Ljava/util/Map;)V
! :try_end_0
! .catchall {:try_start_0 .. :try_end_0} :catchall_0
!
! .line 2
! monitor-exit p0
return-void
-
- :catchall_0
- move-exception p1
-
- monitor-exit p0
-
- throw p1
.end method
--- 318,332 ----
.end method
.method private final setSuperProperties(Ljava/util/Map;)V
! .locals 0
return-void
.end method
.method private final declared-synchronized updateSuperProperties(Ljava/util/Map;)V
! .locals 0
return-void
.end method
Only in com.discord/smali/com/discord/utilities/analytics: AnalyticSuperProperties.smali.orig
Only in com.discord/smali/com/discord/utilities/analytics: AnalyticSuperProperties.smali.rej
......@@ -215,367 +215,303 @@ Between 8.3.0 and 33.1: This patch replaces the browser name from "Discord Andro
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
diff --color -crB com.discord-base/smali/com/discord/utilities/textprocessing/MessagePreprocessor.smali com.discord/smali/com/discord/utilities/textprocessing/MessagePreprocessor.smali
*** com.discord-base/smali/com/discord/utilities/textprocessing/MessagePreprocessor.smali 2021-01-10 03:45:24.597750310 +0300
--- com.discord/smali/com/discord/utilities/textprocessing/MessagePreprocessor.smali 2021-01-10 05:22:21.620586615 +0300
***************
*** 693,769 ****
.end method
.method private final stripSimpleEmbedLink(Ljava/util/Collection;)V
! .locals 3
! .annotation system Ldalvik/annotation/Signature;
! value = {
! "(",
! "Ljava/util/Collection<",
! "Lcom/discord/simpleast/core/node/Node<",
! "Lcom/discord/utilities/textprocessing/MessageRenderContext;",
! ">;>;)V"
! }
! .end annotation
- .line 1
- invoke-interface {p1}, Ljava/util/Collection;->size()I
-
- move-result v0
-
- const/4 v1, 0x1
-
- if-ne v0, v1, :cond_2
-
- iget-object v0, p0, Lcom/discord/utilities/textprocessing/MessagePreprocessor;->embeds:Ljava/util/List;
-
- if-eqz v0, :cond_2
-
- invoke-interface {v0}, Ljava/util/List;->size()I
-
- move-result v0
-
- if-eq v0, v1, :cond_0
-
- goto :goto_0
-
- :cond_0
- const/4 v0, 0x0
-
- .line 2
- invoke-static {p1, v0}, Lu/h/f;->elementAt(Ljava/lang/Iterable;I)Ljava/lang/Object;
-
- move-result-object v1
-
- check-cast v1, Lcom/discord/simpleast/core/node/Node;
-
- .line 3
- iget-object v2, p0, Lcom/discord/utilities/textprocessing/MessagePreprocessor;->embeds:Ljava/util/List;
-
- invoke-interface {v2, v0}, Ljava/util/List;->get(I)Ljava/lang/Object;
-
- move-result-object v0
-
- check-cast v0, Lcom/discord/models/domain/ModelMessageEmbed;
-
- .line 4
- instance-of v1, v1, Lcom/discord/utilities/textprocessing/node/UrlNode;
-
- if-nez v1, :cond_1
-
- return-void
-
- .line 5
- :cond_1
- invoke-virtual {v0}, Lcom/discord/models/domain/ModelMessageEmbed;->isSimpleEmbed()Z
-
- move-result v0
-
- if-eqz v0, :cond_2
-
- .line 6
- invoke-interface {p1}, Ljava/util/Collection;->clear()V
-
- :cond_2
- :goto_0
return-void
.end method
--- 693,700 ----
.end method
.method private final stripSimpleEmbedLink(Ljava/util/Collection;)V
! .locals 0
return-void
.end method
Only in com.discord/smali/com/discord/utilities/textprocessing: MessagePreprocessor.smali.orig
Only in com.discord/smali/com/discord/utilities/textprocessing: MessagePreprocessor.smali.rej
......@@ -44,367 +44,303 @@ to
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
diff --color -crB com.discord-base/smali/com/discord/stores/StoreExperiments$getExperimentalAlpha$1.smali com.discord/smali/com/discord/stores/StoreExperiments$getExperimentalAlpha$1.smali
*** com.discord-base/smali/com/discord/stores/StoreExperiments$getExperimentalAlpha$1.smali 2021-01-10 03:45:24.367748629 +0300
--- com.discord/smali/com/discord/stores/StoreExperiments$getExperimentalAlpha$1.smali 2021-01-10 04:48:15.487174897 +0300
***************
*** 61,122 ****
.end method
.method public final invoke()Z
! .locals 4
! .line 2
! iget-object v0, p0, Lcom/discord/stores/StoreExperiments$getExperimentalAlpha$1;->this$0:Lcom/discord/stores/StoreExperiments;
! invoke-static {v0}, Lcom/discord/stores/StoreExperiments;->access$getStoreUser$p(Lcom/discord/stores/StoreExperiments;)Lcom/discord/stores/StoreUser;
!
! move-result-object v0
!
! invoke-virtual {v0}, Lcom/discord/stores/StoreUser;->getMe()Lcom/discord/models/domain/ModelUser$Me;
!
! move-result-object v0
!
! .line 3
! iget-object v1, p0, Lcom/discord/stores/StoreExperiments$getExperimentalAlpha$1;->this$0:Lcom/discord/stores/StoreExperiments;
!
! invoke-static {v1}, Lcom/discord/stores/StoreExperiments;->access$getStoreGuilds$p(Lcom/discord/stores/StoreExperiments;)Lcom/discord/stores/StoreGuilds;
!
! move-result-object v1
!
! invoke-virtual {v1}, Lcom/discord/stores/StoreGuilds;->getGuilds()Ljava/util/Map;
!
! move-result-object v1
!
! const-wide v2, 0x2bc056ab0800006L
!
! invoke-static {v2, v3}, Ljava/lang/Long;->valueOf(J)Ljava/lang/Long;
!
! move-result-object v2
!
! invoke-interface {v1, v2}, Ljava/util/Map;->get(Ljava/lang/Object;)Ljava/lang/Object;
!
! move-result-object v1
!
! check-cast v1, Lcom/discord/models/domain/ModelGuild;
!
! const/4 v2, 0x1
!
! if-eqz v0, :cond_0
!
! .line 4
! invoke-virtual {v0}, Lcom/discord/models/domain/ModelUser;->isStaff()Z
!
! move-result v0
!
! if-eq v0, v2, :cond_2
!
! :cond_0
! if-eqz v1, :cond_1
!
! goto :goto_0
!
! :cond_1
! const/4 v2, 0x0
!
! :cond_2
! :goto_0
! return v2
.end method
--- 61,69 ----
.end method
.method public final invoke()Z
! .locals 1
! const/4 v0, 0x1
! return v0
.end method
diff --color -crB com.discord-base/smali_classes2/com/discord/widgets/settings/WidgetSettingsAppearance$Model$Companion$get$1.smali com.discord/smali_classes2/com/discord/widgets/settings/WidgetSettingsAppearance$Model$Companion$get$1.smali
*** com.discord-base/smali_classes2/com/discord/widgets/settings/WidgetSettingsAppearance$Model$Companion$get$1.smali 2021-01-10 03:45:25.444423164 +0300
--- com.discord/smali_classes2/com/discord/widgets/settings/WidgetSettingsAppearance$Model$Companion$get$1.smali 2021-01-10 04:48:38.903984500 +0300
***************
*** 92,102 ****
if-nez p4, :cond_1
! invoke-static {p1, v1}, Lu/m/c/j;->checkNotNullExpressionValue(Ljava/lang/Object;Ljava/lang/String;)V
!
! invoke-virtual {p1}, Lcom/discord/models/domain/ModelUser;->isStaff()Z
!
! move-result p4
if-eqz p4, :cond_0
--- 92,98 ----
if-nez p4, :cond_1
! const/4 p4, 0x1
if-eqz p4, :cond_0
Only in com.discord/smali_classes2/com/discord/widgets/settings: WidgetSettingsAppearance$Model$Companion$get$1.smali.orig
Only in com.discord/smali_classes2/com/discord/widgets/settings: WidgetSettingsAppearance$Model$Companion$get$1.smali.rej
......@@ -218,367 +218,303 @@ This patch enables developer options (empty), mobile experiments (of which there
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
Only in com.discord: build
Only in com.discord: dist
diff --color -crB com.discord-base/smali/com/discord/widgets/chat/input/emoji/EmojiPickerViewModel$Companion.smali com.discord/smali/com/discord/widgets/chat/input/emoji/EmojiPickerViewModel$Companion.smali
*** com.discord-base/smali/com/discord/widgets/chat/input/emoji/EmojiPickerViewModel$Companion.smali 2020-07-30 01:52:32.303011366 +0300
--- com.discord/smali/com/discord/widgets/chat/input/emoji/EmojiPickerViewModel$Companion.smali 2020-07-31 15:28:48.386493702 +0300
***************
*** 154,159 ****
--- 154,165 ----
if-eqz v4, :cond_2
+ invoke-interface {v1}, Lcom/discord/models/domain/emoji/Emoji;->isUsable()Z
+
+ move-result v4
+
+ if-eqz v4, :cond_2
+
.line 5
new-instance v2, Lcom/discord/widgets/chat/input/emoji/WidgetEmojiAdapter$EmojiItem;
......@@ -49,367 +49,303 @@ Big thanks to [@BlueMods](https://gitdab.com/BlueMods) for sending in this patch
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.1
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
- 53.3
- 54.0
- 55.1
- 56.0
- 57.11
- 53.6
- 53.8
- 54.0
- 55.1
- 56.0
- 57.11
diff -crB from/smali/com/discord/utilities/icon/IconUtils.smali to/smali/com/discord/utilities/icon/IconUtils.smali
*** from/smali/com/discord/utilities/icon/IconUtils.smali 2020-12-10 17:59:08.313854767 +0000
--- to/smali/com/discord/utilities/icon/IconUtils.smali 2020-12-10 17:59:55.062392568 +0000
***************
*** 1478,1483 ****
--- 1478,1491 ----
invoke-virtual {p3, p2}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
+ # Set avatar image size to 256
+
+ const-string v0, "?size=256"
+
+ invoke-virtual {p3, v0}, Ljava/lang/StringBuilder;->append(Ljava/lang/String;)Ljava/lang/StringBuilder;
+
+ const-string v0, "https://cdn.discordapp.com/avatars/"
+
invoke-virtual {p3}, Ljava/lang/StringBuilder;->toString()Ljava/lang/String;
move-result-object p0
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
diff -crB from/AndroidManifest.xml to/AndroidManifest.xml
*** from/AndroidManifest.xml 2021-01-10 03:45:18.531039304 +0300
--- to/AndroidManifest.xml 2021-01-10 03:46:20.544816421 +0300
***************
*** 1,4 ****
! <?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" android:installLocation="auto" package="com.discord" platformBuildVersionCode="30" platformBuildVersionName="11">
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.faketouch" android:required="false"/>
--- 1,4 ----
! <?xml version="1.0" encoding="utf-8" standalone="no"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" android:compileSdkVersion="30" android:compileSdkVersionCodename="11" android:installLocation="auto" package="com.discord" platformBuildVersionCode="1387" platformBuildVersionName="57.11">
<uses-feature android:name="android.hardware.camera" android:required="false"/>
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false"/>
<uses-feature android:name="android.hardware.faketouch" android:required="false"/>
diff -crB -x dist -x build com.discord-835-base/res/layout/widget_chat_list_adapter_item_blocked.xml com.discord-835/res/layout/widget_chat_list_adapter_item_blocked.xml
*** com.discord-835-base/res/layout/widget_chat_list_adapter_item_blocked.xml 2019-01-25 10:57:34.359248256 +0300
--- com.discord-835/res/layout/widget_chat_list_adapter_item_blocked.xml 2019-01-27 00:08:22.929085528 +0300
***************
*** 1,5 ****
<?xml version="1.0" encoding="utf-8"?>
! <RelativeLayout android:background="?selectableItemBackground" android:paddingLeft="@dimen/chat_cell_horizontal_spacing_padding" android:paddingTop="@dimen/chat_cell_vertical_spacing_padding" android:paddingRight="@dimen/chat_cell_horizontal_spacing_padding" android:paddingBottom="@dimen/chat_cell_vertical_spacing_padding" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginLeft="@dimen/chat_cell_horizontal_spacing_margin" android:layout_marginRight="@dimen/chat_cell_horizontal_spacing_margin"
xmlns:android="http://schemas.android.com/apk/res/android">
! <TextView android:textSize="11.0sp" android:textColor="?theme_chat_blocked_text" android:gravity="center" android:id="@id/chat_list_adapter_item_blocked" android:background="?theme_chat_blocked_bg" android:paddingTop="7.5dip" android:paddingBottom="7.5dip" android:layout_width="fill_parent" style="@style/UiKit.TextView" />
</RelativeLayout>
\ No newline at end of file
--- 1,5 ----
<?xml version="1.0" encoding="utf-8"?>
! <RelativeLayout android:background="?selectableItemBackground" android:paddingLeft="0px" android:paddingTop="0px" android:paddingRight="0px" android:paddingBottom="@dimen/chat_cell_vertical_spacing_padding" android:layout_width="0px" android:layout_height="0px" android:layout_marginLeft="0px" android:layout_marginRight="@dimen/chat_cell_horizontal_spacing_margin"
xmlns:android="http://schemas.android.com/apk/res/android">
! <TextView android:textSize="0sp" android:textColor="?theme_chat_blocked_text" android:gravity="center" android:id="@id/chat_list_adapter_item_blocked" android:background="?theme_chat_blocked_bg" android:paddingTop="0dip" android:paddingBottom="0dip" android:layout_width="fill_parent" style="@style/UiKit.TextView" />
</RelativeLayout>
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
#!/bin/bash
mv smali/com/airbnb smali_classes2/com/
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.