summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/config/defaults.dart2
-rw-r--r--lib/pages/navigation_page.dart2
-rw-r--r--lib/services/storegear_api_service.dart6
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/config/defaults.dart b/lib/config/defaults.dart
index f0a5919..74549bb 100644
--- a/lib/config/defaults.dart
+++ b/lib/config/defaults.dart
@@ -1,4 +1,4 @@
-String program_version = '1.2 [30/07/2023]';
+String program_version = '1.23.1 [3/4/2024]';
bool debug_mode = false;
class ShiftType {
diff --git a/lib/pages/navigation_page.dart b/lib/pages/navigation_page.dart
index 7c7bcd7..0f8b454 100644
--- a/lib/pages/navigation_page.dart
+++ b/lib/pages/navigation_page.dart
@@ -136,7 +136,7 @@ class _NavigationPageState extends State<NavigationPage> {
@override
Widget build(BuildContext context) {
if (navigation == null) {
- navigation = OpenstreetmapNavigation(route: widget.route);
+ navigation = HERENavigation(route: widget.route);
}
return WillPopScope(
diff --git a/lib/services/storegear_api_service.dart b/lib/services/storegear_api_service.dart
index a37e1d7..57520cc 100644
--- a/lib/services/storegear_api_service.dart
+++ b/lib/services/storegear_api_service.dart
@@ -23,7 +23,7 @@ class StoregearApiService extends IStoregearApiService {
}
final response = await http.post(
- Uri.parse('http://dhlapis.com/delivery/v1/users/login?env_type=PROD'),
+ Uri.parse('https://storegear-app.dhlparcel.nl/delivery/v1/users/login?env_type=PROD'),
headers: {'X-REQ-UUID': Uuid().v1()},
body: jsonEncode(req));
@@ -58,7 +58,7 @@ class StoregearApiService extends IStoregearApiService {
}
final response = await http.get(
- Uri.parse('http://dhlapis.com/delivery/v1/routes'),
+ Uri.parse('https://storegear-app.dhlparcel.nl/delivery/v1/routes'),
headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()});
try {
@@ -89,7 +89,7 @@ class StoregearApiService extends IStoregearApiService {
final response = await http.get(
Uri.parse(
- 'http://dhlapis.com/delivery/v1/routes/' + tripkey.toString()),
+ 'https://storegear-app.dhlparcel.nl/delivery/v1/routes/' + tripkey.toString()),
headers: {'X-API-KEY': apiKey, 'X-REQ-UUID': Uuid().v1()});
try {