From 2d4f9f33b791790a46b26aea872b60636d617755 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Sat, 16 Oct 2021 13:17:18 +1100 Subject: [PATCH] 0.5.1 Possible bug fix for app launch error --- assets/release_notes.md | 5 +++++ lib/main.dart | 2 +- pubspec.yaml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/assets/release_notes.md b/assets/release_notes.md index 634c0e22..5813bc36 100644 --- a/assets/release_notes.md +++ b/assets/release_notes.md @@ -1,6 +1,11 @@ ## InvenTree App Release Notes --- +### 0.5.1 - October 2021 +--- + +- Bug fix for app title + ### 0.5.0 - October 2021 --- diff --git a/lib/main.dart b/lib/main.dart index 50561cbe..cb008ac4 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -61,7 +61,7 @@ class InvenTreeApp extends StatelessWidget { debugShowCheckedModeBanner: false, builder: OneContext().builder, navigatorKey: OneContext().key, - onGenerateTitle: (BuildContext context) => I18N.of(context)!.appTitle, + onGenerateTitle: (BuildContext context) => "InvenTree", theme: ThemeData( primarySwatch: Colors.lightBlue, secondaryHeaderColor: Colors.blueGrey, diff --git a/pubspec.yaml b/pubspec.yaml index 78e0cfd7..b0856e02 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -7,7 +7,7 @@ description: InvenTree stock management # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. # Read more about iOS versioning at # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html -version: 0.5.0+29 +version: 0.5.1+30 environment: sdk: ">=2.12.0 <3.0.0"