mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-23 11:11:03 +00:00
Compare commits
25 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
795a1c78df | ||
|
|
6ea055d486 | ||
|
|
b0c4567cb8 | ||
|
|
6e05120aa5 | ||
|
|
c5958f1257 | ||
|
|
0faf86c9e9 | ||
|
|
ee689922a3 | ||
|
|
be77a181ec | ||
|
|
30376c960f | ||
|
|
405147b1c5 | ||
|
|
d545dfe49b | ||
|
|
c571cf2c53 | ||
|
|
fd5d71e24d | ||
|
|
2c3809d2bc | ||
|
|
0fc8e7cbc8 | ||
|
|
787e47f634 | ||
|
|
dc47da75f2 | ||
|
|
6b999b0a0c | ||
|
|
b00d2d16d4 | ||
|
|
97d4da568b | ||
|
|
e563049f6a | ||
|
|
cc00d0dc08 | ||
|
|
2a220c3984 | ||
|
|
1d440d25be | ||
|
|
ba5234e850 |
45
.github/workflows/crowdin.yml
vendored
Normal file
45
.github/workflows/crowdin.yml
vendored
Normal file
@@ -0,0 +1,45 @@
|
|||||||
|
name: Sync Crowdin translations
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- "flutter"
|
||||||
|
paths:
|
||||||
|
- "assets/i18n/en_US.json"
|
||||||
|
- ".github/workflows/crowdin.yml"
|
||||||
|
schedule:
|
||||||
|
- cron: "0 0 * * *" # daily
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
sync-crowdin:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Crowdin
|
||||||
|
uses: crowdin/github-action@1.0.4
|
||||||
|
with:
|
||||||
|
config: crowdin.yml
|
||||||
|
upload_translations: true
|
||||||
|
download_translations: true
|
||||||
|
push_translations: true
|
||||||
|
create_pull_request: false
|
||||||
|
localization_branch_name: i18n_flutter
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
|
||||||
|
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}
|
||||||
|
|
||||||
|
# commented due to Manager not being ready for the translated files to be in the main branch
|
||||||
|
# - name: GitHub is so dumb i just cant
|
||||||
|
# run: |
|
||||||
|
# sudo chmod -R ugo+rwX .
|
||||||
|
|
||||||
|
# - name: Merge
|
||||||
|
# run: |
|
||||||
|
# git checkout flutter
|
||||||
|
# git add *
|
||||||
|
# git merge i18n_flutter
|
||||||
|
# git push
|
||||||
4
.github/workflows/debug-build.yml
vendored
4
.github/workflows/debug-build.yml
vendored
@@ -19,6 +19,10 @@ jobs:
|
|||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v1
|
||||||
with:
|
with:
|
||||||
channel: 'stable'
|
channel: 'stable'
|
||||||
|
- name: Set environment variables
|
||||||
|
run: echo $SECRETS | base64 -d > lib/utils/environment.dart
|
||||||
|
env:
|
||||||
|
SECRETS: ${{ secrets.SECRETS }}
|
||||||
- name: Set up Flutter
|
- name: Set up Flutter
|
||||||
run: flutter pub get
|
run: flutter pub get
|
||||||
- name: Generate files with Builder
|
- name: Generate files with Builder
|
||||||
|
|||||||
4
.github/workflows/release-build.yml
vendored
4
.github/workflows/release-build.yml
vendored
@@ -19,6 +19,10 @@ jobs:
|
|||||||
- uses: subosito/flutter-action@v1
|
- uses: subosito/flutter-action@v1
|
||||||
with:
|
with:
|
||||||
channel: 'stable'
|
channel: 'stable'
|
||||||
|
- name: Set environment variables
|
||||||
|
run: echo $SECRETS | base64 -d > lib/utils/environment.dart
|
||||||
|
env:
|
||||||
|
SECRETS: ${{ secrets.SECRETS }}
|
||||||
- name: Set up Flutter
|
- name: Set up Flutter
|
||||||
run: flutter pub get
|
run: flutter pub get
|
||||||
- name: Generate files with Builder
|
- name: Generate files with Builder
|
||||||
|
|||||||
@@ -20,6 +20,11 @@ For suggestions and bug reports, open an issue [here](https://github.com/revance
|
|||||||
If you wish to discuss the Manager, a thread has been made under the [#development](https://discord.com/channels/952946952348270622/1002922226443632761) channel in the Discord server, please note that this thread may be temporary and may be removed in the future.
|
If you wish to discuss the Manager, a thread has been made under the [#development](https://discord.com/channels/952946952348270622/1002922226443632761) channel in the Discord server, please note that this thread may be temporary and may be removed in the future.
|
||||||
|
|
||||||
|
|
||||||
|
## 🌐 Translation
|
||||||
|
[](https://crowdin.com/project/revanced)
|
||||||
|
|
||||||
|
If you wish to translate ReVanced Manager, we're accepting translations on [Crowdin](https://translate.revanced.app)
|
||||||
|
|
||||||
## 🛠️ Building Manager from source
|
## 🛠️ Building Manager from source
|
||||||
1. Setup flutter environment for your [platform](https://docs.flutter.dev/get-started/install)
|
1. Setup flutter environment for your [platform](https://docs.flutter.dev/get-started/install)
|
||||||
2. Clone the repository locally
|
2. Clone the repository locally
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ class MainActivity : FlutterActivity() {
|
|||||||
patcher.addPatches(patches)
|
patcher.addPatches(patches)
|
||||||
patcher.executePatches().forEach { (patch, res) ->
|
patcher.executePatches().forEach { (patch, res) ->
|
||||||
if (res.isSuccess) {
|
if (res.isSuccess) {
|
||||||
val msg = "[success] $patch"
|
val msg = "Applied $patch"
|
||||||
handler.post {
|
handler.post {
|
||||||
installerChannel.invokeMethod(
|
installerChannel.invokeMethod(
|
||||||
"update",
|
"update",
|
||||||
@@ -193,7 +193,7 @@ class MainActivity : FlutterActivity() {
|
|||||||
}
|
}
|
||||||
return@forEach
|
return@forEach
|
||||||
}
|
}
|
||||||
val msg = "[error] $patch:" + res.exceptionOrNull()!!.printStackTrace()
|
val msg = "$patch failed.\nError:\n" + res.exceptionOrNull()!!.printStackTrace()
|
||||||
handler.post {
|
handler.post {
|
||||||
installerChannel.invokeMethod(
|
installerChannel.invokeMethod(
|
||||||
"update",
|
"update",
|
||||||
@@ -308,13 +308,6 @@ class MainActivity : FlutterActivity() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun trace(msg: String) {
|
override fun trace(_msg: String) { /* unused */ }
|
||||||
handler.post {
|
|
||||||
installerChannel.invokeMethod(
|
|
||||||
"update",
|
|
||||||
mapOf("progress" to -1.0, "header" to "", "log" to msg)
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
buildscript {
|
buildscript {
|
||||||
ext.cronetVersion = '102.5005.125'
|
ext.cronetVersion = '102.5005.125'
|
||||||
ext.kotlin_version = '1.7.10'
|
ext.kotlin_version = '1.7.20'
|
||||||
repositories {
|
repositories {
|
||||||
google()
|
google()
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
"disabledLabel": "Disabled",
|
"disabledLabel": "Disabled",
|
||||||
"yesButton": "Yes",
|
"yesButton": "Yes",
|
||||||
"noButton": "No",
|
"noButton": "No",
|
||||||
|
"warning": "Warning",
|
||||||
"navigationView": {
|
"navigationView": {
|
||||||
"dashboardTab": "Dashboard",
|
"dashboardTab": "Dashboard",
|
||||||
"patcherTab": "Patcher",
|
"patcherTab": "Patcher",
|
||||||
@@ -13,16 +14,16 @@
|
|||||||
"homeView": {
|
"homeView": {
|
||||||
"widgetTitle": "Dashboard",
|
"widgetTitle": "Dashboard",
|
||||||
"updatesSubtitle": "Updates",
|
"updatesSubtitle": "Updates",
|
||||||
"patchedSubtitle": "Patched Applications",
|
"patchedSubtitle": "Patched applications",
|
||||||
"updatesAvailable": "Updates available",
|
"updatesAvailable": "Updates available",
|
||||||
"noUpdates": "No updates available",
|
"noUpdates": "No updates available",
|
||||||
"WIP": "Work In Progress",
|
"WIP": "Work in progress...",
|
||||||
"noInstallations": "No patched applications installed",
|
"noInstallations": "No patched applications installed",
|
||||||
"installed": "Installed",
|
"installed": "Installed",
|
||||||
"updateDialogTitle": "Update Manager",
|
"updateDialogTitle": "Update Manager",
|
||||||
"updateDialogText": "Are you sure you want to download and update ReVanced Manager?",
|
"updateDialogText": "Are you sure you want to download and update ReVanced Manager?",
|
||||||
"notificationTitle": "ReVanced Manager was updated",
|
"notificationTitle": "Update downloaded",
|
||||||
"notificationText": "Tap to open the app",
|
"notificationText": "Tap to install the update",
|
||||||
"downloadingMessage": "Downloading update...",
|
"downloadingMessage": "Downloading update...",
|
||||||
"installingMessage": "Installing update...",
|
"installingMessage": "Installing update...",
|
||||||
"errorDownloadMessage": "Unable to download update",
|
"errorDownloadMessage": "Unable to download update",
|
||||||
@@ -45,14 +46,13 @@
|
|||||||
"patcherView": {
|
"patcherView": {
|
||||||
"widgetTitle": "Patcher",
|
"widgetTitle": "Patcher",
|
||||||
"patchButton": "Patch",
|
"patchButton": "Patch",
|
||||||
"patchDialogTitle": "Warning",
|
"patchDialogText": "You have selected a resource patch and a split APK installation has been detected, so patching errors may occur.\nAre you sure you want to proceed?"
|
||||||
"patchDialogText": "You have selected a resource patch and a split APK installation was detected so patching errors may occur.\nAre you sure you want to proceed with patching a split base APK?"
|
|
||||||
},
|
},
|
||||||
"appSelectorCard": {
|
"appSelectorCard": {
|
||||||
"widgetTitle": "Select application",
|
"widgetTitle": "Select an application",
|
||||||
"widgetTitleSelected": "Selected application",
|
"widgetTitleSelected": "Selected application",
|
||||||
"widgetSubtitle": "No application selected",
|
"widgetSubtitle": "No application selected",
|
||||||
"noAppsLabel": "No applications found.",
|
"noAppsLabel": "No applications found",
|
||||||
"currentVersion": "Current",
|
"currentVersion": "Current",
|
||||||
"recommendedVersion": "Recommended",
|
"recommendedVersion": "Recommended",
|
||||||
"anyVersion": "any"
|
"anyVersion": "any"
|
||||||
@@ -68,23 +68,26 @@
|
|||||||
"widgetSubtitle": "We are online!"
|
"widgetSubtitle": "We are online!"
|
||||||
},
|
},
|
||||||
"appSelectorView": {
|
"appSelectorView": {
|
||||||
"viewTitle": "Select application",
|
"viewTitle": "Select an application",
|
||||||
"searchBarHint": "Search applications",
|
"searchBarHint": "Search applications",
|
||||||
"storageButton": "Storage",
|
"storageButton": "Storage",
|
||||||
"errorMessage": "Unable to use selected application."
|
"errorMessage": "Unable to use selected application"
|
||||||
},
|
},
|
||||||
"patchesSelectorView": {
|
"patchesSelectorView": {
|
||||||
"viewTitle": "Select patches",
|
"viewTitle": "Select patches",
|
||||||
"searchBarHint": "Search patches",
|
"searchBarHint": "Search patches",
|
||||||
"doneButton": "Done",
|
"doneButton": "Done",
|
||||||
|
"recommended": "Recommended",
|
||||||
|
"all" : "All",
|
||||||
|
"none" : "None",
|
||||||
|
"loadPatchesSelection": "Load patches selection",
|
||||||
|
"noSavedPatches": "No saved patches for the selected app\nPress Done to save current selection",
|
||||||
"noPatchesFound": "No patches found for the selected app",
|
"noPatchesFound": "No patches found for the selected app",
|
||||||
"selectAllPatchesWarningTitle": "Warning",
|
|
||||||
"selectAllPatchesWarningContent": "You are about to select all patches, that includes unrecommended patches and can cause unwanted behavior."
|
"selectAllPatchesWarningContent": "You are about to select all patches, that includes unrecommended patches and can cause unwanted behavior."
|
||||||
},
|
},
|
||||||
"patchItem": {
|
"patchItem": {
|
||||||
"unsupportedWarningButton": "Warning",
|
"unsupportedDialogText": "Selecting this patch may result in patching errors.\n\nApp version: {packageVersion}\nSupported versions:\n{supportedVersions}",
|
||||||
"unsupportedDialogTitle": "Warning",
|
"unsupportedPatchVersion": "Patch is not supported for this app version. Enable experimental toggle in settings to proceed."
|
||||||
"unsupportedDialogText": "Selecting this patch may result in patching errors.\n\nApp version: {packageVersion}\nCurrent supported versions:\n{supportedVersions}"
|
|
||||||
},
|
},
|
||||||
"installerView": {
|
"installerView": {
|
||||||
"widgetTitle": "Installer",
|
"widgetTitle": "Installer",
|
||||||
@@ -95,12 +98,13 @@
|
|||||||
"notificationTitle": "ReVanced Manager is patching",
|
"notificationTitle": "ReVanced Manager is patching",
|
||||||
"notificationText": "Tap to return to the installer",
|
"notificationText": "Tap to return to the installer",
|
||||||
"shareApkMenuOption": "Share APK",
|
"shareApkMenuOption": "Share APK",
|
||||||
|
"exportApkMenuOption": "Export APK",
|
||||||
"shareLogMenuOption": "Share log",
|
"shareLogMenuOption": "Share log",
|
||||||
"installErrorDialogTitle": "Error",
|
"installErrorDialogTitle": "Error",
|
||||||
"installErrorDialogText1": "Root install is not possible with the current patches selection.\nRepatch your app or choose non-root install.",
|
"installErrorDialogText1": "Root install is not possible with the current patches selection.\nRepatch your app or choose non-root install.",
|
||||||
"installErrorDialogText2": "Non-root install is not possible with the current patches selection.\nRepatch your app or choose root install if you have your device rooted.",
|
"installErrorDialogText2": "Non-root install is not possible with the current patches selection.\nRepatch your app or choose root install if you have your device rooted.",
|
||||||
"installErrorDialogText3": "Root install is not possible as the original APK was selected from storage.\nSelect an installed app or choose non-root install.",
|
"installErrorDialogText3": "Root install is not possible as the original APK was selected from storage.\nSelect an installed app or choose non-root install.",
|
||||||
"noExit": "Installer is still running..."
|
"noExit": "Installer is still running, cannot exit..."
|
||||||
},
|
},
|
||||||
"settingsView": {
|
"settingsView": {
|
||||||
"widgetTitle": "Settings",
|
"widgetTitle": "Settings",
|
||||||
@@ -109,70 +113,84 @@
|
|||||||
"infoSectionTitle": "Info",
|
"infoSectionTitle": "Info",
|
||||||
"advancedSectionTitle": "Advanced",
|
"advancedSectionTitle": "Advanced",
|
||||||
"logsSectionTitle": "Logs",
|
"logsSectionTitle": "Logs",
|
||||||
"darkThemeLabel": "Dark Mode",
|
"darkThemeLabel": "Dark mode",
|
||||||
"darkThemeHint": "Welcome to the Dark Side",
|
"darkThemeHint": "Welcome to the dark side",
|
||||||
"dynamicThemeLabel": "Material You",
|
"dynamicThemeLabel": "Material You",
|
||||||
"dynamicThemeHint": "Enjoy an experience closer to your device",
|
"dynamicThemeHint": "Enjoy an experience closer to your device",
|
||||||
"languageLabel": "Language",
|
"languageLabel": "Language",
|
||||||
"englishOption": "English",
|
"englishOption": "English",
|
||||||
"frenchOption": "French",
|
|
||||||
"sourcesLabel": "Sources",
|
"sourcesLabel": "Sources",
|
||||||
"sourcesLabelHint": "Configure your custom sources",
|
"sourcesLabelHint": "Configure your custom sources",
|
||||||
"orgPatchesLabel": "Patches Organization",
|
"orgPatchesLabel": "Patches organization",
|
||||||
"sourcesPatchesLabel": "Patches Source",
|
"sourcesPatchesLabel": "Patches source",
|
||||||
"orgIntegrationsLabel": "Integrations Organization",
|
"orgIntegrationsLabel": "Integrations organization",
|
||||||
"sourcesIntegrationsLabel": "Integrations Source",
|
"sourcesIntegrationsLabel": "Integrations source",
|
||||||
"sourcesResetDialogTitle": "Reset",
|
"sourcesResetDialogTitle": "Reset",
|
||||||
"sourcesResetDialogText": "Are you sure you want to reset custom sources to their default values?",
|
"sourcesResetDialogText": "Are you sure you want to reset custom sources to their default values?",
|
||||||
"apiURLResetDialogText": "Are you sure you want to reset API URL to its default value?",
|
"apiURLResetDialogText": "Are you sure you want to reset API URL to its default value?",
|
||||||
"contributorsLabel": "Contributors",
|
"contributorsLabel": "Contributors",
|
||||||
"contributorsHint": "A list of contributors of ReVanced",
|
"contributorsHint": "A list of contributors of ReVanced",
|
||||||
"logsLabel": "Logs",
|
"logsLabel": "Logs",
|
||||||
"logsHint": "Share device debug logs",
|
"logsHint": "Share Manager's logs",
|
||||||
"apiURLLabel": "API URL",
|
"apiURLLabel": "API URL",
|
||||||
"apiURLHint": "Configure your custom API URL",
|
"apiURLHint": "Configure your custom API URL",
|
||||||
"selectApiURL": "Select URL",
|
"selectApiURL": "API URL",
|
||||||
|
"experimentalPatchesLabel": "Experimental patches support",
|
||||||
|
"experimentalPatchesHint": "Enable usage of unsupported patches in any app version",
|
||||||
|
"enabledExperimentalPatches": "Experimental patches support enabled",
|
||||||
|
"exportSectionTitle": "Import & export",
|
||||||
"aboutLabel": "About",
|
"aboutLabel": "About",
|
||||||
"snackbarMessage": "Copied to clipboard",
|
"snackbarMessage": "Copied to clipboard",
|
||||||
"sentryLabel": "Sentry Logging",
|
"sentryLabel": "Sentry logging",
|
||||||
"sentryHint": "Send anonymous logs to help us improve ReVanced Manager",
|
"sentryHint": "Send anonymous logs to help us improve ReVanced Manager",
|
||||||
"restartAppForChanges": "Restart the app to apply changes",
|
"restartAppForChanges": "Restart the app to apply changes",
|
||||||
"deleteKeystoreLabel": "Delete keystore",
|
"deleteKeystoreLabel": "Delete keystore",
|
||||||
"deleteKeystoreHint": "Delete the keystore used to sign the app",
|
"deleteKeystoreHint": "Delete the keystore used to sign the app",
|
||||||
"deletedKeystore": "Keystore deleted",
|
"deletedKeystore": "Keystore deleted",
|
||||||
"deleteTempDirLabel": "Delete temp directory",
|
"deleteTempDirLabel": "Delete temporary files",
|
||||||
"deleteTempDirHint": "Delete the temporary directory used to store temporary files",
|
"deleteTempDirHint": "Delete the unused temporary files",
|
||||||
"deletedTempDir": "Temp directory deleted",
|
"deletedTempDir": "Temporary files deleted",
|
||||||
|
"exportPatchesLabel": "Export patches selection",
|
||||||
|
"exportPatchesHint": "Export patches selection to a JSON file",
|
||||||
|
"exportedPatches": "Patches selection exported",
|
||||||
|
"noExportFileFound": "No patches selection to export",
|
||||||
|
"importPatchesLabel": "Import patches selection",
|
||||||
|
"importPatchesHint": "Import patches selection from a JSON file",
|
||||||
|
"importedPatches": "Patches selection imported",
|
||||||
|
"resetStoredPatchesLabel": "Reset patches",
|
||||||
|
"resetStoredPatchesHint": "Reset the stored patches selection",
|
||||||
|
"resetStoredPatches": "Patches selection has been reset",
|
||||||
|
"jsonSelectorErrorMessage": "Unable to use selected JSON file",
|
||||||
"deleteLogsLabel": "Delete logs",
|
"deleteLogsLabel": "Delete logs",
|
||||||
"deleteLogsHint": "Delete collected manager logs",
|
"deleteLogsHint": "Delete collected manager logs",
|
||||||
"deletedLogs": "Logs deleted"
|
"deletedLogs": "Logs deleted"
|
||||||
},
|
},
|
||||||
"appInfoView": {
|
"appInfoView": {
|
||||||
"widgetTitle": "App Info",
|
"widgetTitle": "App info",
|
||||||
"openButton": "Open",
|
"openButton": "Open",
|
||||||
"uninstallButton": "Uninstall",
|
"uninstallButton": "Uninstall",
|
||||||
"patchButton": "Patch",
|
"patchButton": "Patch",
|
||||||
"unpatchButton": "Unpatch",
|
"unpatchButton": "Unpatch",
|
||||||
"unpatchDialogText": "Are you sure you want to unpatch this app?",
|
"unpatchDialogText": "Are you sure you want to unpatch this app?",
|
||||||
"rootDialogTitle": "Error",
|
"rootDialogTitle": "Error",
|
||||||
"rootDialogText": "App was installed with root mode enabled but currently root mode is disabled.\nPlease enable root mode first.",
|
"rootDialogText": "App was installed with superuser permissions, but currently ReVanced Manager has no permissions.\nPlease grant superuser permissions first.",
|
||||||
"packageNameLabel": "Package Name",
|
"packageNameLabel": "Package name",
|
||||||
"originalPackageNameLabel": "Original Package Name",
|
"originalPackageNameLabel": "Original package name",
|
||||||
"installTypeLabel": "Installation Type",
|
"installTypeLabel": "Installation type",
|
||||||
"rootTypeLabel": "Root",
|
"rootTypeLabel": "Root",
|
||||||
"nonRootTypeLabel": "Non-root",
|
"nonRootTypeLabel": "Non-root",
|
||||||
"patchedDateLabel": "Patched Date",
|
"patchedDateLabel": "Patched date",
|
||||||
"patchedDateHint": "{date} at {time}",
|
"patchedDateHint": "{date} at {time}",
|
||||||
"appliedPatchesLabel": "Applied Patches",
|
"appliedPatchesLabel": "Applied patches",
|
||||||
"appliedPatchesHint": "{quantity} applied patches",
|
"appliedPatchesHint": "{quantity} applied patches",
|
||||||
"updateNotImplemented": "Update functionality not implemented yet"
|
"updateNotImplemented": "This feature has not been implemented yet"
|
||||||
},
|
},
|
||||||
"contributorsView": {
|
"contributorsView": {
|
||||||
"widgetTitle": "Contributors",
|
"widgetTitle": "Contributors",
|
||||||
"patcherContributors": "Patcher Contributors",
|
"patcherContributors": "Patcher contributors",
|
||||||
"patchesContributors": "Patches Contributors",
|
"patchesContributors": "Patches contributors",
|
||||||
"integrationsContributors": "Integrations Contributors",
|
"integrationsContributors": "Integrations contributors",
|
||||||
"cliContributors": "CLI Contributors",
|
"cliContributors": "CLI contributors",
|
||||||
"managerContributors": "Manager Contributors"
|
"managerContributors": "Manager contributors"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
197
assets/i18n/hi_IN.json
Normal file
197
assets/i18n/hi_IN.json
Normal file
@@ -0,0 +1,197 @@
|
|||||||
|
{
|
||||||
|
"okButton": "ठीक है",
|
||||||
|
"cancelButton": "रद्द करें",
|
||||||
|
"enabledLabel": "सक्रिय",
|
||||||
|
"disabledLabel": "निष्क्रिय",
|
||||||
|
"yesButton": "हाँ",
|
||||||
|
"noButton": "नहीं",
|
||||||
|
"navigationView": {
|
||||||
|
"dashboardTab": "नियंत्रण-पट्ट",
|
||||||
|
"patcherTab": "पैचर",
|
||||||
|
"settingsTab": "सेटिंग्स"
|
||||||
|
},
|
||||||
|
"homeView": {
|
||||||
|
"widgetTitle": "नियंत्रण पट्ट",
|
||||||
|
"updatesSubtitle": "अपडेट",
|
||||||
|
"patchedSubtitle": "Patched applications",
|
||||||
|
"updatesAvailable": "अपडेट उपलब्ध है",
|
||||||
|
"noUpdates": "कोई अपडेट उपलब्ध नहीं",
|
||||||
|
"WIP": "Work in progress...",
|
||||||
|
"noInstallations": "कोई पैबंद किये हुआ अनुप्रयोग नहीं है।",
|
||||||
|
"installed": "इंस्टॉल किया हुआ",
|
||||||
|
"updateDialogTitle": "अपडेट Manager",
|
||||||
|
"updateDialogText": "क्या आप ReVanced Manager को डाउनलोड और अपडेट करना चाहते है?",
|
||||||
|
"notificationTitle": "Update downloaded",
|
||||||
|
"notificationText": "Tap to install the update",
|
||||||
|
"downloadingMessage": "अपडेट डाउनलोड हो रहा है",
|
||||||
|
"installingMessage": "अपडेट इंस्टॉल हो रहा है",
|
||||||
|
"errorDownloadMessage": "अपडेट डाउनलोड करने मे असफल",
|
||||||
|
"errorInstallMessage": "अपडेट इंस्टॉल करने में असफल",
|
||||||
|
"noConnection": "कोई इंटरनेट कनेक्शन नहीं",
|
||||||
|
"updatesDisabled": "पैच किए गए ऐप को अपडेट करना वर्तमान में अक्षम है। ऐप को फिर से रीपैच करें।"
|
||||||
|
},
|
||||||
|
"applicationItem": {
|
||||||
|
"patchButton": "पैबंद",
|
||||||
|
"infoButton": "जानकारी",
|
||||||
|
"changelogLabel": "परिवर्तन पत्र"
|
||||||
|
},
|
||||||
|
"latestCommitCard": {
|
||||||
|
"loadingLabel": "लोड हो रहा है...",
|
||||||
|
"timeagoLabel": "{time} पहले",
|
||||||
|
"patcherLabel": "पैबंद: ",
|
||||||
|
"managerLabel": "Manager: ",
|
||||||
|
"updateButton": "Manager अपडेट करे"
|
||||||
|
},
|
||||||
|
"patcherView": {
|
||||||
|
"widgetTitle": "पैचर",
|
||||||
|
"patchButton": "पैबंद",
|
||||||
|
"patchDialogTitle": "चेतावनी",
|
||||||
|
"patchDialogText": "You have selected a resource patch and a split APK installation has been detected, so patching errors may occur.\nAre you sure you want to proceed?"
|
||||||
|
},
|
||||||
|
"appSelectorCard": {
|
||||||
|
"widgetTitle": "Select an application",
|
||||||
|
"widgetTitleSelected": "चुना हुआ ऐप्लकैशन",
|
||||||
|
"widgetSubtitle": "कोई ऐप्लकैशन चुना हुआ नहीं",
|
||||||
|
"noAppsLabel": "No applications found",
|
||||||
|
"currentVersion": "वर्तमान",
|
||||||
|
"recommendedVersion": "अनुशंसित",
|
||||||
|
"anyVersion": "कोई"
|
||||||
|
},
|
||||||
|
"patchSelectorCard": {
|
||||||
|
"widgetTitle": "पैच चुने",
|
||||||
|
"widgetTitleSelected": "चुने हुए पैच",
|
||||||
|
"widgetSubtitle": "पहले किसी एप्लिकेशन को चुने",
|
||||||
|
"widgetEmptySubtitle": "कोई पैच चुना हुआ नहीं"
|
||||||
|
},
|
||||||
|
"socialMediaCard": {
|
||||||
|
"widgetTitle": "सामाजिक",
|
||||||
|
"widgetSubtitle": "हम ऑनलाइन है"
|
||||||
|
},
|
||||||
|
"appSelectorView": {
|
||||||
|
"viewTitle": "Select an application",
|
||||||
|
"searchBarHint": "ऐप्लकैशन खोजे",
|
||||||
|
"storageButton": "स्टोरेज",
|
||||||
|
"errorMessage": "Unable to use selected application"
|
||||||
|
},
|
||||||
|
"patchesSelectorView": {
|
||||||
|
"viewTitle": "पैच चुने",
|
||||||
|
"searchBarHint": "पैच खोजे",
|
||||||
|
"doneButton": "पूर्ण",
|
||||||
|
"loadPatchesSelection": "Load patches selection",
|
||||||
|
"noSavedPatches": "No saved patches for the selected app\nPress Done to save current selection",
|
||||||
|
"noPatchesFound": "चुने हुए ऐप्लकैशन के लिए कोई पैच नहीं मिले",
|
||||||
|
"selectAllPatchesWarningTitle": "चेतावनी",
|
||||||
|
"selectAllPatchesWarningContent": "आप सभी पैच का चयन करने वाले हैं, जिसमें अनुशंसित पैच शामिल हैं और अवांछित व्यवहार का कारण बन सकते हैं।"
|
||||||
|
},
|
||||||
|
"patchItem": {
|
||||||
|
"unsupportedWarningButton": "चेतावनी",
|
||||||
|
"unsupportedDialogTitle": "चेतावनी",
|
||||||
|
"unsupportedDialogText": "Selecting this patch may result in patching errors.\n\nApp version: {packageVersion}\nSupported versions:\n{supportedVersions}",
|
||||||
|
"unsupportedPatchVersion": "इस ऐप संस्करण के लिए पैच समर्थित नहीं है। आगे बढ़ने के लिए सेटिंग में प्रयोगात्मक टॉगल सक्षम करें."
|
||||||
|
},
|
||||||
|
"installerView": {
|
||||||
|
"widgetTitle": "इंस्टॉल कर्ता",
|
||||||
|
"installButton": "इंस्टॉल करे",
|
||||||
|
"installRootButton": "रूट के रूप मे इंस्टॉल करे",
|
||||||
|
"openButton": "खोलें",
|
||||||
|
"shareButton": "फाइल शेयर करे",
|
||||||
|
"notificationTitle": "ReVanced Manager पैच कर रहा है",
|
||||||
|
"notificationText": "इंस्टॉल कर्ता पर जाने के लिए टैप करे",
|
||||||
|
"shareApkMenuOption": "APK शेयर करे",
|
||||||
|
"exportApkMenuOption": "निर्यात APK",
|
||||||
|
"shareLogMenuOption": "लॉग शेयर करें",
|
||||||
|
"installErrorDialogTitle": "त्रुटि",
|
||||||
|
"installErrorDialogText1": "वर्तमान पैच चयन के साथ रूट इंस्टॉल संभव नहीं है।\nअपने ऐप को रीपैच करें या नॉन-रूट इंस्टॉल चुनें।",
|
||||||
|
"installErrorDialogText2": "वर्तमान पैच चयन के साथ नॉन-रूट इंस्टॉल संभव नहीं है।\nयदि आपने अपना डिवाइस रूट किया है तो अपने ऐप को रीपैच करें या रूट इंस्टॉल चुनें।",
|
||||||
|
"installErrorDialogText3": "रूट इंस्टॉल संभव नहीं है क्योंकि मूल APK को स्टोरेज से चुना गया था।\nएक इंस्टॉल किया गया ऐप चुनें या नॉन-रूट इंस्टॉल चुनें।",
|
||||||
|
"noExit": "Installer is still running, cannot exit..."
|
||||||
|
},
|
||||||
|
"settingsView": {
|
||||||
|
"widgetTitle": "सेटिंग्स",
|
||||||
|
"appearanceSectionTitle": "स्वरूप",
|
||||||
|
"teamSectionTitle": "टीम",
|
||||||
|
"infoSectionTitle": "जानकारी",
|
||||||
|
"advancedSectionTitle": "एडवांसड",
|
||||||
|
"logsSectionTitle": "लॉग्स",
|
||||||
|
"darkThemeLabel": "Dark mode",
|
||||||
|
"darkThemeHint": "Welcome to the dark side",
|
||||||
|
"dynamicThemeLabel": "मेटीरियल यू",
|
||||||
|
"dynamicThemeHint": "अपने डिवाइस के करीब एक अनुभव का आनंद लें",
|
||||||
|
"languageLabel": "भाषा",
|
||||||
|
"englishOption": "अंग्रेज़ी",
|
||||||
|
"frenchOption": "फ्रेंच",
|
||||||
|
"sourcesLabel": "स्रोत",
|
||||||
|
"sourcesLabelHint": "अपने कस्टम साधन कॉन्फ़िगर करे",
|
||||||
|
"orgPatchesLabel": "Patches organization",
|
||||||
|
"sourcesPatchesLabel": "Patches source",
|
||||||
|
"orgIntegrationsLabel": "Integrations organization",
|
||||||
|
"sourcesIntegrationsLabel": "Integrations source",
|
||||||
|
"sourcesResetDialogTitle": "रीसेट करें",
|
||||||
|
"sourcesResetDialogText": "क्या आप वाकई कस्टम साधन को डिफ़ॉल्ट वैल्यू पर रीसेट करना चाहते हैं?",
|
||||||
|
"apiURLResetDialogText": "क्या आप वाकई कस्टम API URL को डिफ़ॉल्ट वैल्यू पर रीसेट करना चाहते हैं?",
|
||||||
|
"contributorsLabel": "योगदानकर्ता",
|
||||||
|
"contributorsHint": "ReVanced के योगदानकर्ताओ की सूची",
|
||||||
|
"logsLabel": "लॉग्स",
|
||||||
|
"logsHint": "Share Manager's logs",
|
||||||
|
"apiURLLabel": "API URL",
|
||||||
|
"apiURLHint": "अपनी कस्टम API URL कॉन्फ़िगर करे",
|
||||||
|
"selectApiURL": "API URL",
|
||||||
|
"experimentalPatchesLabel": "Experimental patches support",
|
||||||
|
"experimentalPatchesHint": "Enable usage of unsupported patches in any app version",
|
||||||
|
"enabledExperimentalPatches": "Experimental patches support enabled",
|
||||||
|
"exportSectionTitle": "Import & export",
|
||||||
|
"aboutLabel": "विवरण",
|
||||||
|
"snackbarMessage": "क्लिपबोर्ड में कॉपी हो गया है",
|
||||||
|
"sentryLabel": "Sentry logging",
|
||||||
|
"sentryHint": "उन्नत प्रबंधक को बेहतर बनाने में हमारी सहायता करने के लिए अनाम लॉग भेजें",
|
||||||
|
"restartAppForChanges": "Restart the app to apply changes",
|
||||||
|
"deleteKeystoreLabel": "कीस्टोर मिटाएं",
|
||||||
|
"deleteKeystoreHint": "ऐप पर हस्ताक्षर करने के लिए उपयोग की जाने वाली कीस्टोर हटाएं",
|
||||||
|
"deletedKeystore": "कीस्टोर हटा दिया गया",
|
||||||
|
"deleteTempDirLabel": "Delete temporary files",
|
||||||
|
"deleteTempDirHint": "Delete the unused temporary files",
|
||||||
|
"deletedTempDir": "Temporary files deleted",
|
||||||
|
"exportPatchesLabel": "Export patches selection",
|
||||||
|
"exportPatchesHint": "Export patches selection to a JSON file",
|
||||||
|
"exportedPatches": "Patches selection exported",
|
||||||
|
"noExportFileFound": "No patches selection to export",
|
||||||
|
"importPatchesLabel": "Import patches selection",
|
||||||
|
"importPatchesHint": "Import patches selection from a JSON file",
|
||||||
|
"importedPatches": "Patches selection imported",
|
||||||
|
"resetStoredPatchesLabel": "Reset patches",
|
||||||
|
"resetStoredPatchesHint": "Reset the stored patches selection",
|
||||||
|
"resetStoredPatches": "Patches selection has been reset",
|
||||||
|
"jsonSelectorErrorMessage": "Unable to use selected JSON file",
|
||||||
|
"deleteLogsLabel": "लॉग हटाएं",
|
||||||
|
"deleteLogsHint": "एकत्रित प्रबंधक लॉग हटाएं",
|
||||||
|
"deletedLogs": "लॉग हटा दिए गए"
|
||||||
|
},
|
||||||
|
"appInfoView": {
|
||||||
|
"widgetTitle": "App info",
|
||||||
|
"openButton": "खोलें",
|
||||||
|
"uninstallButton": "अनइंस्टॉल करें",
|
||||||
|
"patchButton": "पैच",
|
||||||
|
"unpatchButton": "अनपैच करे",
|
||||||
|
"unpatchDialogText": "क्या वाकई आप इस एप को अनपैच करना चाहते हैं?",
|
||||||
|
"rootDialogTitle": "त्रुटि",
|
||||||
|
"rootDialogText": "App was installed with superuser permissions, but currently ReVanced Manager has no permissions.\nPlease grant superuser permissions first.",
|
||||||
|
"packageNameLabel": "Package name",
|
||||||
|
"originalPackageNameLabel": "Original package name",
|
||||||
|
"installTypeLabel": "Installation type",
|
||||||
|
"rootTypeLabel": "रूट",
|
||||||
|
"nonRootTypeLabel": "नॉन-रूट",
|
||||||
|
"patchedDateLabel": "Patched date",
|
||||||
|
"patchedDateHint": "{date} {time} पर",
|
||||||
|
"appliedPatchesLabel": "Applied patches",
|
||||||
|
"appliedPatchesHint": "{quantity} लागू किए हुआ पैच",
|
||||||
|
"updateNotImplemented": "This feature has not been implemented yet"
|
||||||
|
},
|
||||||
|
"contributorsView": {
|
||||||
|
"widgetTitle": "योगदानकर्ता",
|
||||||
|
"patcherContributors": "Patcher contributors",
|
||||||
|
"patchesContributors": "Patches contributors",
|
||||||
|
"integrationsContributors": "Integrations contributors",
|
||||||
|
"cliContributors": "CLI contributors",
|
||||||
|
"managerContributors": "Manager contributors"
|
||||||
|
}
|
||||||
|
}
|
||||||
10
crowdin.yml
10
crowdin.yml
@@ -1,3 +1,9 @@
|
|||||||
|
project_id_env: CROWDIN_PROJECT_ID
|
||||||
|
api_token_env: CROWDIN_PERSONAL_TOKEN
|
||||||
|
|
||||||
|
commit_message: 'chore(i18n): sync translations'
|
||||||
|
|
||||||
|
preserve_hierarchy: true
|
||||||
files:
|
files:
|
||||||
- source: /assets/i18n/en.json
|
- source: assets/i18n/en_US.json
|
||||||
translation: /assets/i18n/%locale_with_underscore%.json
|
translation: assets/i18n/%locale_with_underscore%.json
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import 'package:revanced_manager/services/crowdin_api.dart';
|
||||||
import 'package:revanced_manager/services/github_api.dart';
|
import 'package:revanced_manager/services/github_api.dart';
|
||||||
import 'package:revanced_manager/services/manager_api.dart';
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
import 'package:revanced_manager/services/patcher_api.dart';
|
import 'package:revanced_manager/services/patcher_api.dart';
|
||||||
@@ -37,6 +38,7 @@ import 'package:stacked_services/stacked_services.dart';
|
|||||||
LazySingleton(classType: PatcherAPI),
|
LazySingleton(classType: PatcherAPI),
|
||||||
LazySingleton(classType: RevancedAPI),
|
LazySingleton(classType: RevancedAPI),
|
||||||
LazySingleton(classType: GithubAPI),
|
LazySingleton(classType: GithubAPI),
|
||||||
|
LazySingleton(classType: CrowdinAPI),
|
||||||
LazySingleton(classType: Toast),
|
LazySingleton(classType: Toast),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -2,16 +2,20 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||||
import 'package:revanced_manager/app/app.locator.dart';
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/services/crowdin_api.dart';
|
||||||
import 'package:revanced_manager/services/github_api.dart';
|
import 'package:revanced_manager/services/github_api.dart';
|
||||||
import 'package:revanced_manager/services/manager_api.dart';
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
import 'package:revanced_manager/services/patcher_api.dart';
|
import 'package:revanced_manager/services/patcher_api.dart';
|
||||||
import 'package:revanced_manager/services/revanced_api.dart';
|
import 'package:revanced_manager/services/revanced_api.dart';
|
||||||
import 'package:revanced_manager/ui/theme/dynamic_theme_builder.dart';
|
import 'package:revanced_manager/ui/theme/dynamic_theme_builder.dart';
|
||||||
import 'package:revanced_manager/ui/views/navigation/navigation_view.dart';
|
import 'package:revanced_manager/ui/views/navigation/navigation_view.dart';
|
||||||
|
import 'package:revanced_manager/utils/environment.dart';
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
import 'package:stacked_themes/stacked_themes.dart';
|
import 'package:stacked_themes/stacked_themes.dart';
|
||||||
import 'package:sentry_flutter/sentry_flutter.dart';
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||||
import 'package:timezone/data/latest.dart' as tz;
|
import 'package:timezone/data/latest.dart' as tz;
|
||||||
|
|
||||||
|
late SharedPreferences prefs;
|
||||||
Future main() async {
|
Future main() async {
|
||||||
await ThemeManager.initialise();
|
await ThemeManager.initialise();
|
||||||
await setupLocator();
|
await setupLocator();
|
||||||
@@ -19,34 +23,35 @@ Future main() async {
|
|||||||
await locator<ManagerAPI>().initialize();
|
await locator<ManagerAPI>().initialize();
|
||||||
String apiUrl = locator<ManagerAPI>().getApiUrl();
|
String apiUrl = locator<ManagerAPI>().getApiUrl();
|
||||||
await locator<RevancedAPI>().initialize(apiUrl);
|
await locator<RevancedAPI>().initialize(apiUrl);
|
||||||
// bool isSentryEnabled = locator<ManagerAPI>().isSentryEnabled();
|
await locator<CrowdinAPI>().initialize();
|
||||||
|
bool isSentryEnabled = locator<ManagerAPI>().isSentryEnabled();
|
||||||
locator<GithubAPI>().initialize();
|
locator<GithubAPI>().initialize();
|
||||||
await locator<PatcherAPI>().initialize();
|
await locator<PatcherAPI>().initialize();
|
||||||
tz.initializeTimeZones();
|
tz.initializeTimeZones();
|
||||||
|
prefs = await SharedPreferences.getInstance();
|
||||||
|
|
||||||
// Remove this section if you are building from source and don't have sentry configured
|
await SentryFlutter.init(
|
||||||
// await SentryFlutter.init(
|
(options) {
|
||||||
// (options) {
|
options
|
||||||
// options
|
..dsn = isSentryEnabled ? Environment.sentryDSN : ''
|
||||||
// ..dsn = isSentryEnabled ? '' : ''
|
..environment = 'alpha'
|
||||||
// ..environment = 'alpha'
|
..release = '0.1'
|
||||||
// ..release = '0.1'
|
..tracesSampleRate = 1.0
|
||||||
// ..tracesSampleRate = 1.0
|
..anrEnabled = true
|
||||||
// ..anrEnabled = true
|
..enableOutOfMemoryTracking = true
|
||||||
// ..enableOutOfMemoryTracking = true
|
..sampleRate = isSentryEnabled ? 1.0 : 0.0
|
||||||
// ..sampleRate = isSentryEnabled ? 1.0 : 0.0
|
..beforeSend = (event, hint) {
|
||||||
// ..beforeSend = (event, hint) {
|
if (isSentryEnabled) {
|
||||||
// if (isSentryEnabled) {
|
return event;
|
||||||
// return event;
|
} else {
|
||||||
// } else {
|
return null;
|
||||||
// return null;
|
}
|
||||||
// }
|
} as BeforeSendCallback?;
|
||||||
// } as BeforeSendCallback?;
|
},
|
||||||
// },
|
appRunner: () {
|
||||||
// appRunner: () {
|
runApp(const MyApp());
|
||||||
// runApp(const MyApp());
|
},
|
||||||
// },
|
);
|
||||||
// );
|
|
||||||
runApp(const MyApp());
|
runApp(const MyApp());
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -55,15 +60,25 @@ class MyApp extends StatelessWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
String rawLocale = prefs.getString('language') ?? 'en_US';
|
||||||
|
String replaceLocale = rawLocale.replaceAll('_', '-');
|
||||||
|
List<String> localeList = replaceLocale.split('-');
|
||||||
|
Locale locale = Locale(localeList[0], localeList[1]);
|
||||||
|
|
||||||
return DynamicThemeBuilder(
|
return DynamicThemeBuilder(
|
||||||
title: 'ReVanced Manager',
|
title: 'ReVanced Manager',
|
||||||
home: const NavigationView(),
|
home: const NavigationView(),
|
||||||
localizationsDelegates: [
|
localizationsDelegates: [
|
||||||
FlutterI18nDelegate(
|
FlutterI18nDelegate(
|
||||||
translationLoader: FileTranslationLoader(
|
translationLoader: FileTranslationLoader(
|
||||||
fallbackFile: 'en_US',
|
forcedLocale: locale,
|
||||||
basePath: 'assets/i18n',
|
basePath: 'assets/i18n',
|
||||||
|
useCountryCode: true,
|
||||||
),
|
),
|
||||||
|
missingTranslationHandler: (key, locale) {
|
||||||
|
print(
|
||||||
|
'--> Missing translation: key: $key, languageCode: ${locale?.languageCode}');
|
||||||
|
},
|
||||||
),
|
),
|
||||||
GlobalMaterialLocalizations.delegate,
|
GlobalMaterialLocalizations.delegate,
|
||||||
GlobalWidgetsLocalizations.delegate
|
GlobalWidgetsLocalizations.delegate
|
||||||
|
|||||||
61
lib/services/crowdin_api.dart
Normal file
61
lib/services/crowdin_api.dart
Normal file
@@ -0,0 +1,61 @@
|
|||||||
|
import 'package:dio/dio.dart';
|
||||||
|
import 'package:dio_http_cache_lts/dio_http_cache_lts.dart';
|
||||||
|
import 'package:injectable/injectable.dart' hide Environment;
|
||||||
|
import 'package:revanced_manager/utils/environment.dart';
|
||||||
|
import 'package:sentry_dio/sentry_dio.dart';
|
||||||
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||||
|
|
||||||
|
@lazySingleton
|
||||||
|
class CrowdinAPI {
|
||||||
|
late Dio _dio = Dio();
|
||||||
|
final DioCacheManager _dioCacheManager = DioCacheManager(CacheConfig());
|
||||||
|
final apiKey = Environment.crowdinKEY;
|
||||||
|
|
||||||
|
Future<void> initialize() async {
|
||||||
|
try {
|
||||||
|
_dio = Dio(BaseOptions(
|
||||||
|
baseUrl: 'https://api.crowdin.com/api/v2',
|
||||||
|
));
|
||||||
|
|
||||||
|
_dio.interceptors.add(_dioCacheManager.interceptor);
|
||||||
|
_dio.addSentry(
|
||||||
|
captureFailedRequests: true,
|
||||||
|
);
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> clearAllCache() async {
|
||||||
|
try {
|
||||||
|
await _dioCacheManager.clearAll();
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<List> getLanguages() async {
|
||||||
|
try {
|
||||||
|
var response = await _dio.get(
|
||||||
|
'/projects',
|
||||||
|
options: buildCacheOptions(
|
||||||
|
const Duration(hours: 6),
|
||||||
|
maxStale: const Duration(days: 1),
|
||||||
|
options: Options(
|
||||||
|
headers: {
|
||||||
|
'Authorization': 'Bearer $apiKey',
|
||||||
|
},
|
||||||
|
contentType: 'application/json',
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
List targetLanguages =
|
||||||
|
await response.data['data'][0]['data']['targetLanguages'];
|
||||||
|
|
||||||
|
return targetLanguages;
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,9 +5,7 @@ import 'package:dio/dio.dart';
|
|||||||
import 'package:dio_http_cache_lts/dio_http_cache_lts.dart';
|
import 'package:dio_http_cache_lts/dio_http_cache_lts.dart';
|
||||||
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
import 'package:flutter_cache_manager/flutter_cache_manager.dart';
|
||||||
import 'package:injectable/injectable.dart';
|
import 'package:injectable/injectable.dart';
|
||||||
import 'package:native_dio_client/native_dio_client.dart';
|
|
||||||
import 'package:revanced_manager/models/patch.dart';
|
import 'package:revanced_manager/models/patch.dart';
|
||||||
import 'package:revanced_manager/utils/check_for_gms.dart';
|
|
||||||
import 'package:sentry_flutter/sentry_flutter.dart';
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||||
import 'package:sentry_dio/sentry_dio.dart';
|
import 'package:sentry_dio/sentry_dio.dart';
|
||||||
|
|
||||||
@@ -32,20 +30,10 @@ class GithubAPI {
|
|||||||
|
|
||||||
void initialize() async {
|
void initialize() async {
|
||||||
try {
|
try {
|
||||||
bool isGMSInstalled = await checkForGMS();
|
_dio = Dio(BaseOptions(
|
||||||
|
baseUrl: 'https://api.github.com',
|
||||||
|
));
|
||||||
|
|
||||||
if (!isGMSInstalled) {
|
|
||||||
_dio = Dio(BaseOptions(
|
|
||||||
baseUrl: 'https://api.github.com',
|
|
||||||
));
|
|
||||||
print('GitHub API: Using default engine + $isGMSInstalled');
|
|
||||||
} else {
|
|
||||||
_dio = Dio(BaseOptions(
|
|
||||||
baseUrl: 'https://api.github.com',
|
|
||||||
))
|
|
||||||
..httpClientAdapter = NativeAdapter();
|
|
||||||
print('ReVanced API: Using CronetEngine + $isGMSInstalled');
|
|
||||||
}
|
|
||||||
_dio.interceptors.add(_dioCacheManager.interceptor);
|
_dio.interceptors.add(_dioCacheManager.interceptor);
|
||||||
_dio.addSentry(
|
_dio.addSentry(
|
||||||
captureFailedRequests: true,
|
captureFailedRequests: true,
|
||||||
@@ -142,4 +130,18 @@ class GithubAPI {
|
|||||||
}
|
}
|
||||||
return patches;
|
return patches;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<String> getLastestReleaseVersion(String repoName) async {
|
||||||
|
try {
|
||||||
|
Map<String, dynamic>? release = await _getLatestRelease(repoName);
|
||||||
|
if (release != null) {
|
||||||
|
return release['tag_name'];
|
||||||
|
} else {
|
||||||
|
return 'Unknown';
|
||||||
|
}
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
|
return '';
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ import 'dart:io';
|
|||||||
import 'package:device_apps/device_apps.dart';
|
import 'package:device_apps/device_apps.dart';
|
||||||
import 'package:injectable/injectable.dart';
|
import 'package:injectable/injectable.dart';
|
||||||
import 'package:package_info_plus/package_info_plus.dart';
|
import 'package:package_info_plus/package_info_plus.dart';
|
||||||
|
import 'package:path_provider/path_provider.dart';
|
||||||
import 'package:revanced_manager/app/app.locator.dart';
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
import 'package:revanced_manager/models/patch.dart';
|
import 'package:revanced_manager/models/patch.dart';
|
||||||
import 'package:revanced_manager/models/patched_application.dart';
|
import 'package:revanced_manager/models/patched_application.dart';
|
||||||
@@ -19,6 +20,7 @@ class ManagerAPI {
|
|||||||
final RootAPI _rootAPI = RootAPI();
|
final RootAPI _rootAPI = RootAPI();
|
||||||
final String patcherRepo = 'revanced-patcher';
|
final String patcherRepo = 'revanced-patcher';
|
||||||
final String cliRepo = 'revanced-cli';
|
final String cliRepo = 'revanced-cli';
|
||||||
|
late String storedPatchesFile = '/selected-patches.json';
|
||||||
late SharedPreferences _prefs;
|
late SharedPreferences _prefs;
|
||||||
String defaultApiUrl = 'https://releases.revanced.app/';
|
String defaultApiUrl = 'https://releases.revanced.app/';
|
||||||
String defaultPatcherRepo = 'revanced/revanced-patcher';
|
String defaultPatcherRepo = 'revanced/revanced-patcher';
|
||||||
@@ -29,6 +31,8 @@ class ManagerAPI {
|
|||||||
|
|
||||||
Future<void> initialize() async {
|
Future<void> initialize() async {
|
||||||
_prefs = await SharedPreferences.getInstance();
|
_prefs = await SharedPreferences.getInstance();
|
||||||
|
storedPatchesFile =
|
||||||
|
(await getApplicationDocumentsDirectory()).path + storedPatchesFile;
|
||||||
}
|
}
|
||||||
|
|
||||||
String getApiUrl() {
|
String getApiUrl() {
|
||||||
@@ -82,13 +86,21 @@ class ManagerAPI {
|
|||||||
await _prefs.setBool('useDarkTheme', value);
|
await _prefs.setBool('useDarkTheme', value);
|
||||||
}
|
}
|
||||||
|
|
||||||
// bool isSentryEnabled() {
|
bool isSentryEnabled() {
|
||||||
// return _prefs.getBool('sentryEnabled') ?? true;
|
return _prefs.getBool('sentryEnabled') ?? true;
|
||||||
// }
|
}
|
||||||
|
|
||||||
// Future<void> setSentryStatus(bool value) async {
|
Future<void> setSentryStatus(bool value) async {
|
||||||
// await _prefs.setBool('sentryEnabled', value);
|
await _prefs.setBool('sentryEnabled', value);
|
||||||
// }
|
}
|
||||||
|
|
||||||
|
bool areExperimentalPatchesEnabled() {
|
||||||
|
return _prefs.getBool('experimentalPatchesEnabled') ?? false;
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> enableExperimentalPatchesStatus(bool value) async {
|
||||||
|
await _prefs.setBool('experimentalPatchesEnabled', value);
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> deleteTempFolder() async {
|
Future<void> deleteTempFolder() async {
|
||||||
final Directory dir = Directory('/data/local/tmp/revanced-manager');
|
final Directory dir = Directory('/data/local/tmp/revanced-manager');
|
||||||
@@ -383,4 +395,43 @@ class ManagerAPI {
|
|||||||
}
|
}
|
||||||
return app != null && app.isSplit;
|
return app != null && app.isSplit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> setSelectedPatches(String app, List<String> patches) async {
|
||||||
|
final File selectedPatchesFile = File(storedPatchesFile);
|
||||||
|
Map<String, dynamic> patchesMap = await readSelectedPatchesFile();
|
||||||
|
if (patches.isEmpty) {
|
||||||
|
patchesMap.remove(app);
|
||||||
|
} else {
|
||||||
|
patchesMap[app] = patches;
|
||||||
|
}
|
||||||
|
if (selectedPatchesFile.existsSync()) {
|
||||||
|
selectedPatchesFile.createSync(recursive: true);
|
||||||
|
}
|
||||||
|
selectedPatchesFile.writeAsString(jsonEncode(patchesMap));
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<List<String>> getSelectedPatches(String app) async {
|
||||||
|
Map<String, dynamic> patchesMap = await readSelectedPatchesFile();
|
||||||
|
if (patchesMap.isNotEmpty) {
|
||||||
|
final List<String> patches =
|
||||||
|
List.from(patchesMap.putIfAbsent(app, () => List.empty()));
|
||||||
|
return patches;
|
||||||
|
}
|
||||||
|
return List.empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<Map<String, dynamic>> readSelectedPatchesFile() async {
|
||||||
|
final File selectedPatchesFile = File(storedPatchesFile);
|
||||||
|
if (selectedPatchesFile.existsSync()) {
|
||||||
|
String string = selectedPatchesFile.readAsStringSync();
|
||||||
|
if (string.trim().isEmpty) return {};
|
||||||
|
return json.decode(string);
|
||||||
|
}
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> resetLastSelectedPatches() async {
|
||||||
|
final File selectedPatchesFile = File(storedPatchesFile);
|
||||||
|
selectedPatchesFile.deleteSync();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import 'package:revanced_manager/services/manager_api.dart';
|
|||||||
import 'package:revanced_manager/services/root_api.dart';
|
import 'package:revanced_manager/services/root_api.dart';
|
||||||
import 'package:sentry_flutter/sentry_flutter.dart';
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||||
import 'package:share_extend/share_extend.dart';
|
import 'package:share_extend/share_extend.dart';
|
||||||
|
import 'package:cr_file_saver/file_saver.dart';
|
||||||
|
|
||||||
@lazySingleton
|
@lazySingleton
|
||||||
class PatcherAPI {
|
class PatcherAPI {
|
||||||
@@ -228,11 +229,32 @@ class PatcherAPI {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void exportPatchedFile(String appName, String version) {
|
||||||
|
try {
|
||||||
|
if (_outFile != null) {
|
||||||
|
String newName = _getFileName(appName, version);
|
||||||
|
|
||||||
|
// This is temporary workaround to populate initial file name
|
||||||
|
// ref: https://github.com/Cleveroad/cr_file_saver/issues/7
|
||||||
|
int lastSeparator = _outFile!.path.lastIndexOf('/');
|
||||||
|
String newSourcePath = _outFile!.path.substring(0, lastSeparator + 1) + newName;
|
||||||
|
_outFile!.copySync(newSourcePath);
|
||||||
|
|
||||||
|
CRFileSaver.saveFileWithDialog(SaveFileDialogParams(
|
||||||
|
sourceFilePath: newSourcePath,
|
||||||
|
destinationFileName: newName
|
||||||
|
));
|
||||||
|
}
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
Sentry.captureException(e, stackTrace: s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void sharePatchedFile(String appName, String version) {
|
void sharePatchedFile(String appName, String version) {
|
||||||
try {
|
try {
|
||||||
if (_outFile != null) {
|
if (_outFile != null) {
|
||||||
String prefix = appName.toLowerCase().replaceAll(' ', '-');
|
String newName = _getFileName(appName, version);
|
||||||
String newName = '$prefix-revanced_v$version.apk';
|
|
||||||
int lastSeparator = _outFile!.path.lastIndexOf('/');
|
int lastSeparator = _outFile!.path.lastIndexOf('/');
|
||||||
String newPath =
|
String newPath =
|
||||||
_outFile!.path.substring(0, lastSeparator + 1) + newName;
|
_outFile!.path.substring(0, lastSeparator + 1) + newName;
|
||||||
@@ -244,6 +266,13 @@ class PatcherAPI {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String _getFileName(String appName, String version) {
|
||||||
|
String prefix = appName.toLowerCase().replaceAll(' ', '-');
|
||||||
|
String newName = '$prefix-revanced_v$version.apk';
|
||||||
|
return newName;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> sharePatcherLog(String logs) async {
|
Future<void> sharePatcherLog(String logs) async {
|
||||||
Directory appCache = await getTemporaryDirectory();
|
Directory appCache = await getTemporaryDirectory();
|
||||||
Directory logDir = Directory('${appCache.path}/logs');
|
Directory logDir = Directory('${appCache.path}/logs');
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ import 'dart:io';
|
|||||||
import 'package:device_apps/device_apps.dart';
|
import 'package:device_apps/device_apps.dart';
|
||||||
import 'package:file_picker/file_picker.dart';
|
import 'package:file_picker/file_picker.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
import 'package:revanced_manager/app/app.locator.dart';
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
import 'package:revanced_manager/models/patched_application.dart';
|
import 'package:revanced_manager/models/patched_application.dart';
|
||||||
import 'package:revanced_manager/services/patcher_api.dart';
|
import 'package:revanced_manager/services/patcher_api.dart';
|
||||||
@@ -33,7 +34,7 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||||||
icon: application.icon,
|
icon: application.icon,
|
||||||
patchDate: DateTime.now(),
|
patchDate: DateTime.now(),
|
||||||
);
|
);
|
||||||
locator<PatcherViewModel>().selectedPatches.clear();
|
locator<PatcherViewModel>().loadLastSelectedPatches();
|
||||||
locator<PatcherViewModel>().notifyListeners();
|
locator<PatcherViewModel>().notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -45,6 +46,15 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||||||
);
|
);
|
||||||
if (result != null && result.files.single.path != null) {
|
if (result != null && result.files.single.path != null) {
|
||||||
File apkFile = File(result.files.single.path!);
|
File apkFile = File(result.files.single.path!);
|
||||||
|
List<String> pathSplit = result.files.single.path!.split("/");
|
||||||
|
pathSplit.removeLast();
|
||||||
|
Directory filePickerCacheDir = Directory(pathSplit.join("/"));
|
||||||
|
Iterable<File> deletableFiles =
|
||||||
|
(await filePickerCacheDir.list().toList()).whereType<File>();
|
||||||
|
for (var file in deletableFiles) {
|
||||||
|
if (file.path != apkFile.path && file.path.endsWith(".apk"))
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
ApplicationWithIcon? application = await DeviceApps.getAppFromStorage(
|
ApplicationWithIcon? application = await DeviceApps.getAppFromStorage(
|
||||||
apkFile.path,
|
apkFile.path,
|
||||||
true,
|
true,
|
||||||
@@ -60,13 +70,13 @@ class AppSelectorViewModel extends BaseViewModel {
|
|||||||
patchDate: DateTime.now(),
|
patchDate: DateTime.now(),
|
||||||
isFromStorage: true,
|
isFromStorage: true,
|
||||||
);
|
);
|
||||||
locator<PatcherViewModel>().selectedPatches.clear();
|
locator<PatcherViewModel>().loadLastSelectedPatches();
|
||||||
locator<PatcherViewModel>().notifyListeners();
|
locator<PatcherViewModel>().notifyListeners();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} on Exception catch (e, s) {
|
} on Exception catch (e, s) {
|
||||||
await Sentry.captureException(e, stackTrace: s);
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
_toast.show('appSelectorView.errorMessage');
|
_toast.showBottom('appSelectorView.errorMessage');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ class HomeView extends StatelessWidget {
|
|||||||
const SizedBox(height: 8),
|
const SizedBox(height: 8),
|
||||||
Row(
|
Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
DashboardChip(
|
CustomChip(
|
||||||
label: I18nText('homeView.installed'),
|
label: I18nText('homeView.installed'),
|
||||||
isSelected: !model.showUpdatableApps,
|
isSelected: !model.showUpdatableApps,
|
||||||
onSelected: (value) {
|
onSelected: (value) {
|
||||||
@@ -75,7 +75,7 @@ class HomeView extends StatelessWidget {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
const SizedBox(width: 10),
|
const SizedBox(width: 10),
|
||||||
DashboardChip(
|
CustomChip(
|
||||||
label: I18nText('homeView.updatesAvailable'),
|
label: I18nText('homeView.updatesAvailable'),
|
||||||
isSelected: model.showUpdatableApps,
|
isSelected: model.showUpdatableApps,
|
||||||
onSelected: (value) {
|
onSelected: (value) {
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ class HomeViewModel extends BaseViewModel {
|
|||||||
?.requestPermission();
|
?.requestPermission();
|
||||||
bool isConnected = await Connectivity().checkConnection();
|
bool isConnected = await Connectivity().checkConnection();
|
||||||
if (!isConnected) {
|
if (!isConnected) {
|
||||||
_toast.show('homeView.noConnection');
|
_toast.showBottom('homeView.noConnection');
|
||||||
}
|
}
|
||||||
_getPatchedApps();
|
_getPatchedApps();
|
||||||
_managerAPI.reAssessSavedApps().then((_) => _getPatchedApps());
|
_managerAPI.reAssessSavedApps().then((_) => _getPatchedApps());
|
||||||
@@ -105,7 +105,7 @@ class HomeViewModel extends BaseViewModel {
|
|||||||
|
|
||||||
Future<void> updateManager(BuildContext context) async {
|
Future<void> updateManager(BuildContext context) async {
|
||||||
try {
|
try {
|
||||||
_toast.show('homeView.downloadingMessage');
|
_toast.showBottom('homeView.downloadingMessage');
|
||||||
File? managerApk = await _managerAPI.downloadManager();
|
File? managerApk = await _managerAPI.downloadManager();
|
||||||
if (managerApk != null) {
|
if (managerApk != null) {
|
||||||
await flutterLocalNotificationsPlugin.zonedSchedule(
|
await flutterLocalNotificationsPlugin.zonedSchedule(
|
||||||
@@ -132,19 +132,19 @@ class HomeViewModel extends BaseViewModel {
|
|||||||
uiLocalNotificationDateInterpretation:
|
uiLocalNotificationDateInterpretation:
|
||||||
UILocalNotificationDateInterpretation.absoluteTime,
|
UILocalNotificationDateInterpretation.absoluteTime,
|
||||||
);
|
);
|
||||||
_toast.show('homeView.installingMessage');
|
_toast.showBottom('homeView.installingMessage');
|
||||||
await AppInstaller.installApk(managerApk.path);
|
await AppInstaller.installApk(managerApk.path);
|
||||||
} else {
|
} else {
|
||||||
_toast.show('homeView.errorDownloadMessage');
|
_toast.showBottom('homeView.errorDownloadMessage');
|
||||||
}
|
}
|
||||||
} on Exception catch (e, s) {
|
} on Exception catch (e, s) {
|
||||||
await Sentry.captureException(e, stackTrace: s);
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
_toast.show('homeView.errorInstallMessage');
|
_toast.showBottom('homeView.errorInstallMessage');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void updatesAreDisabled() {
|
void updatesAreDisabled() {
|
||||||
_toast.show('homeView.updatesDisabled');
|
_toast.showBottom('homeView.updatesDisabled');
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> showUpdateConfirmationDialog(BuildContext parentContext) async {
|
Future<void> showUpdateConfirmationDialog(BuildContext parentContext) async {
|
||||||
|
|||||||
@@ -48,7 +48,16 @@ class InstallerView extends StatelessWidget {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
1: I18nText(
|
1: I18nText(
|
||||||
|
'installerView.exportApkMenuOption',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
2: I18nText(
|
||||||
'installerView.shareLogMenuOption',
|
'installerView.shareLogMenuOption',
|
||||||
child: const Text(
|
child: const Text(
|
||||||
'',
|
'',
|
||||||
|
|||||||
@@ -217,6 +217,14 @@ class InstallerViewModel extends BaseViewModel {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void exportResult() {
|
||||||
|
try {
|
||||||
|
_patcherAPI.exportPatchedFile(_app.name, _app.version);
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
Sentry.captureException(e, stackTrace: s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void shareResult() {
|
void shareResult() {
|
||||||
try {
|
try {
|
||||||
_patcherAPI.sharePatchedFile(_app.name, _app.version);
|
_patcherAPI.sharePatchedFile(_app.name, _app.version);
|
||||||
@@ -250,6 +258,9 @@ class InstallerViewModel extends BaseViewModel {
|
|||||||
shareResult();
|
shareResult();
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
|
exportResult();
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
shareLog();
|
shareLog();
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@@ -257,7 +268,7 @@ class InstallerViewModel extends BaseViewModel {
|
|||||||
|
|
||||||
Future<bool> onWillPop(BuildContext context) async {
|
Future<bool> onWillPop(BuildContext context) async {
|
||||||
if (isPatching) {
|
if (isPatching) {
|
||||||
_toast.show('installerView.noExit');
|
_toast.showBottom('installerView.noExit');
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
cleanPatcher();
|
cleanPatcher();
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ class PatcherViewModel extends BaseViewModel {
|
|||||||
return showDialog(
|
return showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: I18nText('patcherView.patchDialogTitle'),
|
title: I18nText('warning'),
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
content: I18nText('patcherView.patchDialogText'),
|
content: I18nText('patcherView.patchDialogText'),
|
||||||
actions: <Widget>[
|
actions: <Widget>[
|
||||||
@@ -107,4 +107,16 @@ class PatcherViewModel extends BaseViewModel {
|
|||||||
'appSelectorCard.recommendedVersion',
|
'appSelectorCard.recommendedVersion',
|
||||||
)}: $recommendedVersion';
|
)}: $recommendedVersion';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> loadLastSelectedPatches() async {
|
||||||
|
this.selectedPatches.clear();
|
||||||
|
List<String> selectedPatches =
|
||||||
|
await _managerAPI.getSelectedPatches(selectedApp!.originalPackageName);
|
||||||
|
List<Patch> patches =
|
||||||
|
await _patcherAPI.getFilteredPatches(selectedApp!.originalPackageName);
|
||||||
|
this
|
||||||
|
.selectedPatches
|
||||||
|
.addAll(patches.where((patch) => selectedPatches.contains(patch.name)));
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,6 +2,8 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
import 'package:revanced_manager/ui/views/patches_selector/patches_selector_viewmodel.dart';
|
import 'package:revanced_manager/ui/views/patches_selector/patches_selector_viewmodel.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/patchesSelectorView/patch_item.dart';
|
import 'package:revanced_manager/ui/widgets/patchesSelectorView/patch_item.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/shared/custom_chip.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/shared/custom_popup_menu.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/shared/search_bar.dart';
|
import 'package:revanced_manager/ui/widgets/shared/search_bar.dart';
|
||||||
import 'package:stacked/stacked.dart';
|
import 'package:stacked/stacked.dart';
|
||||||
|
|
||||||
@@ -25,7 +27,12 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
|
|||||||
floatingActionButton: Visibility(
|
floatingActionButton: Visibility(
|
||||||
visible: model.patches.isNotEmpty,
|
visible: model.patches.isNotEmpty,
|
||||||
child: FloatingActionButton.extended(
|
child: FloatingActionButton.extended(
|
||||||
label: I18nText('patchesSelectorView.doneButton'),
|
label: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
I18nText('patchesSelectorView.doneButton'),
|
||||||
|
Text(' (${model.selectedPatches.length})')
|
||||||
|
],
|
||||||
|
),
|
||||||
icon: const Icon(Icons.check),
|
icon: const Icon(Icons.check),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
model.selectPatches();
|
model.selectPatches();
|
||||||
@@ -58,7 +65,7 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
|
|||||||
actions: [
|
actions: [
|
||||||
Container(
|
Container(
|
||||||
height: 2,
|
height: 2,
|
||||||
margin: const EdgeInsets.only(right: 16, top: 12, bottom: 12),
|
margin: const EdgeInsets.only(top: 12, bottom: 12),
|
||||||
padding:
|
padding:
|
||||||
const EdgeInsets.symmetric(horizontal: 6, vertical: 6),
|
const EdgeInsets.symmetric(horizontal: 6, vertical: 6),
|
||||||
decoration: BoxDecoration(
|
decoration: BoxDecoration(
|
||||||
@@ -73,6 +80,20 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
CustomPopupMenu(
|
||||||
|
onSelected: (value) => {model.onMenuSelection(value)},
|
||||||
|
children: {
|
||||||
|
0: I18nText(
|
||||||
|
'patchesSelectorView.loadPatchesSelection',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontWeight: FontWeight.bold,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
},
|
||||||
|
),
|
||||||
],
|
],
|
||||||
bottom: PreferredSize(
|
bottom: PreferredSize(
|
||||||
preferredSize: const Size.fromHeight(64.0),
|
preferredSize: const Size.fromHeight(64.0),
|
||||||
@@ -120,103 +141,51 @@ class _PatchesSelectorViewState extends State<PatchesSelectorView> {
|
|||||||
padding: const EdgeInsets.symmetric(horizontal: 12.0)
|
padding: const EdgeInsets.symmetric(horizontal: 12.0)
|
||||||
.copyWith(bottom: 80),
|
.copyWith(bottom: 80),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: model
|
children: [
|
||||||
.getQueriedPatches(_query)
|
Row(
|
||||||
.map(
|
children: [
|
||||||
(patch) => PatchItem(
|
CustomChip(
|
||||||
name: patch.name,
|
label:
|
||||||
simpleName: patch.getSimpleName(),
|
I18nText('patchesSelectorView.recommended'),
|
||||||
version: patch.version,
|
onSelected: (value) {
|
||||||
description: patch.description,
|
model.selectRecommendedPatches();
|
||||||
packageVersion: model.getAppVersion(),
|
},
|
||||||
supportedPackageVersions:
|
|
||||||
model.getSupportedVersions(patch),
|
|
||||||
isUnsupported: !model.isPatchSupported(patch),
|
|
||||||
isSelected: model.isSelected(patch),
|
|
||||||
onChanged: (value) =>
|
|
||||||
model.selectPatch(patch, value),
|
|
||||||
),
|
),
|
||||||
/* TODO: Enable this and make use of new Patch Options implementation
|
const SizedBox(width: 8),
|
||||||
patch.hasOptions ? ExpandablePanel(
|
CustomChip(
|
||||||
controller: expController,
|
label: I18nText('patchesSelectorView.all'),
|
||||||
theme: const ExpandableThemeData(
|
onSelected: (value) {
|
||||||
hasIcon: false,
|
model.selectAllPatches(true);
|
||||||
tapBodyToExpand: true,
|
},
|
||||||
tapBodyToCollapse: true,
|
),
|
||||||
tapHeaderToExpand: true,
|
const SizedBox(width: 8),
|
||||||
),
|
CustomChip(
|
||||||
header: Column(
|
label: I18nText('patchesSelectorView.none'),
|
||||||
children: <Widget>[
|
onSelected: (value) {
|
||||||
GestureDetector(
|
model.clearPatches();
|
||||||
onLongPress: () =>
|
},
|
||||||
expController.toggle(),
|
),
|
||||||
child: PatchItem(
|
],
|
||||||
name: patch.name,
|
),
|
||||||
simpleName: patch.getSimpleName(),
|
...model
|
||||||
description: patch.description,
|
.getQueriedPatches(_query)
|
||||||
version: patch.version,
|
.map(
|
||||||
packageVersion:
|
(patch) => PatchItem(
|
||||||
model.getAppVersion(),
|
name: patch.name,
|
||||||
supportedPackageVersions: model
|
simpleName: patch.getSimpleName(),
|
||||||
.getSupportedVersions(patch),
|
version: patch.version,
|
||||||
isUnsupported: !model
|
description: patch.description,
|
||||||
.isPatchSupported(patch),
|
packageVersion: model.getAppVersion(),
|
||||||
isSelected:
|
supportedPackageVersions:
|
||||||
model.isSelected(patch),
|
model.getSupportedVersions(patch),
|
||||||
onChanged: (value) => model
|
isUnsupported: !model.isPatchSupported(patch),
|
||||||
.selectPatch(patch, value),
|
isSelected: model.isSelected(patch),
|
||||||
child: const Padding(
|
onChanged: (value) =>
|
||||||
padding: EdgeInsets.symmetric(
|
model.selectPatch(patch, value),
|
||||||
vertical: 8.0,
|
),
|
||||||
),
|
)
|
||||||
child: Text(
|
.toList(),
|
||||||
'Long press for additional options.',
|
],
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
expanded: Padding(
|
|
||||||
padding: const EdgeInsets.symmetric(
|
|
||||||
vertical: 10.0,
|
|
||||||
horizontal: 10,
|
|
||||||
),
|
|
||||||
child: Container(
|
|
||||||
padding: const EdgeInsets.symmetric(
|
|
||||||
vertical: 8,
|
|
||||||
horizontal: 8,
|
|
||||||
),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: Theme.of(context)
|
|
||||||
.colorScheme
|
|
||||||
.tertiary
|
|
||||||
.withOpacity(0.1),
|
|
||||||
borderRadius:
|
|
||||||
BorderRadius.circular(12),
|
|
||||||
),
|
|
||||||
child: Column(
|
|
||||||
children: <Widget>[
|
|
||||||
Text(
|
|
||||||
'Patch options',
|
|
||||||
style: GoogleFonts.inter(
|
|
||||||
fontSize: 18,
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const OptionsTextField(
|
|
||||||
hint: 'App name'),
|
|
||||||
const OptionsFilePicker(
|
|
||||||
optionName: 'Choose a logo',
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
collapsed: Container(),
|
|
||||||
) */
|
|
||||||
)
|
|
||||||
.toList(),
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -3,8 +3,10 @@ import 'package:flutter_i18n/widgets/I18nText.dart';
|
|||||||
import 'package:revanced_manager/app/app.locator.dart';
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
import 'package:revanced_manager/models/patch.dart';
|
import 'package:revanced_manager/models/patch.dart';
|
||||||
import 'package:revanced_manager/models/patched_application.dart';
|
import 'package:revanced_manager/models/patched_application.dart';
|
||||||
|
import 'package:revanced_manager/services/github_api.dart';
|
||||||
import 'package:revanced_manager/services/manager_api.dart';
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
import 'package:revanced_manager/services/patcher_api.dart';
|
import 'package:revanced_manager/services/patcher_api.dart';
|
||||||
|
import 'package:revanced_manager/services/toast.dart';
|
||||||
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
||||||
import 'package:stacked/stacked.dart';
|
import 'package:stacked/stacked.dart';
|
||||||
@@ -13,10 +15,14 @@ import 'package:flutter/material.dart';
|
|||||||
class PatchesSelectorViewModel extends BaseViewModel {
|
class PatchesSelectorViewModel extends BaseViewModel {
|
||||||
final PatcherAPI _patcherAPI = locator<PatcherAPI>();
|
final PatcherAPI _patcherAPI = locator<PatcherAPI>();
|
||||||
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
|
final GithubAPI _githubAPI = locator<GithubAPI>();
|
||||||
final List<Patch> patches = [];
|
final List<Patch> patches = [];
|
||||||
final List<Patch> selectedPatches =
|
final List<Patch> selectedPatches =
|
||||||
locator<PatcherViewModel>().selectedPatches;
|
locator<PatcherViewModel>().selectedPatches;
|
||||||
String? patchesVersion = '';
|
String? patchesVersion = '';
|
||||||
|
bool isDefaultPatchesRepo() {
|
||||||
|
return _managerAPI.getPatchesRepo() == 'revanced/revanced-patches';
|
||||||
|
}
|
||||||
|
|
||||||
Future<void> initialize() async {
|
Future<void> initialize() async {
|
||||||
getPatchesVersion();
|
getPatchesVersion();
|
||||||
@@ -24,6 +30,7 @@ class PatchesSelectorViewModel extends BaseViewModel {
|
|||||||
locator<PatcherViewModel>().selectedApp!.originalPackageName,
|
locator<PatcherViewModel>().selectedApp!.originalPackageName,
|
||||||
));
|
));
|
||||||
patches.sort((a, b) => a.name.compareTo(b.name));
|
patches.sort((a, b) => a.name.compareTo(b.name));
|
||||||
|
selectRecommendedPatches();
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -46,7 +53,7 @@ class PatchesSelectorViewModel extends BaseViewModel {
|
|||||||
return showDialog(
|
return showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: I18nText('patchesSelectorView.selectAllPatchesWarningTitle'),
|
title: I18nText('warning'),
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
content: I18nText('patchesSelectorView.selectAllPatchesWarningContent'),
|
content: I18nText('patchesSelectorView.selectAllPatchesWarningContent'),
|
||||||
actions: <Widget>[
|
actions: <Widget>[
|
||||||
@@ -61,21 +68,56 @@ class PatchesSelectorViewModel extends BaseViewModel {
|
|||||||
|
|
||||||
void selectAllPatches(bool isSelected) {
|
void selectAllPatches(bool isSelected) {
|
||||||
selectedPatches.clear();
|
selectedPatches.clear();
|
||||||
if (isSelected) {
|
|
||||||
|
if (isSelected && _managerAPI.areExperimentalPatchesEnabled() == false) {
|
||||||
|
selectedPatches
|
||||||
|
.addAll(patches.where((element) => isPatchSupported(element)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isSelected && _managerAPI.areExperimentalPatchesEnabled()) {
|
||||||
selectedPatches.addAll(patches);
|
selectedPatches.addAll(patches);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
void selectRecommendedPatches() {
|
||||||
|
selectedPatches.clear();
|
||||||
|
|
||||||
|
if (_managerAPI.areExperimentalPatchesEnabled() == false) {
|
||||||
|
selectedPatches.addAll(patches.where(
|
||||||
|
(element) => element.excluded == false && isPatchSupported(element)));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_managerAPI.areExperimentalPatchesEnabled()) {
|
||||||
|
selectedPatches
|
||||||
|
.addAll(patches.where((element) => element.excluded == false));
|
||||||
|
}
|
||||||
|
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
void clearPatches() {
|
||||||
|
selectedPatches.clear();
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
void selectPatches() {
|
void selectPatches() {
|
||||||
locator<PatcherViewModel>().selectedPatches = selectedPatches;
|
locator<PatcherViewModel>().selectedPatches = selectedPatches;
|
||||||
|
saveSelectedPatches();
|
||||||
locator<PatcherViewModel>().notifyListeners();
|
locator<PatcherViewModel>().notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String?> getPatchesVersion() async {
|
Future<String?> getPatchesVersion() async {
|
||||||
patchesVersion = await _managerAPI.getLatestPatchesVersion();
|
if (isDefaultPatchesRepo()) {
|
||||||
// print('Patches version: $patchesVersion');
|
patchesVersion = await _managerAPI.getLatestPatchesVersion();
|
||||||
return patchesVersion ?? '0.0.0';
|
// print('Patches version: $patchesVersion');
|
||||||
|
return patchesVersion ?? '0.0.0';
|
||||||
|
} else {
|
||||||
|
// fetch from github
|
||||||
|
patchesVersion = await _githubAPI
|
||||||
|
.getLastestReleaseVersion(_managerAPI.getPatchesRepo());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
List<Patch> getQueriedPatches(String query) {
|
List<Patch> getQueriedPatches(String query) {
|
||||||
@@ -110,4 +152,33 @@ class PatchesSelectorViewModel extends BaseViewModel {
|
|||||||
pack.name == app.packageName &&
|
pack.name == app.packageName &&
|
||||||
(pack.versions.isEmpty || pack.versions.contains(app.version)));
|
(pack.versions.isEmpty || pack.versions.contains(app.version)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void onMenuSelection(value) {
|
||||||
|
switch (value) {
|
||||||
|
case 0:
|
||||||
|
loadSelectedPatches();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> saveSelectedPatches() async {
|
||||||
|
List<String> selectedPatches =
|
||||||
|
this.selectedPatches.map((patch) => patch.name).toList();
|
||||||
|
await _managerAPI.setSelectedPatches(
|
||||||
|
locator<PatcherViewModel>().selectedApp!.originalPackageName,
|
||||||
|
selectedPatches);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> loadSelectedPatches() async {
|
||||||
|
List<String> selectedPatches = await _managerAPI.getSelectedPatches(
|
||||||
|
locator<PatcherViewModel>().selectedApp!.originalPackageName);
|
||||||
|
if (selectedPatches.isNotEmpty) {
|
||||||
|
this.selectedPatches.clear();
|
||||||
|
this.selectedPatches.addAll(
|
||||||
|
patches.where((patch) => selectedPatches.contains(patch.name)));
|
||||||
|
} else {
|
||||||
|
locator<Toast>().showBottom('patchesSelectorView.noSavedPatches');
|
||||||
|
}
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,117 @@
|
|||||||
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_text_field.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_tile_dialog.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
||||||
|
import 'package:stacked/stacked.dart';
|
||||||
|
|
||||||
|
class SManageApiUrl extends BaseViewModel {
|
||||||
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
|
|
||||||
|
final TextEditingController _apiUrlController = TextEditingController();
|
||||||
|
|
||||||
|
Future<void> showApiUrlDialog(BuildContext context) async {
|
||||||
|
String apiUrl = _managerAPI.getApiUrl();
|
||||||
|
_apiUrlController.text = apiUrl.replaceAll('https://', '');
|
||||||
|
return showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
I18nText('settingsView.apiURLLabel'),
|
||||||
|
const Spacer(),
|
||||||
|
IconButton(
|
||||||
|
icon: const Icon(Icons.manage_history_outlined),
|
||||||
|
onPressed: () => showApiUrlResetDialog(context),
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
|
content: SingleChildScrollView(
|
||||||
|
child: Column(
|
||||||
|
children: <Widget>[
|
||||||
|
CustomTextField(
|
||||||
|
leadingIcon: Icon(
|
||||||
|
Icons.api_outlined,
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
),
|
||||||
|
inputController: _apiUrlController,
|
||||||
|
label: I18nText('settingsView.selectApiURL'),
|
||||||
|
hint: apiUrl.split('/')[0],
|
||||||
|
onChanged: (value) => notifyListeners(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: <Widget>[
|
||||||
|
CustomMaterialButton(
|
||||||
|
isFilled: false,
|
||||||
|
label: I18nText('cancelButton'),
|
||||||
|
onPressed: () {
|
||||||
|
_apiUrlController.clear();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
CustomMaterialButton(
|
||||||
|
label: I18nText('okButton'),
|
||||||
|
onPressed: () {
|
||||||
|
String apiUrl = _apiUrlController.text;
|
||||||
|
if (!apiUrl.startsWith('https')) {
|
||||||
|
apiUrl = 'https://$apiUrl';
|
||||||
|
}
|
||||||
|
_managerAPI.setApiUrl(apiUrl);
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> showApiUrlResetDialog(BuildContext context) async {
|
||||||
|
return showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: I18nText('settingsView.sourcesResetDialogTitle'),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
|
content: I18nText('settingsView.apiURLResetDialogText'),
|
||||||
|
actions: <Widget>[
|
||||||
|
CustomMaterialButton(
|
||||||
|
isFilled: false,
|
||||||
|
label: I18nText('noButton'),
|
||||||
|
onPressed: () => Navigator.of(context).pop(),
|
||||||
|
),
|
||||||
|
CustomMaterialButton(
|
||||||
|
label: I18nText('yesButton'),
|
||||||
|
onPressed: () {
|
||||||
|
_managerAPI.setApiUrl('');
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final sManageApiUrl = SManageApiUrl();
|
||||||
|
|
||||||
|
class SManageApiUrlUI extends StatelessWidget {
|
||||||
|
const SManageApiUrlUI({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsTileDialog(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: 'settingsView.apiURLLabel',
|
||||||
|
subtitle: 'settingsView.apiURLHint',
|
||||||
|
onTap: () => sManageApiUrl.showApiUrlDialog(context),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,162 @@
|
|||||||
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_text_field.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_tile_dialog.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
||||||
|
import 'package:stacked/stacked.dart';
|
||||||
|
|
||||||
|
class SManageSources extends BaseViewModel {
|
||||||
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
|
|
||||||
|
final TextEditingController _orgPatSourceController = TextEditingController();
|
||||||
|
final TextEditingController _patSourceController = TextEditingController();
|
||||||
|
final TextEditingController _orgIntSourceController = TextEditingController();
|
||||||
|
final TextEditingController _intSourceController = TextEditingController();
|
||||||
|
|
||||||
|
Future<void> showSourcesDialog(BuildContext context) async {
|
||||||
|
String patchesRepo = _managerAPI.getPatchesRepo();
|
||||||
|
String integrationsRepo = _managerAPI.getIntegrationsRepo();
|
||||||
|
_orgPatSourceController.text = patchesRepo.split('/')[0];
|
||||||
|
_patSourceController.text = patchesRepo.split('/')[1];
|
||||||
|
_orgIntSourceController.text = integrationsRepo.split('/')[0];
|
||||||
|
_intSourceController.text = integrationsRepo.split('/')[1];
|
||||||
|
return showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: Row(
|
||||||
|
children: <Widget>[
|
||||||
|
I18nText('settingsView.sourcesLabel'),
|
||||||
|
const Spacer(),
|
||||||
|
IconButton(
|
||||||
|
icon: const Icon(Icons.manage_history_outlined),
|
||||||
|
onPressed: () => showResetConfirmationDialog(context),
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
|
content: SingleChildScrollView(
|
||||||
|
child: Column(
|
||||||
|
children: <Widget>[
|
||||||
|
CustomTextField(
|
||||||
|
leadingIcon: Icon(
|
||||||
|
Icons.extension_outlined,
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
),
|
||||||
|
inputController: _orgPatSourceController,
|
||||||
|
label: I18nText('settingsView.orgPatchesLabel'),
|
||||||
|
hint: patchesRepo.split('/')[0],
|
||||||
|
onChanged: (value) => notifyListeners(),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
CustomTextField(
|
||||||
|
leadingIcon: const Icon(
|
||||||
|
Icons.extension_outlined,
|
||||||
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
inputController: _patSourceController,
|
||||||
|
label: I18nText('settingsView.sourcesPatchesLabel'),
|
||||||
|
hint: patchesRepo.split('/')[1],
|
||||||
|
onChanged: (value) => notifyListeners(),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 20),
|
||||||
|
CustomTextField(
|
||||||
|
leadingIcon: Icon(
|
||||||
|
Icons.merge_outlined,
|
||||||
|
color: Theme.of(context).colorScheme.secondary,
|
||||||
|
),
|
||||||
|
inputController: _orgIntSourceController,
|
||||||
|
label: I18nText('settingsView.orgIntegrationsLabel'),
|
||||||
|
hint: integrationsRepo.split('/')[0],
|
||||||
|
onChanged: (value) => notifyListeners(),
|
||||||
|
),
|
||||||
|
const SizedBox(height: 8),
|
||||||
|
CustomTextField(
|
||||||
|
leadingIcon: const Icon(
|
||||||
|
Icons.merge_outlined,
|
||||||
|
color: Colors.transparent,
|
||||||
|
),
|
||||||
|
inputController: _intSourceController,
|
||||||
|
label: I18nText('settingsView.sourcesIntegrationsLabel'),
|
||||||
|
hint: integrationsRepo.split('/')[1],
|
||||||
|
onChanged: (value) => notifyListeners(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
actions: <Widget>[
|
||||||
|
CustomMaterialButton(
|
||||||
|
isFilled: false,
|
||||||
|
label: I18nText('cancelButton'),
|
||||||
|
onPressed: () {
|
||||||
|
_orgPatSourceController.clear();
|
||||||
|
_patSourceController.clear();
|
||||||
|
_orgIntSourceController.clear();
|
||||||
|
_intSourceController.clear();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
),
|
||||||
|
CustomMaterialButton(
|
||||||
|
label: I18nText('okButton'),
|
||||||
|
onPressed: () {
|
||||||
|
_managerAPI.setPatchesRepo(
|
||||||
|
'${_orgPatSourceController.text}/${_patSourceController.text}',
|
||||||
|
);
|
||||||
|
_managerAPI.setIntegrationsRepo(
|
||||||
|
'${_orgIntSourceController.text}/${_intSourceController.text}',
|
||||||
|
);
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> showResetConfirmationDialog(BuildContext context) async {
|
||||||
|
return showDialog(
|
||||||
|
context: context,
|
||||||
|
builder: (context) => AlertDialog(
|
||||||
|
title: I18nText('settingsView.sourcesResetDialogTitle'),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
|
content: I18nText('settingsView.sourcesResetDialogText'),
|
||||||
|
actions: <Widget>[
|
||||||
|
CustomMaterialButton(
|
||||||
|
isFilled: false,
|
||||||
|
label: I18nText('noButton'),
|
||||||
|
onPressed: () => Navigator.of(context).pop(),
|
||||||
|
),
|
||||||
|
CustomMaterialButton(
|
||||||
|
label: I18nText('yesButton'),
|
||||||
|
onPressed: () {
|
||||||
|
_managerAPI.setPatchesRepo('');
|
||||||
|
_managerAPI.setIntegrationsRepo('');
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
},
|
||||||
|
)
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
final sManageSources = SManageSources();
|
||||||
|
|
||||||
|
class SManageSourcesUI extends StatelessWidget {
|
||||||
|
const SManageSourcesUI({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsTileDialog(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: 'settingsView.sourcesLabel',
|
||||||
|
subtitle: 'settingsView.sourcesLabelHint',
|
||||||
|
onTap: () => sManageSources.showSourcesDialog(context),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,98 @@
|
|||||||
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/main.dart';
|
||||||
|
import 'package:revanced_manager/services/crowdin_api.dart';
|
||||||
|
import 'package:revanced_manager/services/toast.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/navigation/navigation_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_tile_dialog.dart';
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
import 'package:stacked/stacked.dart';
|
||||||
|
import 'package:timeago/timeago.dart' as timeago;
|
||||||
|
|
||||||
|
final _settingViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class SUpdateLanguage extends BaseViewModel {
|
||||||
|
final CrowdinAPI _crowdinAPI = locator<CrowdinAPI>();
|
||||||
|
final Toast _toast = locator<Toast>();
|
||||||
|
late SharedPreferences _prefs;
|
||||||
|
String selectedLanguage = 'English';
|
||||||
|
String selectedLanguageLocale = prefs.getString('language') ?? 'en_US';
|
||||||
|
List languages = [];
|
||||||
|
|
||||||
|
Future<void> initialize() async {
|
||||||
|
_prefs = await SharedPreferences.getInstance();
|
||||||
|
selectedLanguageLocale =
|
||||||
|
_prefs.getString('language') ?? selectedLanguageLocale;
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> updateLanguage(BuildContext context, String? value) async {
|
||||||
|
if (value != null) {
|
||||||
|
selectedLanguageLocale = value;
|
||||||
|
_prefs = await SharedPreferences.getInstance();
|
||||||
|
await _prefs.setString('language', value);
|
||||||
|
await FlutterI18n.refresh(context, Locale(value));
|
||||||
|
timeago.setLocaleMessages(value, timeago.EnMessages());
|
||||||
|
locator<NavigationViewModel>().notifyListeners();
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> initLang() async {
|
||||||
|
languages = await _crowdinAPI.getLanguages();
|
||||||
|
languages.sort((a, b) => a['name'].compareTo(b['name']));
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> showLanguagesDialog(BuildContext parentContext) {
|
||||||
|
initLang();
|
||||||
|
return showDialog(
|
||||||
|
context: parentContext,
|
||||||
|
builder: (context) => SimpleDialog(
|
||||||
|
title: I18nText('settingsView.languageLabel'),
|
||||||
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: 500,
|
||||||
|
child: ListView.builder(
|
||||||
|
itemCount: languages.length,
|
||||||
|
itemBuilder: (context, index) {
|
||||||
|
return RadioListTile<String>(
|
||||||
|
title: Text(languages[index]['name']),
|
||||||
|
subtitle: Text(languages[index]['locale']),
|
||||||
|
value: languages[index]['locale'],
|
||||||
|
groupValue: selectedLanguageLocale,
|
||||||
|
onChanged: (value) {
|
||||||
|
selectedLanguage = languages[index]['name'];
|
||||||
|
_toast.showBottom('settingsView.restartAppForChanges');
|
||||||
|
updateLanguage(context, value);
|
||||||
|
Navigator.pop(context);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class SUpdateLanguageUI extends StatelessWidget {
|
||||||
|
const SUpdateLanguageUI({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsTileDialog(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: 'settingsView.languageLabel',
|
||||||
|
subtitle: _settingViewModel.sUpdateLanguage.selectedLanguage,
|
||||||
|
onTap: () =>
|
||||||
|
_settingViewModel.sUpdateLanguage.showLanguagesDialog(context),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
// ignore_for_file: use_build_context_synchronously
|
||||||
|
|
||||||
|
import 'package:dynamic_themes/dynamic_themes.dart';
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter/services.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_switch_tile.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
import 'package:stacked/stacked.dart';
|
||||||
|
|
||||||
|
final _settingViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
// ignore: constant_identifier_names
|
||||||
|
const int ANDROID_12_SDK_VERSION = 31;
|
||||||
|
|
||||||
|
class SUpdateTheme extends BaseViewModel {
|
||||||
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
|
|
||||||
|
bool getDynamicThemeStatus() {
|
||||||
|
return _managerAPI.getUseDynamicTheme();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setUseDynamicTheme(BuildContext context, bool value) async {
|
||||||
|
await _managerAPI.setUseDynamicTheme(value);
|
||||||
|
int currentTheme = DynamicTheme.of(context)!.themeId;
|
||||||
|
if (currentTheme.isEven) {
|
||||||
|
await DynamicTheme.of(context)!.setTheme(value ? 2 : 0);
|
||||||
|
} else {
|
||||||
|
await DynamicTheme.of(context)!.setTheme(value ? 3 : 1);
|
||||||
|
}
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
|
||||||
|
bool getDarkThemeStatus() {
|
||||||
|
return _managerAPI.getUseDarkTheme();
|
||||||
|
}
|
||||||
|
|
||||||
|
void setUseDarkTheme(BuildContext context, bool value) async {
|
||||||
|
await _managerAPI.setUseDarkTheme(value);
|
||||||
|
int currentTheme = DynamicTheme.of(context)!.themeId;
|
||||||
|
if (currentTheme < 2) {
|
||||||
|
await DynamicTheme.of(context)!.setTheme(value ? 1 : 0);
|
||||||
|
} else {
|
||||||
|
await DynamicTheme.of(context)!.setTheme(value ? 3 : 2);
|
||||||
|
}
|
||||||
|
SystemChrome.setSystemUIOverlayStyle(
|
||||||
|
SystemUiOverlayStyle(
|
||||||
|
systemNavigationBarIconBrightness:
|
||||||
|
value ? Brightness.light : Brightness.dark,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
class SUpdateThemeUI extends StatelessWidget {
|
||||||
|
const SUpdateThemeUI({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.appearanceSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
CustomSwitchTile(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.darkThemeLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.darkThemeHint'),
|
||||||
|
value: SUpdateTheme().getDarkThemeStatus(),
|
||||||
|
onTap: (value) => SUpdateTheme().setUseDarkTheme(
|
||||||
|
context,
|
||||||
|
value,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
FutureBuilder<int>(
|
||||||
|
future: _settingViewModel.getSdkVersion(),
|
||||||
|
builder: (context, snapshot) => Visibility(
|
||||||
|
visible:
|
||||||
|
snapshot.hasData && snapshot.data! >= ANDROID_12_SDK_VERSION,
|
||||||
|
child: CustomSwitchTile(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.dynamicThemeLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.dynamicThemeHint'),
|
||||||
|
value: _settingViewModel.sUpdateTheme.getDynamicThemeStatus(),
|
||||||
|
onTap: (value) =>
|
||||||
|
_settingViewModel.sUpdateTheme.setUseDynamicTheme(
|
||||||
|
context,
|
||||||
|
value,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,12 +1,15 @@
|
|||||||
|
// ignore_for_file: prefer_const_constructors
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
import 'package:google_fonts/google_fonts.dart';
|
import 'package:google_fonts/google_fonts.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_update_language.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_update_theme.dart';
|
||||||
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/about_widget.dart';
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_advanced_section.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/custom_switch_tile.dart';
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_export_section.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/settings_tile_dialog.dart';
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_info_section.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_team_section.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/social_media_widget.dart';
|
|
||||||
import 'package:revanced_manager/ui/widgets/shared/custom_sliver_app_bar.dart';
|
import 'package:revanced_manager/ui/widgets/shared/custom_sliver_app_bar.dart';
|
||||||
import 'package:stacked/stacked.dart';
|
import 'package:stacked/stacked.dart';
|
||||||
|
|
||||||
@@ -38,201 +41,18 @@ class SettingsView extends StatelessWidget {
|
|||||||
SliverList(
|
SliverList(
|
||||||
delegate: SliverChildListDelegate.fixed(
|
delegate: SliverChildListDelegate.fixed(
|
||||||
<Widget>[
|
<Widget>[
|
||||||
SettingsSection(
|
SUpdateThemeUI(),
|
||||||
title: 'settingsView.appearanceSectionTitle',
|
SUpdateLanguageUI(),
|
||||||
children: <Widget>[
|
|
||||||
CustomSwitchTile(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.darkThemeLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.darkThemeHint'),
|
|
||||||
value: model.getDarkThemeStatus(),
|
|
||||||
onTap: (value) => model.setUseDarkTheme(
|
|
||||||
context,
|
|
||||||
value,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
FutureBuilder<int>(
|
|
||||||
future: model.getSdkVersion(),
|
|
||||||
builder: (context, snapshot) => Visibility(
|
|
||||||
visible: snapshot.hasData &&
|
|
||||||
snapshot.data! >= ANDROID_12_SDK_VERSION,
|
|
||||||
child: CustomSwitchTile(
|
|
||||||
padding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.dynamicThemeLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.dynamicThemeHint'),
|
|
||||||
value: model.getDynamicThemeStatus(),
|
|
||||||
onTap: (value) => model.setUseDynamicTheme(
|
|
||||||
context,
|
|
||||||
value,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
SettingsTileDialog(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: 'settingsView.languageLabel',
|
|
||||||
subtitle: 'English',
|
|
||||||
onTap: () => model.showLanguagesDialog(context),
|
|
||||||
),
|
|
||||||
_settingsDivider,
|
_settingsDivider,
|
||||||
SettingsSection(
|
STeamSection(),
|
||||||
title: 'settingsView.teamSectionTitle',
|
|
||||||
children: <Widget>[
|
|
||||||
ListTile(
|
|
||||||
contentPadding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.contributorsLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.contributorsHint'),
|
|
||||||
onTap: () => model.navigateToContributors(),
|
|
||||||
),
|
|
||||||
const SocialMediaWidget(
|
|
||||||
padding: EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
_settingsDivider,
|
_settingsDivider,
|
||||||
SettingsSection(
|
SAdvancedSection(),
|
||||||
title: 'settingsView.advancedSectionTitle',
|
|
||||||
children: <Widget>[
|
|
||||||
SettingsTileDialog(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: 'settingsView.apiURLLabel',
|
|
||||||
subtitle: 'settingsView.apiURLHint',
|
|
||||||
onTap: () => model.showApiUrlDialog(context),
|
|
||||||
),
|
|
||||||
SettingsTileDialog(
|
|
||||||
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: 'settingsView.sourcesLabel',
|
|
||||||
subtitle: 'settingsView.sourcesLabelHint',
|
|
||||||
onTap: () => model.showSourcesDialog(context),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
contentPadding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.deleteKeystoreLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.deleteKeystoreHint'),
|
|
||||||
onTap: () => model.deleteKeystore,
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
contentPadding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.deleteTempDirLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.deleteTempDirHint'),
|
|
||||||
onTap: () => model.deleteTempDir(),
|
|
||||||
),
|
|
||||||
ListTile(
|
|
||||||
contentPadding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.deleteLogsLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.deleteLogsHint'),
|
|
||||||
onTap: () => model.deleteLogs(),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
_settingsDivider,
|
_settingsDivider,
|
||||||
// SettingsSection(
|
SExportSection(),
|
||||||
// title: 'settingsView.logsSectionTitle',
|
_settingsDivider,
|
||||||
// children: <Widget>[
|
// SLoggingSection(),
|
||||||
// CustomSwitchTile(
|
|
||||||
// padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
// title: I18nText(
|
|
||||||
// 'settingsView.sentryLabel',
|
|
||||||
// child: const Text(
|
|
||||||
// '',
|
|
||||||
// style: TextStyle(
|
|
||||||
// fontSize: 20,
|
|
||||||
// fontWeight: FontWeight.w500,
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// ),
|
|
||||||
// subtitle: I18nText('settingsView.sentryHint'),
|
|
||||||
// value: model.isSentryEnabled(),
|
|
||||||
// onTap: (value) => model.useSentry(value),
|
|
||||||
// ),
|
|
||||||
// ],
|
|
||||||
// ),
|
|
||||||
// _settingsDivider,
|
// _settingsDivider,
|
||||||
SettingsSection(
|
SInfoSection(),
|
||||||
title: 'settingsView.infoSectionTitle',
|
|
||||||
children: <Widget>[
|
|
||||||
ListTile(
|
|
||||||
contentPadding:
|
|
||||||
const EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
title: I18nText(
|
|
||||||
'settingsView.logsLabel',
|
|
||||||
child: const Text(
|
|
||||||
'',
|
|
||||||
style: TextStyle(
|
|
||||||
fontSize: 20,
|
|
||||||
fontWeight: FontWeight.w500,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
subtitle: I18nText('settingsView.logsHint'),
|
|
||||||
onTap: () => model.exportLogcatLogs(),
|
|
||||||
),
|
|
||||||
const AboutWidget(
|
|
||||||
padding: EdgeInsets.symmetric(horizontal: 20.0),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
@@ -1,330 +1,52 @@
|
|||||||
// ignore_for_file: use_build_context_synchronously
|
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
import 'package:cr_file_saver/file_saver.dart';
|
||||||
import 'package:device_info_plus/device_info_plus.dart';
|
import 'package:device_info_plus/device_info_plus.dart';
|
||||||
import 'package:dynamic_themes/dynamic_themes.dart';
|
import 'package:file_picker/file_picker.dart';
|
||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:flutter/services.dart';
|
|
||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
||||||
import 'package:logcat/logcat.dart';
|
import 'package:logcat/logcat.dart';
|
||||||
import 'package:path_provider/path_provider.dart';
|
import 'package:path_provider/path_provider.dart';
|
||||||
import 'package:revanced_manager/app/app.locator.dart';
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
import 'package:revanced_manager/app/app.router.dart';
|
import 'package:revanced_manager/app/app.router.dart';
|
||||||
import 'package:revanced_manager/services/manager_api.dart';
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
import 'package:revanced_manager/services/toast.dart';
|
import 'package:revanced_manager/services/toast.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/settingsView/custom_text_field.dart';
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_update_language.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_update_theme.dart';
|
||||||
|
import 'package:sentry_flutter/sentry_flutter.dart';
|
||||||
import 'package:share_extend/share_extend.dart';
|
import 'package:share_extend/share_extend.dart';
|
||||||
import 'package:stacked/stacked.dart';
|
import 'package:stacked/stacked.dart';
|
||||||
import 'package:stacked_services/stacked_services.dart';
|
import 'package:stacked_services/stacked_services.dart';
|
||||||
import 'package:timeago/timeago.dart';
|
|
||||||
|
|
||||||
// ignore: constant_identifier_names
|
|
||||||
const int ANDROID_12_SDK_VERSION = 31;
|
|
||||||
|
|
||||||
class SettingsViewModel extends BaseViewModel {
|
class SettingsViewModel extends BaseViewModel {
|
||||||
final NavigationService _navigationService = locator<NavigationService>();
|
final NavigationService _navigationService = locator<NavigationService>();
|
||||||
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
final Toast _toast = locator<Toast>();
|
final Toast _toast = locator<Toast>();
|
||||||
final TextEditingController _orgPatSourceController = TextEditingController();
|
|
||||||
final TextEditingController _patSourceController = TextEditingController();
|
|
||||||
final TextEditingController _orgIntSourceController = TextEditingController();
|
|
||||||
final TextEditingController _intSourceController = TextEditingController();
|
|
||||||
final TextEditingController _apiUrlController = TextEditingController();
|
|
||||||
|
|
||||||
void setLanguage(String language) {
|
final SUpdateLanguage sUpdateLanguage = SUpdateLanguage();
|
||||||
notifyListeners();
|
final SUpdateTheme sUpdateTheme = SUpdateTheme();
|
||||||
}
|
|
||||||
|
|
||||||
void navigateToContributors() {
|
void navigateToContributors() {
|
||||||
_navigationService.navigateTo(Routes.contributorsView);
|
_navigationService.navigateTo(Routes.contributorsView);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> updateLanguage(BuildContext context, String? value) async {
|
bool isSentryEnabled() {
|
||||||
if (value != null) {
|
return _managerAPI.isSentryEnabled();
|
||||||
await FlutterI18n.refresh(context, Locale(value));
|
|
||||||
setLocaleMessages(value, EnMessages());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool getDynamicThemeStatus() {
|
void useSentry(bool value) {
|
||||||
return _managerAPI.getUseDynamicTheme();
|
_managerAPI.setSentryStatus(value);
|
||||||
}
|
_toast.showBottom('settingsView.restartAppForChanges');
|
||||||
|
|
||||||
void setUseDynamicTheme(BuildContext context, bool value) async {
|
|
||||||
await _managerAPI.setUseDynamicTheme(value);
|
|
||||||
int currentTheme = DynamicTheme.of(context)!.themeId;
|
|
||||||
if (currentTheme.isEven) {
|
|
||||||
await DynamicTheme.of(context)!.setTheme(value ? 2 : 0);
|
|
||||||
} else {
|
|
||||||
await DynamicTheme.of(context)!.setTheme(value ? 3 : 1);
|
|
||||||
}
|
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool getDarkThemeStatus() {
|
bool areExperimentalPatchesEnabled() {
|
||||||
return _managerAPI.getUseDarkTheme();
|
return _managerAPI.areExperimentalPatchesEnabled();
|
||||||
}
|
}
|
||||||
|
|
||||||
void setUseDarkTheme(BuildContext context, bool value) async {
|
void useExperimentalPatches(bool value) {
|
||||||
await _managerAPI.setUseDarkTheme(value);
|
_managerAPI.enableExperimentalPatchesStatus(value);
|
||||||
int currentTheme = DynamicTheme.of(context)!.themeId;
|
|
||||||
if (currentTheme < 2) {
|
|
||||||
await DynamicTheme.of(context)!.setTheme(value ? 1 : 0);
|
|
||||||
} else {
|
|
||||||
await DynamicTheme.of(context)!.setTheme(value ? 3 : 2);
|
|
||||||
}
|
|
||||||
SystemChrome.setSystemUIOverlayStyle(
|
|
||||||
SystemUiOverlayStyle(
|
|
||||||
systemNavigationBarIconBrightness:
|
|
||||||
value ? Brightness.light : Brightness.dark,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> showLanguagesDialog(BuildContext context) {
|
|
||||||
return showDialog(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => SimpleDialog(
|
|
||||||
title: I18nText('settingsView.languageLabel'),
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
||||||
children: <Widget>[
|
|
||||||
RadioListTile<String>(
|
|
||||||
title: I18nText('settingsView.englishOption'),
|
|
||||||
value: 'en',
|
|
||||||
groupValue: 'en',
|
|
||||||
onChanged: (value) {
|
|
||||||
updateLanguage(context, value);
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> showSourcesDialog(BuildContext context) async {
|
|
||||||
String patchesRepo = _managerAPI.getPatchesRepo();
|
|
||||||
String integrationsRepo = _managerAPI.getIntegrationsRepo();
|
|
||||||
_orgPatSourceController.text = patchesRepo.split('/')[0];
|
|
||||||
_patSourceController.text = patchesRepo.split('/')[1];
|
|
||||||
_orgIntSourceController.text = integrationsRepo.split('/')[0];
|
|
||||||
_intSourceController.text = integrationsRepo.split('/')[1];
|
|
||||||
return showDialog(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => AlertDialog(
|
|
||||||
title: Row(
|
|
||||||
children: <Widget>[
|
|
||||||
I18nText('settingsView.sourcesLabel'),
|
|
||||||
const Spacer(),
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.manage_history_outlined),
|
|
||||||
onPressed: () => showResetConfirmationDialog(context),
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
||||||
content: SingleChildScrollView(
|
|
||||||
child: Column(
|
|
||||||
children: <Widget>[
|
|
||||||
CustomTextField(
|
|
||||||
leadingIcon: Icon(
|
|
||||||
Icons.extension_outlined,
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
|
||||||
),
|
|
||||||
inputController: _orgPatSourceController,
|
|
||||||
label: I18nText('settingsView.orgPatchesLabel'),
|
|
||||||
hint: patchesRepo.split('/')[0],
|
|
||||||
onChanged: (value) => notifyListeners(),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 8),
|
|
||||||
CustomTextField(
|
|
||||||
leadingIcon: const Icon(
|
|
||||||
Icons.extension_outlined,
|
|
||||||
color: Colors.transparent,
|
|
||||||
),
|
|
||||||
inputController: _patSourceController,
|
|
||||||
label: I18nText('settingsView.sourcesPatchesLabel'),
|
|
||||||
hint: patchesRepo.split('/')[1],
|
|
||||||
onChanged: (value) => notifyListeners(),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 20),
|
|
||||||
CustomTextField(
|
|
||||||
leadingIcon: Icon(
|
|
||||||
Icons.merge_outlined,
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
|
||||||
),
|
|
||||||
inputController: _orgIntSourceController,
|
|
||||||
label: I18nText('settingsView.orgIntegrationsLabel'),
|
|
||||||
hint: integrationsRepo.split('/')[0],
|
|
||||||
onChanged: (value) => notifyListeners(),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 8),
|
|
||||||
CustomTextField(
|
|
||||||
leadingIcon: const Icon(
|
|
||||||
Icons.merge_outlined,
|
|
||||||
color: Colors.transparent,
|
|
||||||
),
|
|
||||||
inputController: _intSourceController,
|
|
||||||
label: I18nText('settingsView.sourcesIntegrationsLabel'),
|
|
||||||
hint: integrationsRepo.split('/')[1],
|
|
||||||
onChanged: (value) => notifyListeners(),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
actions: <Widget>[
|
|
||||||
CustomMaterialButton(
|
|
||||||
isFilled: false,
|
|
||||||
label: I18nText('cancelButton'),
|
|
||||||
onPressed: () {
|
|
||||||
_orgPatSourceController.clear();
|
|
||||||
_patSourceController.clear();
|
|
||||||
_orgIntSourceController.clear();
|
|
||||||
_intSourceController.clear();
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
CustomMaterialButton(
|
|
||||||
label: I18nText('okButton'),
|
|
||||||
onPressed: () {
|
|
||||||
_managerAPI.setPatchesRepo(
|
|
||||||
'${_orgPatSourceController.text}/${_patSourceController.text}',
|
|
||||||
);
|
|
||||||
_managerAPI.setIntegrationsRepo(
|
|
||||||
'${_orgIntSourceController.text}/${_intSourceController.text}',
|
|
||||||
);
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> showApiUrlDialog(BuildContext context) async {
|
|
||||||
String apiUrl = _managerAPI.getApiUrl();
|
|
||||||
_apiUrlController.text = apiUrl.replaceAll('https://', '');
|
|
||||||
return showDialog(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => AlertDialog(
|
|
||||||
title: Row(
|
|
||||||
children: <Widget>[
|
|
||||||
I18nText('settingsView.apiURLLabel'),
|
|
||||||
const Spacer(),
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.manage_history_outlined),
|
|
||||||
onPressed: () => showApiUrlResetDialog(context),
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
||||||
content: SingleChildScrollView(
|
|
||||||
child: Column(
|
|
||||||
children: <Widget>[
|
|
||||||
CustomTextField(
|
|
||||||
leadingIcon: Icon(
|
|
||||||
Icons.api_outlined,
|
|
||||||
color: Theme.of(context).colorScheme.secondary,
|
|
||||||
),
|
|
||||||
inputController: _apiUrlController,
|
|
||||||
label: I18nText('settingsView.selectApiURL'),
|
|
||||||
hint: apiUrl.split('/')[0],
|
|
||||||
onChanged: (value) => notifyListeners(),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
actions: <Widget>[
|
|
||||||
CustomMaterialButton(
|
|
||||||
isFilled: false,
|
|
||||||
label: I18nText('cancelButton'),
|
|
||||||
onPressed: () {
|
|
||||||
_apiUrlController.clear();
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
CustomMaterialButton(
|
|
||||||
label: I18nText('okButton'),
|
|
||||||
onPressed: () {
|
|
||||||
String apiUrl = _apiUrlController.text;
|
|
||||||
if (!apiUrl.startsWith('https')) {
|
|
||||||
apiUrl = 'https://$apiUrl';
|
|
||||||
}
|
|
||||||
_managerAPI.setApiUrl(apiUrl);
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> showResetConfirmationDialog(BuildContext context) async {
|
|
||||||
return showDialog(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => AlertDialog(
|
|
||||||
title: I18nText('settingsView.sourcesResetDialogTitle'),
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
||||||
content: I18nText('settingsView.sourcesResetDialogText'),
|
|
||||||
actions: <Widget>[
|
|
||||||
CustomMaterialButton(
|
|
||||||
isFilled: false,
|
|
||||||
label: I18nText('noButton'),
|
|
||||||
onPressed: () => Navigator.of(context).pop(),
|
|
||||||
),
|
|
||||||
CustomMaterialButton(
|
|
||||||
label: I18nText('yesButton'),
|
|
||||||
onPressed: () {
|
|
||||||
_managerAPI.setPatchesRepo('');
|
|
||||||
_managerAPI.setIntegrationsRepo('');
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> showApiUrlResetDialog(BuildContext context) async {
|
|
||||||
return showDialog(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => AlertDialog(
|
|
||||||
title: I18nText('settingsView.sourcesResetDialogTitle'),
|
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
||||||
content: I18nText('settingsView.apiURLResetDialogText'),
|
|
||||||
actions: <Widget>[
|
|
||||||
CustomMaterialButton(
|
|
||||||
isFilled: false,
|
|
||||||
label: I18nText('noButton'),
|
|
||||||
onPressed: () => Navigator.of(context).pop(),
|
|
||||||
),
|
|
||||||
CustomMaterialButton(
|
|
||||||
label: I18nText('yesButton'),
|
|
||||||
onPressed: () {
|
|
||||||
_managerAPI.setApiUrl('');
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
Navigator.of(context).pop();
|
|
||||||
},
|
|
||||||
)
|
|
||||||
],
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
// bool isSentryEnabled() {
|
|
||||||
// return _managerAPI.isSentryEnabled();
|
|
||||||
// }
|
|
||||||
|
|
||||||
// void useSentry(bool value) {
|
|
||||||
// _managerAPI.setSentryStatus(value);
|
|
||||||
// _toast.showBottom('settingsView.restartAppForChanges');
|
|
||||||
// notifyListeners();
|
|
||||||
// }
|
|
||||||
|
|
||||||
void deleteKeystore() {
|
void deleteKeystore() {
|
||||||
_managerAPI.deleteKeystore();
|
_managerAPI.deleteKeystore();
|
||||||
_toast.showBottom('settingsView.deletedKeystore');
|
_toast.showBottom('settingsView.deletedKeystore');
|
||||||
@@ -337,6 +59,57 @@ class SettingsViewModel extends BaseViewModel {
|
|||||||
notifyListeners();
|
notifyListeners();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> exportPatches() async {
|
||||||
|
try {
|
||||||
|
File outFile = File(_managerAPI.storedPatchesFile);
|
||||||
|
if (outFile.existsSync()) {
|
||||||
|
String dateTime =
|
||||||
|
DateTime.now().toString().replaceAll(' ', '_').split('.').first;
|
||||||
|
String tempFilePath =
|
||||||
|
'${outFile.path.substring(0, outFile.path.lastIndexOf('/') + 1)}selected_patches_$dateTime.json';
|
||||||
|
outFile.copySync(tempFilePath);
|
||||||
|
await CRFileSaver.saveFileWithDialog(SaveFileDialogParams(
|
||||||
|
sourceFilePath: tempFilePath, destinationFileName: ''));
|
||||||
|
File(tempFilePath).delete();
|
||||||
|
locator<Toast>().showBottom('settingsView.exportedPatches');
|
||||||
|
} else {
|
||||||
|
locator<Toast>().showBottom('settingsView.noExportFileFound');
|
||||||
|
}
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
Sentry.captureException(e, stackTrace: s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> importPatches() async {
|
||||||
|
try {
|
||||||
|
FilePickerResult? result = await FilePicker.platform.pickFiles(
|
||||||
|
type: FileType.custom,
|
||||||
|
allowedExtensions: ['json'],
|
||||||
|
);
|
||||||
|
if (result != null && result.files.single.path != null) {
|
||||||
|
File inFile = File(result.files.single.path!);
|
||||||
|
final File storedPatchesFile = File(_managerAPI.storedPatchesFile);
|
||||||
|
if (!storedPatchesFile.existsSync()) {
|
||||||
|
storedPatchesFile.createSync(recursive: true);
|
||||||
|
}
|
||||||
|
inFile.copySync(storedPatchesFile.path);
|
||||||
|
inFile.delete();
|
||||||
|
if (locator<PatcherViewModel>().selectedApp != null) {
|
||||||
|
locator<PatcherViewModel>().loadLastSelectedPatches();
|
||||||
|
}
|
||||||
|
locator<Toast>().showBottom('settingsView.importedPatches');
|
||||||
|
}
|
||||||
|
} on Exception catch (e, s) {
|
||||||
|
await Sentry.captureException(e, stackTrace: s);
|
||||||
|
locator<Toast>().showBottom('settingsView.jsonSelectorErrorMessage');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void resetSelectedPatches() {
|
||||||
|
_managerAPI.resetLastSelectedPatches();
|
||||||
|
_toast.showBottom('settingsView.resetStoredPatches');
|
||||||
|
}
|
||||||
|
|
||||||
Future<int> getSdkVersion() async {
|
Future<int> getSdkVersion() async {
|
||||||
AndroidDeviceInfo info = await DeviceInfoPlugin().androidInfo;
|
AndroidDeviceInfo info = await DeviceInfoPlugin().androidInfo;
|
||||||
return info.version.sdkInt ?? -1;
|
return info.version.sdkInt ?? -1;
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ class AppInfoViewModel extends BaseViewModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void updateNotImplemented(BuildContext context) {
|
void updateNotImplemented(BuildContext context) {
|
||||||
_toast.show('appInfoView.updateNotImplemented');
|
_toast.showBottom('appInfoView.updateNotImplemented');
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> showUninstallDialog(
|
Future<void> showUninstallDialog(
|
||||||
|
|||||||
@@ -20,17 +20,30 @@ class PatchSelectorCard extends StatelessWidget {
|
|||||||
child: Column(
|
child: Column(
|
||||||
crossAxisAlignment: CrossAxisAlignment.start,
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
I18nText(
|
Row(
|
||||||
locator<PatcherViewModel>().selectedPatches.isEmpty
|
children: <Widget>[
|
||||||
? 'patchSelectorCard.widgetTitle'
|
I18nText(
|
||||||
: 'patchSelectorCard.widgetTitleSelected',
|
locator<PatcherViewModel>().selectedPatches.isEmpty
|
||||||
child: const Text(
|
? 'patchSelectorCard.widgetTitle'
|
||||||
'',
|
: 'patchSelectorCard.widgetTitleSelected',
|
||||||
style: TextStyle(
|
child: const Text(
|
||||||
fontSize: 18,
|
'',
|
||||||
fontWeight: FontWeight.w500,
|
style: TextStyle(
|
||||||
|
fontSize: 18,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
),
|
Text(
|
||||||
|
locator<PatcherViewModel>().selectedPatches.isEmpty
|
||||||
|
? ''
|
||||||
|
: ' (${locator<PatcherViewModel>().selectedPatches.length})',
|
||||||
|
style: const TextStyle(
|
||||||
|
fontSize: 18,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
),
|
),
|
||||||
const SizedBox(height: 4),
|
const SizedBox(height: 4),
|
||||||
locator<PatcherViewModel>().selectedApp == null
|
locator<PatcherViewModel>().selectedApp == null
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_i18n/flutter_i18n.dart';
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
||||||
|
import 'package:revanced_manager/app/app.locator.dart';
|
||||||
|
import 'package:revanced_manager/services/manager_api.dart';
|
||||||
|
import 'package:revanced_manager/services/toast.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
||||||
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
|
import 'package:revanced_manager/ui/widgets/shared/custom_card.dart';
|
||||||
|
|
||||||
@@ -15,6 +18,8 @@ class PatchItem extends StatefulWidget {
|
|||||||
bool isSelected;
|
bool isSelected;
|
||||||
final Function(bool) onChanged;
|
final Function(bool) onChanged;
|
||||||
final Widget? child;
|
final Widget? child;
|
||||||
|
final toast = locator<Toast>();
|
||||||
|
final _managerAPI = locator<ManagerAPI>();
|
||||||
|
|
||||||
PatchItem(
|
PatchItem(
|
||||||
{Key? key,
|
{Key? key,
|
||||||
@@ -40,8 +45,22 @@ class _PatchItemState extends State<PatchItem> {
|
|||||||
return Padding(
|
return Padding(
|
||||||
padding: const EdgeInsets.symmetric(vertical: 4.0),
|
padding: const EdgeInsets.symmetric(vertical: 4.0),
|
||||||
child: CustomCard(
|
child: CustomCard(
|
||||||
|
backgroundColor: widget.isUnsupported &&
|
||||||
|
widget._managerAPI.areExperimentalPatchesEnabled() == false
|
||||||
|
? Theme.of(context).colorScheme.brightness == Brightness.light
|
||||||
|
? Colors.grey[400]
|
||||||
|
: Colors.grey[700]
|
||||||
|
: null,
|
||||||
onTap: () {
|
onTap: () {
|
||||||
setState(() => widget.isSelected = !widget.isSelected);
|
setState(() {
|
||||||
|
if (widget.isUnsupported &&
|
||||||
|
!widget._managerAPI.areExperimentalPatchesEnabled()) {
|
||||||
|
widget.isSelected = false;
|
||||||
|
widget.toast.showBottom('patchItem.unsupportedPatchVersion');
|
||||||
|
} else {
|
||||||
|
widget.isSelected = !widget.isSelected;
|
||||||
|
}
|
||||||
|
});
|
||||||
widget.onChanged(widget.isSelected);
|
widget.onChanged(widget.isSelected);
|
||||||
},
|
},
|
||||||
child: Column(
|
child: Column(
|
||||||
@@ -83,7 +102,9 @@ class _PatchItemState extends State<PatchItem> {
|
|||||||
overflow: TextOverflow.visible,
|
overflow: TextOverflow.visible,
|
||||||
style: TextStyle(
|
style: TextStyle(
|
||||||
fontSize: 14,
|
fontSize: 14,
|
||||||
color: Theme.of(context).colorScheme.onSecondaryContainer,
|
color: Theme.of(context)
|
||||||
|
.colorScheme
|
||||||
|
.onSecondaryContainer,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -101,7 +122,17 @@ class _PatchItemState extends State<PatchItem> {
|
|||||||
color: Theme.of(context).colorScheme.primary,
|
color: Theme.of(context).colorScheme.primary,
|
||||||
),
|
),
|
||||||
onChanged: (newValue) {
|
onChanged: (newValue) {
|
||||||
setState(() => widget.isSelected = newValue!);
|
setState(() {
|
||||||
|
if (widget.isUnsupported &&
|
||||||
|
!widget._managerAPI
|
||||||
|
.areExperimentalPatchesEnabled()) {
|
||||||
|
widget.isSelected = false;
|
||||||
|
widget.toast
|
||||||
|
.showBottom('patchItem.unsupportedPatchVersion');
|
||||||
|
} else {
|
||||||
|
widget.isSelected = newValue!;
|
||||||
|
}
|
||||||
|
});
|
||||||
widget.onChanged(widget.isSelected);
|
widget.onChanged(widget.isSelected);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
@@ -114,7 +145,7 @@ class _PatchItemState extends State<PatchItem> {
|
|||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.only(top: 8),
|
padding: const EdgeInsets.only(top: 8),
|
||||||
child: TextButton.icon(
|
child: TextButton.icon(
|
||||||
label: I18nText('patchItem.unsupportedWarningButton'),
|
label: I18nText('warning'),
|
||||||
icon: const Icon(Icons.warning, size: 20.0),
|
icon: const Icon(Icons.warning, size: 20.0),
|
||||||
onPressed: () => _showUnsupportedWarningDialog(),
|
onPressed: () => _showUnsupportedWarningDialog(),
|
||||||
style: ButtonStyle(
|
style: ButtonStyle(
|
||||||
@@ -151,7 +182,7 @@ class _PatchItemState extends State<PatchItem> {
|
|||||||
return showDialog(
|
return showDialog(
|
||||||
context: context,
|
context: context,
|
||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: I18nText('patchItem.unsupportedDialogTitle'),
|
title: I18nText('warning'),
|
||||||
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
||||||
content: I18nText(
|
content: I18nText(
|
||||||
'patchItem.unsupportedDialogText',
|
'patchItem.unsupportedDialogText',
|
||||||
|
|||||||
72
lib/ui/widgets/settingsView/settings_advanced_section.dart
Normal file
72
lib/ui/widgets/settingsView/settings_advanced_section.dart
Normal file
@@ -0,0 +1,72 @@
|
|||||||
|
// ignore_for_file: prefer_const_constructors
|
||||||
|
|
||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_manage_api_url.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settingsFragement/settings_manage_sources.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_experimental_patches.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class SAdvancedSection extends StatelessWidget {
|
||||||
|
const SAdvancedSection({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.advancedSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
SManageApiUrlUI(),
|
||||||
|
SManageSourcesUI(),
|
||||||
|
SExperimentalPatches(),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.deleteKeystoreLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.deleteKeystoreHint'),
|
||||||
|
onTap: () => _settingsViewModel.deleteKeystore,
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.deleteTempDirLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.deleteTempDirHint'),
|
||||||
|
onTap: () => _settingsViewModel.deleteTempDir(),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.deleteLogsLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.deleteLogsHint'),
|
||||||
|
onTap: () => _settingsViewModel.deleteLogs(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,39 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_switch_tile.dart';
|
||||||
|
|
||||||
|
class SExperimentalPatches extends StatefulWidget {
|
||||||
|
const SExperimentalPatches({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
State<SExperimentalPatches> createState() => _SExperimentalPatchesState();
|
||||||
|
}
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class _SExperimentalPatchesState extends State<SExperimentalPatches> {
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return CustomSwitchTile(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.experimentalPatchesLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.experimentalPatchesHint'),
|
||||||
|
value: _settingsViewModel.areExperimentalPatchesEnabled(),
|
||||||
|
onTap: (value) {
|
||||||
|
setState(() {
|
||||||
|
_settingsViewModel.useExperimentalPatches(value);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
64
lib/ui/widgets/settingsView/settings_export_section.dart
Normal file
64
lib/ui/widgets/settingsView/settings_export_section.dart
Normal file
@@ -0,0 +1,64 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class SExportSection extends StatelessWidget {
|
||||||
|
const SExportSection({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.exportSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.exportPatchesLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.exportPatchesHint'),
|
||||||
|
onTap: () => _settingsViewModel.exportPatches(),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.importPatchesLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.importPatchesHint'),
|
||||||
|
onTap: () => _settingsViewModel.importPatches(),
|
||||||
|
),
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.resetStoredPatchesLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.resetStoredPatchesHint'),
|
||||||
|
onTap: () => _settingsViewModel.resetSelectedPatches(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
38
lib/ui/widgets/settingsView/settings_info_section.dart
Normal file
38
lib/ui/widgets/settingsView/settings_info_section.dart
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/about_widget.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class SInfoSection extends StatelessWidget {
|
||||||
|
const SInfoSection({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.infoSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.logsLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.logsHint'),
|
||||||
|
onTap: () => _settingsViewModel.exportLogcatLogs(),
|
||||||
|
),
|
||||||
|
const AboutWidget(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
36
lib/ui/widgets/settingsView/settings_logging_section.dart
Normal file
36
lib/ui/widgets/settingsView/settings_logging_section.dart
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/custom_switch_tile.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class SLoggingSection extends StatelessWidget {
|
||||||
|
const SLoggingSection({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.logsSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
CustomSwitchTile(
|
||||||
|
padding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.sentryLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.sentryHint'),
|
||||||
|
value: _settingsViewModel.isSentryEnabled(),
|
||||||
|
onTap: (value) => _settingsViewModel.useSentry(value),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
38
lib/ui/widgets/settingsView/settings_team_section.dart
Normal file
38
lib/ui/widgets/settingsView/settings_team_section.dart
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_i18n/widgets/I18nText.dart';
|
||||||
|
import 'package:revanced_manager/ui/views/settings/settings_viewmodel.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/settings_section.dart';
|
||||||
|
import 'package:revanced_manager/ui/widgets/settingsView/social_media_widget.dart';
|
||||||
|
|
||||||
|
final _settingsViewModel = SettingsViewModel();
|
||||||
|
|
||||||
|
class STeamSection extends StatelessWidget {
|
||||||
|
const STeamSection({super.key});
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return SettingsSection(
|
||||||
|
title: 'settingsView.teamSectionTitle',
|
||||||
|
children: <Widget>[
|
||||||
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
title: I18nText(
|
||||||
|
'settingsView.contributorsLabel',
|
||||||
|
child: const Text(
|
||||||
|
'',
|
||||||
|
style: TextStyle(
|
||||||
|
fontSize: 20,
|
||||||
|
fontWeight: FontWeight.w500,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
subtitle: I18nText('settingsView.contributorsHint'),
|
||||||
|
onTap: () => _settingsViewModel.navigateToContributors(),
|
||||||
|
),
|
||||||
|
const SocialMediaWidget(
|
||||||
|
padding: EdgeInsets.symmetric(horizontal: 20.0),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,22 +5,25 @@ class CustomCard extends StatelessWidget {
|
|||||||
final Widget child;
|
final Widget child;
|
||||||
final Function()? onTap;
|
final Function()? onTap;
|
||||||
final EdgeInsetsGeometry? padding;
|
final EdgeInsetsGeometry? padding;
|
||||||
|
final Color? backgroundColor;
|
||||||
|
|
||||||
const CustomCard({
|
const CustomCard(
|
||||||
Key? key,
|
{Key? key,
|
||||||
this.isFilled = true,
|
this.isFilled = true,
|
||||||
required this.child,
|
required this.child,
|
||||||
this.onTap,
|
this.onTap,
|
||||||
this.padding,
|
this.padding,
|
||||||
}) : super(key: key);
|
this.backgroundColor})
|
||||||
|
: super(key: key);
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Material(
|
return Material(
|
||||||
type: isFilled ? MaterialType.card : MaterialType.transparency,
|
type: isFilled ? MaterialType.card : MaterialType.transparency,
|
||||||
color: isFilled
|
color: isFilled
|
||||||
? Theme.of(context).colorScheme.secondaryContainer.withOpacity(0.4)
|
? backgroundColor?.withOpacity(0.4) ??
|
||||||
: Colors.transparent,
|
Theme.of(context).colorScheme.secondaryContainer.withOpacity(0.4)
|
||||||
|
: backgroundColor ?? Colors.transparent,
|
||||||
borderRadius: BorderRadius.circular(16),
|
borderRadius: BorderRadius.circular(16),
|
||||||
child: InkWell(
|
child: InkWell(
|
||||||
onTap: onTap,
|
onTap: onTap,
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
class DashboardChip extends StatelessWidget {
|
class CustomChip extends StatelessWidget {
|
||||||
final Widget label;
|
final Widget label;
|
||||||
final bool isSelected;
|
final bool isSelected;
|
||||||
final Function(bool)? onSelected;
|
final Function(bool)? onSelected;
|
||||||
|
|
||||||
const DashboardChip({
|
const CustomChip({
|
||||||
Key? key,
|
Key? key,
|
||||||
required this.label,
|
required this.label,
|
||||||
required this.isSelected,
|
this.isSelected = false,
|
||||||
this.onSelected,
|
this.onSelected,
|
||||||
}) : super(key: key);
|
}) : super(key: key);
|
||||||
|
|
||||||
|
|||||||
5
lib/utils/environment.dart
Normal file
5
lib/utils/environment.dart
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
// Dummy environment variables used for building the app locally. These automatically get set with correct values during workflow builds.
|
||||||
|
class Environment {
|
||||||
|
static const sentryDSN = '';
|
||||||
|
static const crowdinKEY = '';
|
||||||
|
}
|
||||||
@@ -4,7 +4,7 @@ homepage: https://github.com/revanced/revanced-manager
|
|||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 0.0.37+37
|
version: 0.0.41+41
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.17.5 <3.0.0"
|
sdk: ">=2.17.5 <3.0.0"
|
||||||
@@ -15,6 +15,7 @@ dependencies:
|
|||||||
app_installer: ^1.1.0
|
app_installer: ^1.1.0
|
||||||
collection: ^1.16.0
|
collection: ^1.16.0
|
||||||
cross_connectivity: ^3.0.5
|
cross_connectivity: ^3.0.5
|
||||||
|
cr_file_saver: ^0.0.1+2
|
||||||
device_apps:
|
device_apps:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/ponces/flutter_plugin_device_apps
|
url: https://github.com/ponces/flutter_plugin_device_apps
|
||||||
|
|||||||
Reference in New Issue
Block a user