mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-25 00:14:42 +01:00
69.0
This commit is contained in:
parent
6f24b53e4f
commit
9f79aaa707
4 changed files with 38 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 = "68.0";
|
const versionStr = "69.0";
|
||||||
const version = 680;
|
const version = 690;
|
||||||
|
|
||||||
/// 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);
|
||||||
|
|
|
@ -20,6 +20,7 @@ part 'changelog/changelog_662.dart';
|
||||||
part 'changelog/changelog_663.dart';
|
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';
|
||||||
|
|
||||||
class ChangelogArguments {
|
class ChangelogArguments {
|
||||||
const ChangelogArguments(this.fromVersion);
|
const ChangelogArguments(this.fromVersion);
|
||||||
|
@ -356,6 +357,7 @@ Widget _subBulletPoint(Widget child) => Row(
|
||||||
);
|
);
|
||||||
|
|
||||||
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
final _changelogs = <int, List<Widget> Function(BuildContext)>{
|
||||||
|
690: (_) => const [_Changelog690()],
|
||||||
680: (_) => const [_Changelog680()],
|
680: (_) => const [_Changelog680()],
|
||||||
670: (_) => const [_Changelog670()],
|
670: (_) => const [_Changelog670()],
|
||||||
663: (_) => const [_Changelog663()],
|
663: (_) => const [_Changelog663()],
|
||||||
|
|
33
app/lib/widget/changelog/changelog_690.dart
Normal file
33
app/lib/widget/changelog/changelog_690.dart
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
part of '../changelog.dart';
|
||||||
|
|
||||||
|
class _Changelog690 extends StatelessWidget {
|
||||||
|
const _Changelog690();
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
_subSection("Changes"),
|
||||||
|
_bulletGroup(const Text(
|
||||||
|
"Fixed removing photos from server side album would instead delete it")),
|
||||||
|
_bulletGroup(const Text("Improved OSM map UI/UX")),
|
||||||
|
_bulletGroup(const Text(
|
||||||
|
"Fixed Pixel live photos taken with JPG+RAW not playing properly")),
|
||||||
|
_bulletGroup(const Text("Updated Czech, German, Spanish, Turkish")),
|
||||||
|
_sectionPadding(),
|
||||||
|
_subSection("Contributors"),
|
||||||
|
_bulletGroup(
|
||||||
|
const Text("Special thanks to the following contributors \u{1f44f}"),
|
||||||
|
[
|
||||||
|
const Text("Ali Yasin Yeşilyaprak"),
|
||||||
|
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.68.0+6800
|
version: 1.69.0+6900
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.4.0 <4.0.0"
|
sdk: ">=3.4.0 <4.0.0"
|
||||||
|
|
Loading…
Add table
Reference in a new issue