mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-15 06:06:44 +02:00
Compare commits
2 Commits
v0.10.2-be
...
v0.10.3-be
Author | SHA1 | Date | |
---|---|---|---|
1494bcd013 | |||
3457a0a12f |
@ -99,8 +99,8 @@ class Codeberg extends AppSource {
|
|||||||
if (releases[i]['draft'] == true) {
|
if (releases[i]['draft'] == true) {
|
||||||
// Draft releases not supported
|
// Draft releases not supported
|
||||||
}
|
}
|
||||||
var nameToFilter = releases[i]['name'] as String;
|
var nameToFilter = releases[i]['name'] as String?;
|
||||||
if (nameToFilter.trim().isEmpty) {
|
if (nameToFilter == null || nameToFilter.trim().isEmpty) {
|
||||||
// Some leave titles empty so tag is used
|
// Some leave titles empty so tag is used
|
||||||
nameToFilter = releases[i]['tag_name'] as String;
|
nameToFilter = releases[i]['tag_name'] as String;
|
||||||
}
|
}
|
||||||
|
@ -141,8 +141,8 @@ class GitHub extends AppSource {
|
|||||||
if (!includePrereleases && releases[i]['prerelease'] == true) {
|
if (!includePrereleases && releases[i]['prerelease'] == true) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var nameToFilter = releases[i]['name'] as String;
|
var nameToFilter = releases[i]['name'] as String?;
|
||||||
if (nameToFilter.trim().isEmpty) {
|
if (nameToFilter == null || nameToFilter.trim().isEmpty) {
|
||||||
// Some leave titles empty so tag is used
|
// Some leave titles empty so tag is used
|
||||||
nameToFilter = releases[i]['tag_name'] as String;
|
nameToFilter = releases[i]['tag_name'] as String;
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart';
|
|||||||
// ignore: implementation_imports
|
// ignore: implementation_imports
|
||||||
import 'package:easy_localization/src/localization.dart';
|
import 'package:easy_localization/src/localization.dart';
|
||||||
|
|
||||||
const String currentVersion = '0.10.2';
|
const String currentVersion = '0.10.3';
|
||||||
const String currentReleaseTag =
|
const String currentReleaseTag =
|
||||||
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES
|
'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ packages:
|
|||||||
name: args
|
name: args
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.3.1"
|
version: "2.3.2"
|
||||||
async:
|
async:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -321,7 +321,7 @@ packages:
|
|||||||
name: json_annotation
|
name: json_annotation
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "4.7.0"
|
version: "4.8.0"
|
||||||
lints:
|
lints:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
@ -739,7 +739,7 @@ packages:
|
|||||||
name: webview_flutter_android
|
name: webview_flutter_android
|
||||||
url: "https://pub.dartlang.org"
|
url: "https://pub.dartlang.org"
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "3.1.3"
|
version: "3.2.0"
|
||||||
webview_flutter_platform_interface:
|
webview_flutter_platform_interface:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 0.10.2+108 # When changing this, update the tag in main() accordingly
|
version: 0.10.3+109 # When changing this, update the tag in main() accordingly
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: '>=2.18.2 <3.0.0'
|
sdk: '>=2.18.2 <3.0.0'
|
||||||
|
Reference in New Issue
Block a user