Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: follow the system theme #1279

Merged
merged 9 commits into from
Sep 21, 2023
Merged

Conversation

BenjaminHalko
Copy link
Sponsor Member

fixes: #1260

@BenjaminHalko
Copy link
Sponsor Member Author

Screen_Recording_20230920_101635_ReVanced.Manager.mp4

@BenjaminHalko BenjaminHalko linked an issue Sep 20, 2023 that may be closed by this pull request
@BenjaminHalko BenjaminHalko linked an issue Sep 20, 2023 that may be closed by this pull request
4 tasks
@oSumAtrIX
Copy link
Member

Wondering if this is following correct M3 specs.

PS: Banger wallpaper

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Instead of a DropDown button, you can use a FilledTonalButton and a popup, it looks much better

@BenjaminHalko
Copy link
Sponsor Member Author

I knew the dropdown looked a little rough...

@BenjaminHalko
Copy link
Sponsor Member Author

@Ushie I am assuming a popup of radio buttons?

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

yep!

@BenjaminHalko
Copy link
Sponsor Member Author

BenjaminHalko commented Sep 20, 2023

@Ushie Something like this:

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

It needs to have an apply and cancel button, and you could add an icon to the popup title maybe

This is how the old revanced manager codebase had it
SmartSelect_20230920_212207_Hyperion

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

I believe according to m3 guidelines the only time you provide the user with a single action is when it's an acknowledgement popup, not an action

@BenjaminHalko
Copy link
Sponsor Member Author

Is that icon still in the code, or will I need to get it from somewhere...

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

It's a material design icon, I believe that specific one is Icon.palette, you can use it like other icons are used across the app

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

@PalmDevs Should this dialog include a title icon? no other dialog in the app does, it may be better to not include one just for the sake of consistency at the moment

@PalmDevs
Copy link
Member

@PalmDevs Should this dialog include a title icon? no other dialog in the app does, it may be better to not include one just for the sake of consistency at the moment

Technically, all dialogs should have an icon; but if no dialogs have it, don't include it for this one specific dialog.

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Generally the current popups in the app aren't consistent in any way so we could have one PR refactoring all the popups, I could also probably pair that with a settings refactor because settings are currently in a horrible state

assets/i18n/en_US.json Outdated Show resolved Hide resolved
assets/i18n/en_US.json Outdated Show resolved Hide resolved
Copy link
Member

@PalmDevs PalmDevs left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The design should ideally look exactly like what Ushie's sent in the screenshot. Except only use text buttons, filled button isn't necessary. Also needs a few string changes.

@BenjaminHalko
Copy link
Sponsor Member Author

Why not filled buttons, the other dialogs have them.

@PalmDevs
Copy link
Member

Why not filled buttons, the other dialogs have them.

We don't need to point the user to click on one specific option as clicking on both does no harm.

@BenjaminHalko
Copy link
Sponsor Member Author

how's this:
Screenshot_20230920-114831_ReVanced Manager Debug

@BenjaminHalko
Copy link
Sponsor Member Author

also, pressing back on the navbar acts like the user has pressed ok, because chances are they would rather keep the changed theme than revert back.

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

I think it'll be fine like this, the install type dialog also looks like this

@BenjaminHalko
Copy link
Sponsor Member Author

BenjaminHalko commented Sep 20, 2023

I do fine it odd that the space on the left of the radio button is slightly less than to the right between the text...

@BenjaminHalko
Copy link
Sponsor Member Author

This looks better to me personally:
Screenshot_20230920-163303_ReVanced Manager Debug

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

If you go with that instead, you should also update the padding on the installer one

@BenjaminHalko
Copy link
Sponsor Member Author

I agree, if we do that should I open a new PR or just include it in this

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Hm, I just remembered that installer dialog includes a title icon actually

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Try removing the padding and adding the title icon we mentioned earlier in this thread, it might look better then because the title becomes centered

@BenjaminHalko
Copy link
Sponsor Member Author

Icons.palette gives this icon which is different than the one shown in the picture you sent, but it still works.

Screenshot_20230920-163946_ReVanced Manager Debug

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Ah no, I meant remove the extra padding you added in your last preview, and that icon works fine yeah

@BenjaminHalko
Copy link
Sponsor Member Author

Screenshot_20230920-164453_ReVanced Manager Debug

Though I personally like this one better as the padding between the edges and text are the same:
Screenshot_20230920-164658_ReVanced Manager Debug

@BenjaminHalko
Copy link
Sponsor Member Author

There is also this problem we have to take into account:
Screenshot_20230920-164846_ReVanced Manager Debug

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Alright, you can update the installer one aswell and push your changes

@BenjaminHalko
Copy link
Sponsor Member Author

Sounds good

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

There is also this problem we have to take into account: Screenshot_20230920-164846_ReVanced Manager Debug

Hm, I think radiolists in dialogs are meant to be scrollable, let me show you an example

I'm not sure how to do that in Flutter though

@BenjaminHalko
Copy link
Sponsor Member Author

I think using SingleChildScrollView

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

unnamed (4)

@BenjaminHalko
Copy link
Sponsor Member Author

fixed:
Screenshot_20230920-165221_ReVanced Manager Debug

@Ushie
Copy link
Member

Ushie commented Sep 20, 2023

Looks good to me, since that change should also be done in installer type's dialog you should push the changes relevant to theme picker only and a followup commit in the dev branch for installer type

@Ushie Ushie merged commit 6260a80 into ReVanced:dev Sep 21, 2023
2 checks passed
@BenjaminHalko BenjaminHalko deleted the system-theme branch September 21, 2023 02:10
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 29, 2023
# [1.10.0](v1.9.3...v1.10.0) (2023-12-29)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* build prerelease ([e4ea514](e4ea514))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 29, 2023
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2023-12-29)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* **temp:** this is a test ([5881fc4](5881fc4))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Pre-releases ([29d113a](29d113a))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 30, 2023
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2023-12-30)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* made better ([ba3b25e](ba3b25e))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* updated ([5a2d45d](5a2d45d))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Pre-releases ([29d113a](29d113a))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* use native TextField ([9ed43ef](9ed43ef))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 30, 2023
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2023-12-30)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* made better ([ba3b25e](ba3b25e))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* updated ([5a2d45d](5a2d45d))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Pre-releases ([29d113a](29d113a))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* use native TextField ([9ed43ef](9ed43ef))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 30, 2023
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2023-12-30)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* made better ([ba3b25e](ba3b25e))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* updated ([b288c22](b288c22))
* updated ([5a2d45d](5a2d45d))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Pre-releases ([29d113a](29d113a))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* use native TextField ([9ed43ef](9ed43ef))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Dec 31, 2023
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2023-12-31)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* made better ([ba3b25e](ba3b25e))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* updated ([5fdc003](5fdc003))
* updated ([b288c22](b288c22))
* updated ([5a2d45d](5a2d45d))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Pre-releases ([29d113a](29d113a))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* use native TextField ([9ed43ef](9ed43ef))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
github-actions bot pushed a commit to BenjaminHalko/revanced-manager that referenced this pull request Jan 30, 2024
# [1.10.0-dev.1](v1.9.3...v1.10.0-dev.1) (2024-01-30)

### Bug Fixes

* `Don't use 'BuildContext's across async gaps.` ([ReVanced#1148](https://github.com/BenjaminHalko/revanced-manager/issues/1148)) ([fc8a4fc](fc8a4fc))
* `Material You` toggle not updating sometimes ([ReVanced#1421](https://github.com/BenjaminHalko/revanced-manager/issues/1421)) ([e686898](e686898))
* Add missing confirmation dialog ([7a1ba9d](7a1ba9d))
* added a trailing comma ([975180b](975180b))
* Allow mounting without Magisk ([3f96608](3f96608))
* **App Selector:** Unable to select APK from storage when asked to ([ReVanced#1513](https://github.com/BenjaminHalko/revanced-manager/issues/1513)) ([7897827](7897827))
* **app-bar:** title not hiding completely ([ReVanced#1376](https://github.com/BenjaminHalko/revanced-manager/issues/1376)) ([d577e97](d577e97))
* back button closing the app from any page ([2bf6a03](2bf6a03))
* **build:** allow profile variant to compile ([d25d1ef](d25d1ef)), closes [ReVanced#1305](https://github.com/BenjaminHalko/revanced-manager/issues/1305)
* close before returning ([64a96fc](64a96fc))
* Correct update message ([a141ec8](a141ec8))
* **custom-sources:** ignore casing when checking if default repo is being used ([ReVanced#1281](https://github.com/BenjaminHalko/revanced-manager/issues/1281)) ([9ad1d6c](9ad1d6c))
* default theme not following system ([ReVanced#1288](https://github.com/BenjaminHalko/revanced-manager/issues/1288)) ([6f4866e](6f4866e))
* Disable wakelock when patching is canceled ([ReVanced#1514](https://github.com/BenjaminHalko/revanced-manager/issues/1514)) ([9df89c7](9df89c7))
* do not ask for patches consent before initializing model ([1e8d8f7](1e8d8f7))
* Do not delete cached downloads ([6961bb7](6961bb7))
* Do not delete files from post-fs-data.d ([70a1086](70a1086))
* Do not hardcode any predefined packages ([2e8e3b0](2e8e3b0))
* **export-settings:** export patches as json object ([f7c11d0](f7c11d0))
* **export-settings:** remove boolean workaround ([2ad106f](2ad106f))
* exported logs patch selection ([ReVanced#1535](https://github.com/BenjaminHalko/revanced-manager/issues/1535)) ([2ae8d49](2ae8d49))
* Fill the preferred action ([0492e91](0492e91))
* fix redundant buttons on dialog ([079c0de](079c0de))
* force disable material you on Android 11 and below ([ReVanced#1293](https://github.com/BenjaminHalko/revanced-manager/issues/1293)) ([c3d345d](c3d345d))
* Hide empty patches category labels ([ReVanced#1439](https://github.com/BenjaminHalko/revanced-manager/issues/1439)) ([0be568b](0be568b))
* hide install button on error ([42e41c3](42e41c3))
* ignore the root .gradle folder ([8e2cfbd](8e2cfbd))
* improve app list loading speed ([ReVanced#1166](https://github.com/BenjaminHalko/revanced-manager/issues/1166)) ([f4b0a69](f4b0a69))
* Include new patches that are used by default ([7831a34](7831a34))
* Incorrect duplicate filename handling when exporting files ([ReVanced#1541](https://github.com/BenjaminHalko/revanced-manager/issues/1541)) ([de51fbd](de51fbd))
* Incorrect strings and logics ([ReVanced#1619](https://github.com/BenjaminHalko/revanced-manager/issues/1619)) ([4f22e88](4f22e88))
* **install-type:** update padding and enable radio list scrolling ([ReVanced#1287](https://github.com/BenjaminHalko/revanced-manager/issues/1287)) ([e75d3c8](e75d3c8))
* **installer:** open the patched app after install ([ReVanced#1233](https://github.com/BenjaminHalko/revanced-manager/issues/1233)) ([c5fc54e](c5fc54e))
* **Keystore Password:** textfield title display ([8e52abd](8e52abd))
* Load installed apps ([36c86e2](36c86e2))
* Load patches from older versions of ReVanced Manager correctly ([6ad0d86](6ad0d86))
* load patches via `PatchBundle` ([ReVanced#1242](https://github.com/BenjaminHalko/revanced-manager/issues/1242)) ([4b8542b](4b8542b))
* Log saved patch option values ([ReVanced#1420](https://github.com/BenjaminHalko/revanced-manager/issues/1420)) ([e7d8285](e7d8285))
* make entire theme item clickable ([e01b323](e01b323))
* migration latest changes to native buttons ([c56c445](c56c445))
* Mount script causes build to fail ([ReVanced#1613](https://github.com/BenjaminHalko/revanced-manager/issues/1613)) ([f3c78c2](f3c78c2))
* Move installation log to correct place ([c4a7954](c4a7954))
* npe when loading patch bundle on android 8 ([0bfa776](0bfa776))
* npe when patching on android 8 ([9f64011](9f64011))
* **Patch Option:** Set text colour on dropdown menu ([acb1e24](acb1e24))
* **patch_selector:** correct popup menu style ([72ea33b](72ea33b)), closes [ReVanced#1372](https://github.com/BenjaminHalko/revanced-manager/issues/1372)
* patcher logs hiding behind navigation bar ([ReVanced#1476](https://github.com/BenjaminHalko/revanced-manager/issues/1476)) ([5ed3ed9](5ed3ed9))
* **patches-selector:** ignore punctuation marks when searching for patch ([ReVanced#1377](https://github.com/BenjaminHalko/revanced-manager/issues/1377)) ([2dc92e2](2dc92e2))
* permissions handling at first launch ([8cb96f1](8cb96f1))
* Prevent crash by escaping string correctly ([8a1ab47](8a1ab47))
* properly log messages and progress ([7911a8f](7911a8f))
* **Release CI:** truncate the "v" from version ([8595099](8595099))
* Reload patches ([b07439d](b07439d))
* remove codeblock from log export ([d60ced2](d60ced2)), closes [ReVanced#1416](https://github.com/BenjaminHalko/revanced-manager/issues/1416)
* Remove incorrect punctuation ([ReVanced#1499](https://github.com/BenjaminHalko/revanced-manager/issues/1499)) ([35d8084](35d8084))
* reset patches after patching ([cd07f39](cd07f39))
* Reset progress if patch was cancelled ([850bdc4](850bdc4))
* Retrieve app information from patched app ([2b4b3ca](2b4b3ca))
* search bar overflow ([ReVanced#1301](https://github.com/BenjaminHalko/revanced-manager/issues/1301)) ([0983ba8](0983ba8))
* search with package name ([ReVanced#1344](https://github.com/BenjaminHalko/revanced-manager/issues/1344)) ([4085c10](4085c10))
* selected patches order ([ReVanced#1345](https://github.com/BenjaminHalko/revanced-manager/issues/1345)) ([2abadc7](2abadc7))
* **settings-view:** list items jumping on scroll up ([ReVanced#1375](https://github.com/BenjaminHalko/revanced-manager/issues/1375)) ([5d5f311](5d5f311))
* **settings:** inverted version compatibility switch ([59adb91](59adb91))
* typo in reset patch selection dialog ([ReVanced#1387](https://github.com/BenjaminHalko/revanced-manager/issues/1387)) ([53677e2](53677e2))
* Unable to unselect new patches ([18e680b](18e680b))
* unable to use custom API ([ReVanced#1435](https://github.com/BenjaminHalko/revanced-manager/issues/1435)) ([e74ffac](e74ffac))
* Update home screen after installation ([7426f54](7426f54))
* update install type dialog padding ([b7acb47](b7acb47))
* Update the progress properly until installation finishes successfully ([1298a96](1298a96))
* update youtube link ([ReVanced#1286](https://github.com/BenjaminHalko/revanced-manager/issues/1286)) ([42b6bbf](42b6bbf))
* Use correct installation type labels ([1928b15](1928b15))
* Use correct method name for string replacement ([494e268](494e268))
* Use correct version code & name ([ReVanced#1647](https://github.com/BenjaminHalko/revanced-manager/issues/1647)) ([d933997](d933997))
* use lowercase repo names ([ReVanced#1626](https://github.com/BenjaminHalko/revanced-manager/issues/1626)) ([edd8602](edd8602))

### Features

* ability to search query for suggested version ([ReVanced#1151](https://github.com/BenjaminHalko/revanced-manager/issues/1151)) ([9bd48c1](9bd48c1))
* Add API migration code ([ReVanced#1615](https://github.com/BenjaminHalko/revanced-manager/issues/1615)) ([28ae276](28ae276))
* add haptic feedback ([ReVanced#1459](https://github.com/BenjaminHalko/revanced-manager/issues/1459)) ([7911459](7911459))
* Add patch options ([ReVanced#1354](https://github.com/BenjaminHalko/revanced-manager/issues/1354)) ([ac63667](ac63667))
* add user agent ([ReVanced#1380](https://github.com/BenjaminHalko/revanced-manager/issues/1380)) ([e960fcc](e960fcc))
* Adjust install dialog labels ([c87f92b](c87f92b))
* append patch version to the APK name while sharing/exporting ([ReVanced#1547](https://github.com/BenjaminHalko/revanced-manager/issues/1547)) ([7df1ae7](7df1ae7))
* clarify "Version compatibility check" description ([ReVanced#1397](https://github.com/BenjaminHalko/revanced-manager/issues/1397)) ([533b6a1](533b6a1))
* Clarify non root installation button ([11a8f31](11a8f31))
* dialogs correctly follows Material 3 specifications ([ReVanced#1560](https://github.com/BenjaminHalko/revanced-manager/issues/1560)) ([f8d086a](f8d086a))
* Disable selection of un-suggested app version by default ([ReVanced#1471](https://github.com/BenjaminHalko/revanced-manager/issues/1471)) ([70b2ee0](70b2ee0))
* Export settings migration activity ([ReVanced#1308](https://github.com/BenjaminHalko/revanced-manager/issues/1308)) ([4de274b](4de274b))
* Improve app selector and patcher UI ([ReVanced#1616](https://github.com/BenjaminHalko/revanced-manager/issues/1616)) ([efb2d5e](efb2d5e))
* Improve dialog text clarity ([69b6ef0](69b6ef0))
* Improve installation robustness ([ReVanced#1528](https://github.com/BenjaminHalko/revanced-manager/issues/1528)) ([c23275f](c23275f))
* Improve Split APK warning readability ([ReVanced#1625](https://github.com/BenjaminHalko/revanced-manager/issues/1625)) ([6fd740f](6fd740f))
* Only log relevant records ([15b8613](15b8613))
* output suggested version into patch log ([ReVanced#1557](https://github.com/BenjaminHalko/revanced-manager/issues/1557)) ([637641c](637641c))
* **patcher:** improve logs ([ReVanced#1299](https://github.com/BenjaminHalko/revanced-manager/issues/1299)) ([8fd4fe0](8fd4fe0))
* Remove full external storage access ([ReVanced#1381](https://github.com/BenjaminHalko/revanced-manager/issues/1381)) ([f334da9](f334da9))
* Remove original package name in app info view ([91837eb](91837eb))
* root status in export patch log ([ReVanced#1407](https://github.com/BenjaminHalko/revanced-manager/issues/1407)) ([ad6b164](ad6b164))
* **settings - appearance:** add system option ([ReVanced#1279](https://github.com/BenjaminHalko/revanced-manager/issues/1279)) ([6260a80](6260a80)), closes [ReVanced#1260](https://github.com/BenjaminHalko/revanced-manager/issues/1260)
* share settings ([2a89ef7](2a89ef7))
* Show a dialog when an update is available ([ReVanced#1654](https://github.com/BenjaminHalko/revanced-manager/issues/1654)) ([c7d975e](c7d975e))
* show patch options in error log ([ReVanced#1394](https://github.com/BenjaminHalko/revanced-manager/issues/1394)) ([bb99901](bb99901))
* Simplify label ([6bdc0c7](6bdc0c7))
* Simplify label ([8661d72](8661d72))
* Simplify settings strings ([ReVanced#1618](https://github.com/BenjaminHalko/revanced-manager/issues/1618)) ([0d45fe4](0d45fe4))
* update color scheme ([ReVanced#1483](https://github.com/BenjaminHalko/revanced-manager/issues/1483)) ([ec26e4d](ec26e4d))
* updated logs ([ReVanced#1526](https://github.com/BenjaminHalko/revanced-manager/issues/1526)) ([7931eb9](7931eb9))
* use native TextField ([9ed43ef](9ed43ef))
* Use simpler wording ([d8eadc2](d8eadc2))

### Performance Improvements

* Do not load patches twice ([012110f](012110f))
* Do not load patches twice ([ReVanced#1328](https://github.com/BenjaminHalko/revanced-manager/issues/1328)) ([a709abd](a709abd))
* Load patched apps as soon as possible ([c94eb7a](c94eb7a))
* Reduce amount of network requests ([8ce266b](8ce266b))
* Reduce amount of shell commands ([5b1c89a](5b1c89a))
* Use hashset for fast comparison ([1fad904](1fad904))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Follow the system theme
4 participants