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'),