From 2dd1f84e9d115b81fe8c228fc679ff528f6c63ea Mon Sep 17 00:00:00 2001 From: Ming Ming Date: Sat, 2 Sep 2023 02:58:48 +0800 Subject: [PATCH] Versioning: 63.0 --- app/lib/k.dart | 4 +-- app/lib/widget/changelog.dart | 2 ++ app/lib/widget/changelog/changelog_630.dart | 32 +++++++++++++++++++++ app/pubspec.yaml | 2 +- 4 files changed, 37 insertions(+), 3 deletions(-) create mode 100644 app/lib/widget/changelog/changelog_630.dart diff --git a/app/lib/k.dart b/app/lib/k.dart index 6894ad53..e8d3846d 100644 --- a/app/lib/k.dart +++ b/app/lib/k.dart @@ -1,6 +1,6 @@ /// Version string shown in settings page -const versionStr = "62.0"; -const version = 620; +const versionStr = "63.0"; +const version = 630; /// 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 2f86c365..6871091f 100644 --- a/app/lib/widget/changelog.dart +++ b/app/lib/widget/changelog.dart @@ -12,6 +12,7 @@ part 'changelog/changelog_580.dart'; part 'changelog/changelog_590.dart'; part 'changelog/changelog_600.dart'; part 'changelog/changelog_610.dart'; +part 'changelog/changelog_630.dart'; class ChangelogArguments { const ChangelogArguments(this.fromVersion); @@ -348,6 +349,7 @@ Widget _subBulletPoint(Widget child) => Row( ); final _changelogs = Function(BuildContext)>{ + 630: (_) => const [_Changelog630()], 610: (_) => const [_Changelog610()], 600: (_) => const [_Changelog600()], 590: (_) => const [_Changelog590()], diff --git a/app/lib/widget/changelog/changelog_630.dart b/app/lib/widget/changelog/changelog_630.dart new file mode 100644 index 00000000..4aa878ec --- /dev/null +++ b/app/lib/widget/changelog/changelog_630.dart @@ -0,0 +1,32 @@ +part of '../changelog.dart'; + +class _Changelog630 extends StatelessWidget { + const _Changelog630(); + + @override + Widget build(BuildContext context) { + return Column( + mainAxisSize: MainAxisSize.min, + crossAxisAlignment: CrossAxisAlignment.start, + children: [ + _subSection("Changes"), + _bulletGroup(const Text("Various UI tweaks and bug fixes")), + _bulletGroup( + const Text("Updated Catalan, German, Italian, Russian, Spanish")), + _sectionPadding(), + _subSection("Contributors"), + _bulletGroup( + const Text("Special thanks to the following contributors \u{1f44f}"), + [ + const Text("Albe"), + const Text("ArnyminerZ"), + const Text("luckkmaxx"), + const Text("Odious"), + const Text("RandomRoot"), + const Text("Sebastian"), + ], + ), + ], + ); + } +} diff --git a/app/pubspec.yaml b/app/pubspec.yaml index 5059ec3f..c89cec75 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.62.0+6200 +version: 1.63.0+6300 environment: sdk: ">=2.17.0 <3.0.0"