This commit is contained in:
Ming Ming 2024-06-12 21:39:34 +08:00
parent 2a595d19c4
commit f554bc212a
4 changed files with 32 additions and 3 deletions

View file

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

View file

@ -16,6 +16,7 @@ part 'changelog/changelog_630.dart';
part 'changelog/changelog_640.dart';
part 'changelog/changelog_650.dart';
part 'changelog/changelog_660.dart';
part 'changelog/changelog_662.dart';
class ChangelogArguments {
const ChangelogArguments(this.fromVersion);
@ -352,6 +353,7 @@ Widget _subBulletPoint(Widget child) => Row(
);
final _changelogs = <int, List<Widget> Function(BuildContext)>{
662: (_) => const [_Changelog662()],
660: (_) => const [_Changelog660()],
650: (_) => const [_Changelog650()],
640: (_) => const [_Changelog640()],

View file

@ -0,0 +1,27 @@
part of '../changelog.dart';
class _Changelog662 extends StatelessWidget {
const _Changelog662();
@override
Widget build(BuildContext context) {
return Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
_subSection("Changes"),
_bulletGroup(const Text("Fixed not being able to set a biometric app lock with password fallback")),
_bulletGroup(const Text("Updated Chinese (Simplified), Turkish")),
_sectionPadding(),
_subSection("Contributors"),
_bulletGroup(
const Text("Special thanks to the following contributors \u{1f44f}"),
[
const Text("aliyasiny65"),
const Text("老兄"),
],
),
],
);
}
}

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.66.1+6610
version: 1.66.2+6620
environment:
sdk: ">=3.2.0 <4.0.0"