From f85db3ca1196949095b33f88a24c321fd0071fa6 Mon Sep 17 00:00:00 2001 From: stopflock Date: Thu, 12 Mar 2026 22:19:21 -0500 Subject: [PATCH] add "report osm map issue" link to info/about page --- assets/changelog.json | 3 ++- lib/screens/about_screen.dart | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/assets/changelog.json b/assets/changelog.json index ff204d3..a7cdf28 100644 --- a/assets/changelog.json +++ b/assets/changelog.json @@ -3,7 +3,8 @@ "content": [ "• Moved 'About OpenStreetMap' section from OSM Account page to Settings > About for better organization", "• Added 'Clear Caches' option to tile provider menus - easily free up storage space by clearing cached tiles for specific providers", - "• Enhanced node deletion workflow - users can now provide an informative reason when deleting surveillance devices" + "• Enhanced node deletion workflow - users can now provide an informative reason when deleting surveillance devices", + "• Added 'Report issue with OSM base map' link in About screen help section - easily report issues with the underlying OpenStreetMap data" ] }, "2.9.1": { diff --git a/lib/screens/about_screen.dart b/lib/screens/about_screen.dart index eae176c..94e0fef 100644 --- a/lib/screens/about_screen.dart +++ b/lib/screens/about_screen.dart @@ -99,6 +99,8 @@ class AboutScreen extends StatelessWidget { const SizedBox(height: 8), _buildLinkText(context, 'Privacy Policy', 'https://deflock.me/privacy'), const SizedBox(height: 8), + _buildLinkText(context, 'Report issue with OSM base map', 'https://www.openstreetmap.org/fixthemap'), + const SizedBox(height: 8), _buildLinkText(context, 'DeFlock Discord', 'https://discord.gg/aV7v4R3sKT'), const SizedBox(height: 8), _buildLinkText(context, 'Source Code', 'https://github.com/FoggedLens/deflock-app'),