Flip change log entries order

This commit is contained in:
Neeraj Gupta 2023-04-16 12:30:05 +05:30
parent db18a1a0e2
commit e7fb26162e
No known key found for this signature in database
GPG key ID: 3C5A1684DC1729E1

View file

@ -103,17 +103,6 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
final scrollController = ScrollController();
final List<ChangeLogEntry> items = [];
items.add(
ChangeLogEntry(
"Location tags",
"This release includes a fresh, beautiful, privacy-friendly way to "
"search through your photos by location!\n\nTag a photo with a "
"location, define a radius, and ente will automatically cluster "
"all photos clicked within that area.\n\nOpen a photo, and click on"
" the Info button to get started!",
),
);
items.add(
ChangeLogEntry(
"Security Audit",
@ -126,6 +115,17 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
),
);
items.add(
ChangeLogEntry(
"Location tags",
"This release includes a fresh, beautiful, privacy-friendly way to "
"search through your photos by location!\n\nTag a photo with a "
"location, define a radius, and ente will automatically cluster "
"all photos clicked within that area.\n\nOpen a photo, and click on"
" the Info button to get started!",
),
);
return Container(
padding: const EdgeInsets.only(left: 16),
child: Scrollbar(