diff --git a/app/lib/k.dart b/app/lib/k.dart index 6372723c..32afd561 100644 --- a/app/lib/k.dart +++ b/app/lib/k.dart @@ -1,6 +1,6 @@ /// Version string shown in settings page -const versionStr = "52.0"; -const version = 520; +const versionStr = "53.0"; +const version = 530; /// Show a snack bar for a short amount of time const snackBarDurationShort = Duration(seconds: 4); diff --git a/app/lib/widget/changelog.dart b/app/lib/widget/changelog.dart index a82a9c68..f6b7c66b 100644 --- a/app/lib/widget/changelog.dart +++ b/app/lib/widget/changelog.dart @@ -213,6 +213,24 @@ List _buildChangelog520(BuildContext context) { ]; } +List _buildChangelog530(BuildContext context) { + return [ + _subSection("Changes"), + _bulletGroup( + const Text("New enhancement: auto retouch"), + [ + const Text( + "Automatically retouch your photos, improve color and vibrance"), + ], + ), + _bulletGroup(const Text( + "A redesigned enhancement page that is more informative and beautiful")), + _sectionPadding(), + _subSection("Localization"), + _bulletGroup(const Text("Updated Spanish (by luckkmaxx)")), + ]; +} + List _buildChangelogCompat(BuildContext context, int majorVersion) { var change = _oldChangelogs[majorVersion - 1]; if (change != null) { @@ -269,6 +287,7 @@ Widget _subBulletPoint(Widget child) => Row( ); final _changelogs = Function(BuildContext)>{ + 530: _buildChangelog530, 520: _buildChangelog520, 510: _buildChangelog510, 500: _buildChangelog500, diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 6f86ad15..1871c5f3 100644 --- a/app/pubspec.yaml +++ b/app/pubspec.yaml @@ -15,7 +15,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 1.52.0+5200 +version: 1.53.0+5300 environment: sdk: ">=2.17.0 <3.0.0"