mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
Versioning: 63.0
This commit is contained in:
parent
548fa540b4
commit
2dd1f84e9d
4 changed files with 37 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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 = <int, List<Widget> Function(BuildContext)>{
|
||||
630: (_) => const [_Changelog630()],
|
||||
610: (_) => const [_Changelog610()],
|
||||
600: (_) => const [_Changelog600()],
|
||||
590: (_) => const [_Changelog590()],
|
||||
|
|
32
app/lib/widget/changelog/changelog_630.dart
Normal file
32
app/lib/widget/changelog/changelog_630.dart
Normal file
|
@ -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"),
|
||||
],
|
||||
),
|
||||
],
|
||||
);
|
||||
}
|
||||
}
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue