This commit is contained in:
Ming Ming 2024-09-27 01:19:17 +08:00
parent 6f24b53e4f
commit 9f79aaa707
4 changed files with 38 additions and 3 deletions

View file

@ -1,8 +1,8 @@
import 'package:flutter/material.dart';
/// Version string shown in settings page
const versionStr = "68.0";
const version = 680;
const versionStr = "69.0";
const version = 690;
/// Show a snack bar for a short amount of time
const snackBarDurationShort = Duration(seconds: 4);

View file

@ -20,6 +20,7 @@ part 'changelog/changelog_662.dart';
part 'changelog/changelog_663.dart';
part 'changelog/changelog_670.dart';
part 'changelog/changelog_680.dart';
part 'changelog/changelog_690.dart';
class ChangelogArguments {
const ChangelogArguments(this.fromVersion);
@ -356,6 +357,7 @@ Widget _subBulletPoint(Widget child) => Row(
);
final _changelogs = <int, List<Widget> Function(BuildContext)>{
690: (_) => const [_Changelog690()],
680: (_) => const [_Changelog680()],
670: (_) => const [_Changelog670()],
663: (_) => const [_Changelog663()],

View 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"),
],
),
],
);
}
}

View file

@ -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.68.0+6800
version: 1.69.0+6900
environment:
sdk: ">=3.4.0 <4.0.0"