mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
66.2
This commit is contained in:
parent
2a595d19c4
commit
f554bc212a
4 changed files with 32 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
/// Version string shown in settings page
|
/// Version string shown in settings page
|
||||||
const versionStr = "66.1";
|
const versionStr = "66.2";
|
||||||
const version = 661;
|
const version = 662;
|
||||||
|
|
||||||
/// 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);
|
||||||
|
|
|
@ -16,6 +16,7 @@ part 'changelog/changelog_630.dart';
|
||||||
part 'changelog/changelog_640.dart';
|
part 'changelog/changelog_640.dart';
|
||||||
part 'changelog/changelog_650.dart';
|
part 'changelog/changelog_650.dart';
|
||||||
part 'changelog/changelog_660.dart';
|
part 'changelog/changelog_660.dart';
|
||||||
|
part 'changelog/changelog_662.dart';
|
||||||
|
|
||||||
class ChangelogArguments {
|
class ChangelogArguments {
|
||||||
const ChangelogArguments(this.fromVersion);
|
const ChangelogArguments(this.fromVersion);
|
||||||
|
@ -352,6 +353,7 @@ Widget _subBulletPoint(Widget child) => Row(
|
||||||
);
|
);
|
||||||
|
|
||||||
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
||||||
|
662: (_) => const [_Changelog662()],
|
||||||
660: (_) => const [_Changelog660()],
|
660: (_) => const [_Changelog660()],
|
||||||
650: (_) => const [_Changelog650()],
|
650: (_) => const [_Changelog650()],
|
||||||
640: (_) => const [_Changelog640()],
|
640: (_) => const [_Changelog640()],
|
||||||
|
|
27
app/lib/widget/changelog/changelog_662.dart
Normal file
27
app/lib/widget/changelog/changelog_662.dart
Normal 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("老兄"),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
|
@ -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.66.1+6610
|
version: 1.66.2+6620
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.2.0 <4.0.0"
|
sdk: ">=3.2.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue