mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-24 03:31:03 +00:00
Compare commits
3 Commits
feat/pin-s
...
v1.26.0-de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b43ac8a1af | ||
|
|
2ff70728b4 | ||
|
|
e5097b5ecd |
@@ -1,3 +1,17 @@
|
|||||||
|
# app [1.26.0-dev.10](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.9...v1.26.0-dev.10) (2025-10-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* prevent back presses during installation ([2ff7072](https://github.com/ReVanced/revanced-manager/commit/2ff70728b490b92f212a82dcf599bc0c23f589e7))
|
||||||
|
|
||||||
|
# app [1.26.0-dev.9](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.8...v1.26.0-dev.9) (2025-10-06)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* Instantly re-fetch patch bundle on pre-release preference update ([d5671db](https://github.com/ReVanced/revanced-manager/commit/d5671db3a77541c07bbbb4c3baca02f3ba0703f2)), closes [#2784](https://github.com/ReVanced/revanced-manager/issues/2784)
|
||||||
|
|
||||||
# app [1.26.0-dev.8](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.7...v1.26.0-dev.8) (2025-10-06)
|
# app [1.26.0-dev.8](https://github.com/ReVanced/revanced-manager/compare/v1.26.0-dev.7...v1.26.0-dev.8) (2025-10-06)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
version = 1.26.0-dev.8
|
version = 1.26.0-dev.10
|
||||||
|
|||||||
@@ -176,7 +176,7 @@ fun AppSelectorScreen(
|
|||||||
.padding(paddingValues),
|
.padding(paddingValues),
|
||||||
horizontalAlignment = Alignment.CenterHorizontally
|
horizontalAlignment = Alignment.CenterHorizontally
|
||||||
) {
|
) {
|
||||||
stickyHeader {
|
item {
|
||||||
ListItem(
|
ListItem(
|
||||||
modifier = Modifier.clickable {
|
modifier = Modifier.clickable {
|
||||||
pickApkLauncher.launch(APK_MIMETYPE)
|
pickApkLauncher.launch(APK_MIMETYPE)
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ import app.revanced.manager.ui.model.StepCategory
|
|||||||
import app.revanced.manager.ui.viewmodel.PatcherViewModel
|
import app.revanced.manager.ui.viewmodel.PatcherViewModel
|
||||||
import app.revanced.manager.util.APK_MIMETYPE
|
import app.revanced.manager.util.APK_MIMETYPE
|
||||||
import app.revanced.manager.util.EventEffect
|
import app.revanced.manager.util.EventEffect
|
||||||
|
import app.revanced.manager.util.toast
|
||||||
|
|
||||||
@OptIn(ExperimentalMaterial3Api::class)
|
@OptIn(ExperimentalMaterial3Api::class)
|
||||||
@Composable
|
@Composable
|
||||||
@@ -76,11 +77,10 @@ fun PatcherScreen(
|
|||||||
var showInstallPicker by rememberSaveable { mutableStateOf(false) }
|
var showInstallPicker by rememberSaveable { mutableStateOf(false) }
|
||||||
var showDismissConfirmationDialog by rememberSaveable { mutableStateOf(false) }
|
var showDismissConfirmationDialog by rememberSaveable { mutableStateOf(false) }
|
||||||
|
|
||||||
fun onPageBack() {
|
fun onPageBack() = when {
|
||||||
if(patcherSucceeded == null)
|
patcherSucceeded == null -> showDismissConfirmationDialog = true
|
||||||
showDismissConfirmationDialog = true
|
viewModel.isInstalling -> context.toast(context.getString(R.string.patcher_install_in_progress))
|
||||||
else
|
else -> onLeave()
|
||||||
onLeave()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
BackHandler(onBack = ::onPageBack)
|
BackHandler(onBack = ::onPageBack)
|
||||||
|
|||||||
@@ -318,6 +318,7 @@
|
|||||||
<string name="patcher_notification_text">Tap to return to the patcher</string>
|
<string name="patcher_notification_text">Tap to return to the patcher</string>
|
||||||
<string name="patcher_stop_confirm_title">Stop patcher</string>
|
<string name="patcher_stop_confirm_title">Stop patcher</string>
|
||||||
<string name="patcher_stop_confirm_description">Are you sure you want to stop the patching process?</string>
|
<string name="patcher_stop_confirm_description">Are you sure you want to stop the patching process?</string>
|
||||||
|
<string name="patcher_install_in_progress">Installation is in progress. Please wait</string>
|
||||||
<string name="execute_patches">Execute patches</string>
|
<string name="execute_patches">Execute patches</string>
|
||||||
<string name="executing_patch">Execute %s</string>
|
<string name="executing_patch">Execute %s</string>
|
||||||
<string name="failed_to_execute_patch">Failed to execute %s</string>
|
<string name="failed_to_execute_patch">Failed to execute %s</string>
|
||||||
|
|||||||
Reference in New Issue
Block a user