Преглед изворни кода

Flip change log entries order

Neeraj Gupta пре 2 година
родитељ
комит
e7fb26162e
1 измењених фајлова са 11 додато и 11 уклоњено
  1. 11 11
      lib/ui/notification/update/change_log_page.dart

+ 11 - 11
lib/ui/notification/update/change_log_page.dart

@@ -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(