From 1909a3b5f17e607070c23df940e7b47b14648194 Mon Sep 17 00:00:00 2001 From: stopflock Date: Tue, 4 Aug 2026 11:56:29 -0500 Subject: [PATCH] version, changelog, enable dev modes --- assets/changelog.json | 8 ++++++++ lib/dev_config.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/assets/changelog.json b/assets/changelog.json index 0299524..2e09f75 100644 --- a/assets/changelog.json +++ b/assets/changelog.json @@ -1,4 +1,12 @@ { + "2.11.0": { + "content": [ + "• Further improve node loading performance", + "• Fix node constrainment when part of a way/relation", + "• Show submission status in details sheet", + "• Fix profile import links not opening" + ] + }, "2.10.5": { "content": [ "• Make node tags selectable / copyable", diff --git a/lib/dev_config.dart b/lib/dev_config.dart index 8a30769..5e0050b 100644 --- a/lib/dev_config.dart +++ b/lib/dev_config.dart @@ -78,7 +78,7 @@ const Duration kOverpassQueryTimeout = Duration(seconds: 45); // Timeout for Ove const String kSuspectedLocationsCsvUrl = 'https://alprwatch.org/suspected-locations/deflock-latest.csv'; // Development/testing features - set to false for production builds -const bool kEnableDevelopmentModes = false; // Set to false to hide sandbox/simulate modes and force production mode +const bool kEnableDevelopmentModes = true; // Set to false to hide sandbox/simulate modes and force production mode // Navigation features - set to false to hide navigation UI elements while in development const bool kEnableNavigationFeatures = true; // Hide navigation until fully implemented diff --git a/pubspec.yaml b/pubspec.yaml index 750f5e3..d25567f 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: deflockapp description: Map public surveillance infrastructure with OpenStreetMap publish_to: "none" -version: 2.10.5+60 # The thing after the + is the version code, incremented with each release +version: 2.11.0+61 # The thing after the + is the version code, incremented with each release environment: sdk: ">=3.10.3 <4.0.0" # Resolved dependency floor (Dart 3.10.3 = Flutter 3.38+)