Compare commits

..

6 Commits

Author SHA1 Message Date
semantic-release-bot
2d19f36901 chore(release): 1.19.4-dev.3 [skip ci]
## [1.19.4-dev.3](https://github.com/ReVanced/revanced-manager/compare/v1.19.4-dev.2...v1.19.4-dev.3) (2024-03-28)

### Bug Fixes

* Replace Spacer with Expanded to avoid overflow ([#1791](https://github.com/ReVanced/revanced-manager/issues/1791)) ([6f70a07](6f70a07970))
2024-03-28 04:45:28 +00:00
Pun Butrach
6f70a07970 fix: Replace Spacer with Expanded to avoid overflow (#1791) 2024-03-28 11:38:07 +07:00
Pun Butrach
e85ed5a8e3 build: Bump language_code to v0.4.2
This fix #1714 regarding country name of es-AR (Argentina) does not exist.

Signed-off-by: Pun Butrach <pun.butrach@gmail.com>
2024-03-28 04:06:52 +00:00
Ushie
ad416387c2 ci(Crowdin): Specify bundle to download 2024-03-28 02:02:55 +03:00
kitadai31
58d8e7f34f build: Bump dependencies (#1796) 2024-03-27 13:46:37 +01:00
Pun Butrach
bb105b5662 chore(Branding): Update ReVanced Logo name (#1794) 2024-03-27 17:33:42 +07:00
12 changed files with 22 additions and 21 deletions

View File

@@ -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"

View File

@@ -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>&nbsp;&nbsp;&nbsp; </a>&nbsp;&nbsp;&nbsp;
<a href="https://github.com/ReVanced"> <a href="https://github.com/ReVanced">

View File

@@ -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>&nbsp;&nbsp;&nbsp; </a>&nbsp;&nbsp;&nbsp;
<a href="https://github.com/ReVanced"> <a href="https://github.com/ReVanced">

View File

@@ -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>&nbsp;&nbsp;&nbsp; </a>&nbsp;&nbsp;&nbsp;
<a href="https://github.com/ReVanced"> <a href="https://github.com/ReVanced">

View File

@@ -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")
} }

View File

@@ -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"

View File

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View File

@@ -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),

View File

@@ -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 =

View File

@@ -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),

View File

@@ -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:

View File

@@ -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