mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 17:26:18 +01:00
29 lines
866 B
Dart
29 lines
866 B
Dart
|
part of '../changelog.dart';
|
||
|
|
||
|
class _Changelog590 extends StatelessWidget {
|
||
|
const _Changelog590();
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Column(
|
||
|
mainAxisSize: MainAxisSize.min,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
_subSection("Changes"),
|
||
|
_bulletGroup(
|
||
|
const Text("Now support Nextcloud 25 album"),
|
||
|
[
|
||
|
const Text(
|
||
|
"Collaborative album is NOT yet supported. It will be added in future updates"),
|
||
|
],
|
||
|
),
|
||
|
_bulletGroup(const Text(
|
||
|
"Collections code were largely rewritten. If you encountered any bugs, please report them via Settings > Report issue")),
|
||
|
_sectionPadding(),
|
||
|
_subSection("Localization"),
|
||
|
_bulletGroup(const Text("Updated Finnish (by pHamala)")),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|