From 490d008447b97eaa91e7884336474517e181ef40 Mon Sep 17 00:00:00 2001 From: Oliver Date: Mon, 3 Nov 2025 21:39:48 +1100 Subject: [PATCH] Fix URL for reporting an issue via GitHub (#706) * Fix URL for reporting an issue via GitHub * Format --- assets/release_notes.md | 6 ++++++ lib/settings/about.dart | 3 ++- pubspec.yaml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/assets/release_notes.md b/assets/release_notes.md index 8f5daf99..421f14bb 100644 --- a/assets/release_notes.md +++ b/assets/release_notes.md @@ -1,3 +1,9 @@ +### 0.20.2 - November 2025 +--- + +- Fixes URL for reporting issues on GitHub + + ### 0.20.1 - October 2025 --- diff --git a/lib/settings/about.dart b/lib/settings/about.dart index bc8c3458..fa11eb3b 100644 --- a/lib/settings/about.dart +++ b/lib/settings/about.dart @@ -49,7 +49,8 @@ class InvenTreeAboutWidget extends StatelessWidget { var url = Uri( scheme: "https", host: "github.com", - path: "inventree/inventree-app/issues/new?title=Enter+bug+description", + path: "inventree/inventree-app/issues/new/", + queryParameters: {"title": "Enter bug description"}, ); if (await canLaunchUrl(url)) { diff --git a/pubspec.yaml b/pubspec.yaml index e4100bfb..a6c479e1 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,7 +1,7 @@ name: inventree description: InvenTree stock management -version: 0.20.1+104 +version: 0.20.2+105 environment: sdk: ^3.8.1