Merge branch 'dev' into feat/patch-history

# Conflicts:
#	lib/models/patch.dart
#	lib/services/patcher_api.dart
#	pubspec.yaml
This commit is contained in:
oSumAtrIX 2023-11-05 21:55:17 +01:00
commit 36572abaea
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
2 changed files with 8 additions and 5 deletions

View File

@ -73,11 +73,14 @@ class Option {
static void _migrateV17ToV19(Map<String, dynamic> json) {
if (json['valueType'] == null) {
json['valueType'] = json['optionClassType']
.replace('PatchOption', '')
.replace('List', 'Array');
final type = json['optionClassType'];
if (type is String) {
json['valueType'] = type
.replaceAll('PatchOption', '')
.replaceAll('List', 'Array');
json['optionClassType'] = null;
json['optionClassType'] = null;
}
}
}

View File

@ -4,7 +4,7 @@ homepage: https://github.com/revanced/revanced-manager
publish_to: 'none'
version: 1.14.2+101400200
version: 1.15.1+101500100
environment:
sdk: '>=3.0.0 <4.0.0'