|
@@ -103,17 +103,6 @@ class _ChangeLogPageState extends State<ChangeLogPage> {
|
|
final scrollController = ScrollController();
|
|
final scrollController = ScrollController();
|
|
final List<ChangeLogEntry> items = [];
|
|
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(
|
|
items.add(
|
|
ChangeLogEntry(
|
|
ChangeLogEntry(
|
|
"Security Audit",
|
|
"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(
|
|
return Container(
|
|
padding: const EdgeInsets.only(left: 16),
|
|
padding: const EdgeInsets.only(left: 16),
|
|
child: Scrollbar(
|
|
child: Scrollbar(
|