mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
70.0
This commit is contained in:
parent
c19faa47a0
commit
e3370bd26e
4 changed files with 32 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
|
||||||
/// Version string shown in settings page
|
/// Version string shown in settings page
|
||||||
const versionStr = "69.1";
|
const versionStr = "70.0";
|
||||||
const version = 691;
|
const version = 700;
|
||||||
|
|
||||||
/// Show a snack bar for a short amount of time
|
/// Show a snack bar for a short amount of time
|
||||||
const snackBarDurationShort = Duration(seconds: 4);
|
const snackBarDurationShort = Duration(seconds: 4);
|
||||||
|
|
|
@ -21,6 +21,7 @@ part 'changelog/changelog_663.dart';
|
||||||
part 'changelog/changelog_670.dart';
|
part 'changelog/changelog_670.dart';
|
||||||
part 'changelog/changelog_680.dart';
|
part 'changelog/changelog_680.dart';
|
||||||
part 'changelog/changelog_690.dart';
|
part 'changelog/changelog_690.dart';
|
||||||
|
part 'changelog/changelog_700.dart';
|
||||||
|
|
||||||
class ChangelogArguments {
|
class ChangelogArguments {
|
||||||
const ChangelogArguments(this.fromVersion);
|
const ChangelogArguments(this.fromVersion);
|
||||||
|
@ -357,6 +358,7 @@ Widget _subBulletPoint(Widget child) => Row(
|
||||||
);
|
);
|
||||||
|
|
||||||
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
||||||
|
700: (_) => const [_Changelog700()],
|
||||||
690: (_) => const [_Changelog690()],
|
690: (_) => const [_Changelog690()],
|
||||||
680: (_) => const [_Changelog680()],
|
680: (_) => const [_Changelog680()],
|
||||||
670: (_) => const [_Changelog670()],
|
670: (_) => const [_Changelog670()],
|
||||||
|
|
27
app/lib/widget/changelog/changelog_700.dart
Normal file
27
app/lib/widget/changelog/changelog_700.dart
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
part of '../changelog.dart';
|
||||||
|
|
||||||
|
class _Changelog700 extends StatelessWidget {
|
||||||
|
const _Changelog700();
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
_subSection("Changes"),
|
||||||
|
_bulletGroup(const Text("Updated Czech, German, Spanish")),
|
||||||
|
_sectionPadding(),
|
||||||
|
_subSection("Contributors"),
|
||||||
|
_bulletGroup(
|
||||||
|
const Text("Special thanks to the following contributors \u{1f44f}"),
|
||||||
|
[
|
||||||
|
const Text("Fjuro"),
|
||||||
|
const Text("luckkmaxx"),
|
||||||
|
const Text("Niclas Heinz"),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -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.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 1.69.1+6910
|
version: 1.70.0+7000
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.4.0 <4.0.0"
|
sdk: ">=3.4.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue