mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2026-01-18 16:53:56 +00:00
Compare commits
6 Commits
v1.19.4-de
...
v1.19.4-de
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
2d19f36901 | ||
|
|
6f70a07970 | ||
|
|
e85ed5a8e3 | ||
|
|
ad416387c2 | ||
|
|
58d8e7f34f | ||
|
|
bb105b5662 |
2
.github/workflows/sync_crowdin.yml
vendored
2
.github/workflows/sync_crowdin.yml
vendored
@@ -29,7 +29,7 @@ jobs:
|
|||||||
config: crowdin.yml
|
config: crowdin.yml
|
||||||
upload_sources: true
|
upload_sources: true
|
||||||
upload_translations: false
|
upload_translations: false
|
||||||
download_translations: true
|
download_bundle: 16
|
||||||
localization_branch_name: feat/translations
|
localization_branch_name: feat/translations
|
||||||
create_pull_request: true
|
create_pull_request: true
|
||||||
pull_request_title: "chore: Sync translations"
|
pull_request_title: "chore: Sync translations"
|
||||||
|
|||||||
@@ -13,8 +13,8 @@
|
|||||||
<br>
|
<br>
|
||||||
<a href="https://revanced.app/">
|
<a href="https://revanced.app/">
|
||||||
<picture>
|
<picture>
|
||||||
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo-round.svg" />
|
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo.svg" />
|
||||||
<img height="24px" src="assets/revanced-logo/revanced-logo-round.svg" />
|
<img height="24px" src="assets/revanced-logo/revanced-logo.svg" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/ReVanced">
|
<a href="https://github.com/ReVanced">
|
||||||
|
|||||||
@@ -13,8 +13,8 @@
|
|||||||
<br>
|
<br>
|
||||||
<a href="https://revanced.app/">
|
<a href="https://revanced.app/">
|
||||||
<picture>
|
<picture>
|
||||||
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo-round.svg" />
|
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo.svg" />
|
||||||
<img height="24px" src="assets/revanced-logo/revanced-logo-round.svg" />
|
<img height="24px" src="assets/revanced-logo/revanced-logo.svg" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/ReVanced">
|
<a href="https://github.com/ReVanced">
|
||||||
|
|||||||
@@ -13,8 +13,8 @@
|
|||||||
<br>
|
<br>
|
||||||
<a href="https://revanced.app/">
|
<a href="https://revanced.app/">
|
||||||
<picture>
|
<picture>
|
||||||
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo-round.svg" />
|
<source height="24px" media="(prefers-color-scheme: dark)" srcset="assets/revanced-logo/revanced-logo.svg" />
|
||||||
<img height="24px" src="assets/revanced-logo/revanced-logo-round.svg" />
|
<img height="24px" src="assets/revanced-logo/revanced-logo.svg" />
|
||||||
</picture>
|
</picture>
|
||||||
</a>
|
</a>
|
||||||
<a href="https://github.com/ReVanced">
|
<a href="https://github.com/ReVanced">
|
||||||
|
|||||||
@@ -113,8 +113,6 @@ flutter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.22")
|
|
||||||
|
|
||||||
implementation("app.revanced:revanced-patcher:19.3.1")
|
implementation("app.revanced:revanced-patcher:19.3.1")
|
||||||
implementation("app.revanced:revanced-library:2.2.1")
|
implementation("app.revanced:revanced-library:2.2.1")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ pluginManagement {
|
|||||||
plugins {
|
plugins {
|
||||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||||
id "com.android.application" version "8.1.2" apply false
|
id "com.android.application" version "8.1.2" apply false
|
||||||
id "org.jetbrains.kotlin.android" version "1.9.10" apply false
|
id "org.jetbrains.kotlin.android" version "1.9.23" apply false
|
||||||
}
|
}
|
||||||
|
|
||||||
include ":app"
|
include ":app"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 2.8 KiB |
@@ -20,8 +20,9 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: Row(
|
title: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Text(t.settingsView.apiURLLabel),
|
Expanded(
|
||||||
const Spacer(),
|
child: Text(t.settingsView.apiURLLabel),
|
||||||
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.manage_history_outlined),
|
icon: const Icon(Icons.manage_history_outlined),
|
||||||
onPressed: () => showApiUrlResetDialog(context),
|
onPressed: () => showApiUrlResetDialog(context),
|
||||||
|
|||||||
@@ -21,8 +21,9 @@ class SManageKeystorePassword extends BaseViewModel {
|
|||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: Row(
|
title: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Text(t.settingsView.selectKeystorePassword),
|
Expanded(
|
||||||
const Spacer(),
|
child: Text(t.settingsView.selectKeystorePassword),
|
||||||
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.manage_history_outlined),
|
icon: const Icon(Icons.manage_history_outlined),
|
||||||
onPressed: () => _keystorePasswordController.text =
|
onPressed: () => _keystorePasswordController.text =
|
||||||
|
|||||||
@@ -29,8 +29,9 @@ class SManageSources extends BaseViewModel {
|
|||||||
builder: (context) => AlertDialog(
|
builder: (context) => AlertDialog(
|
||||||
title: Row(
|
title: Row(
|
||||||
children: <Widget>[
|
children: <Widget>[
|
||||||
Text(t.settingsView.sourcesLabel),
|
Expanded(
|
||||||
const Spacer(),
|
child: Text(t.settingsView.sourcesLabel),
|
||||||
|
),
|
||||||
IconButton(
|
IconButton(
|
||||||
icon: const Icon(Icons.manage_history_outlined),
|
icon: const Icon(Icons.manage_history_outlined),
|
||||||
onPressed: () => showResetConfirmationDialog(context),
|
onPressed: () => showResetConfirmationDialog(context),
|
||||||
|
|||||||
@@ -563,10 +563,10 @@ packages:
|
|||||||
dependency: "direct main"
|
dependency: "direct main"
|
||||||
description:
|
description:
|
||||||
name: language_code
|
name: language_code
|
||||||
sha256: cbd50546df7c21857a7cfa35f97943f8759705d0c17f9282593abe654cbbdf38
|
sha256: "3124246f599039a89c990d007b00bc41b1526d6400de97cf13a478b7f4b16a83"
|
||||||
url: "https://pub.dev"
|
url: "https://pub.dev"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "0.4.1"
|
version: "0.4.2"
|
||||||
leak_tracker:
|
leak_tracker:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ homepage: https://github.com/ReVanced/revanced-manager
|
|||||||
|
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
|
|
||||||
version: 1.19.4-dev.2+101800008
|
version: 1.19.4-dev.3+101800009
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=3.0.0 <4.0.0'
|
sdk: '>=3.0.0 <4.0.0'
|
||||||
@@ -41,7 +41,7 @@ dependencies:
|
|||||||
injectable: ^2.1.1
|
injectable: ^2.1.1
|
||||||
intl: ^0.18.0
|
intl: ^0.18.0
|
||||||
json_annotation: ^4.8.1
|
json_annotation: ^4.8.1
|
||||||
language_code: ^0.4.1
|
language_code: ^0.4.2
|
||||||
logcat:
|
logcat:
|
||||||
git:
|
git:
|
||||||
url: https://github.com/BenjaminHalko/logcat
|
url: https://github.com/BenjaminHalko/logcat
|
||||||
|
|||||||
Reference in New Issue
Block a user