mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
38 lines
1.1 KiB
Dart
38 lines
1.1 KiB
Dart
|
part of '../changelog.dart';
|
||
|
|
||
|
class _Changelog560 extends StatelessWidget {
|
||
|
const _Changelog560();
|
||
|
|
||
|
@override
|
||
|
Widget build(BuildContext context) {
|
||
|
return Column(
|
||
|
mainAxisSize: MainAxisSize.min,
|
||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||
|
children: [
|
||
|
_subSection("Changes"),
|
||
|
_bulletGroup(
|
||
|
const Text(
|
||
|
"Fixed files moved on server are sometimes not indexed by the app"),
|
||
|
[
|
||
|
const Text.rich(TextSpan(
|
||
|
children: [
|
||
|
TextSpan(
|
||
|
text:
|
||
|
"If you were affected by this, please clear the corrupted local database in "),
|
||
|
TextSpan(
|
||
|
text: "Settings > Advanced > Clear file database",
|
||
|
style: TextStyle(
|
||
|
fontStyle: FontStyle.italic,
|
||
|
fontWeight: FontWeight.bold,
|
||
|
),
|
||
|
),
|
||
|
],
|
||
|
)),
|
||
|
],
|
||
|
),
|
||
|
_bulletGroup(const Text("Added a loop button to the video player")),
|
||
|
],
|
||
|
);
|
||
|
}
|
||
|
}
|