Versioning: 43.0

This commit is contained in:
Ming Ming 2022-05-21 19:44:30 +08:00
parent 9d51b2d40e
commit b0f1f013ba
3 changed files with 12 additions and 3 deletions

View file

@ -186,5 +186,14 @@ Features:
// v42
"""42.0
- Add tweakable parameters to low-light enhancement and portrait blur
""",
// v43
"""43.0
- (Android) Photo enhancements now implemented in C++:
- Better performance
- Less restrictions on RAM usage
- (Android) New photo enhancement algorithms:
- Super-resolution (upscale image to 4x)
- (Localization) Update Finnish (by pHamala)
""",
];

View file

@ -1,6 +1,6 @@
/// Version string shown in settings page
const versionStr = "42.0";
const version = 420;
const versionStr = "43.0";
const version = 430;
/// Show a snack bar for a short amount of time
const snackBarDurationShort = Duration(seconds: 4);

View file

@ -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.42.0+4200
version: 1.43.0+4300
environment:
sdk: ">=2.16.0 <3.0.0"