From 613dd388b6dfb80898db47daf1fdaf9fef986b51 Mon Sep 17 00:00:00 2001 From: Oliver Walters Date: Thu, 25 Feb 2021 19:58:07 +1100 Subject: [PATCH] v0.1.2 - Update release notes - Update build number --- assets/release_notes.md | 5 ++++ ios/Flutter/flutter_export_environment.sh | 4 ++-- lib/settings/about.dart | 28 ++++++++--------------- pubspec.yaml | 2 +- 4 files changed, 17 insertions(+), 22 deletions(-) diff --git a/assets/release_notes.md b/assets/release_notes.md index 5465b614..bd866f85 100644 --- a/assets/release_notes.md +++ b/assets/release_notes.md @@ -1,3 +1,8 @@ +## 0.1.2 - February 2021 +--- + +- Fixes bug which caused blank screen when opening barcode scanner + ## 0.1.1 - February 2021 --- diff --git a/ios/Flutter/flutter_export_environment.sh b/ios/Flutter/flutter_export_environment.sh index 5e0b8351..971c7507 100644 --- a/ios/Flutter/flutter_export_environment.sh +++ b/ios/Flutter/flutter_export_environment.sh @@ -7,8 +7,8 @@ export "FLUTTER_BUILD_DIR=build" export "SYMROOT=${SOURCE_ROOT}/../build\ios" export "OTHER_LDFLAGS=$(inherited) -framework Flutter" export "FLUTTER_FRAMEWORK_DIR=C:\flutter\bin\cache\artifacts\engine\ios" -export "FLUTTER_BUILD_NAME=0.1.1" -export "FLUTTER_BUILD_NUMBER=5" +export "FLUTTER_BUILD_NAME=0.1.2" +export "FLUTTER_BUILD_NUMBER=6" export "DART_OBFUSCATION=false" export "TRACK_WIDGET_CREATION=false" export "TREE_SHAKE_ICONS=false" diff --git a/lib/settings/about.dart b/lib/settings/about.dart index 6d1314fa..6cde69ad 100644 --- a/lib/settings/about.dart +++ b/lib/settings/about.dart @@ -114,26 +114,16 @@ class InvenTreeAboutWidget extends StatelessWidget { ) ); - // TODO: Do we really need build number? - /* - tiles.add( - ListTile( - title: Text(I18N.of(context).build), - subtitle: Text("${info.buildNumber}"), + return Scaffold( + appBar: AppBar( + title: Text(I18N.of(context).appAbout), + ), + body: ListView( + children: ListTile.divideTiles( + context: context, + tiles: tiles, + ).toList(), ) ); - */ - - return Scaffold( - appBar: AppBar( - title: Text(I18N.of(context).appAbout), - ), - body: ListView( - children: ListTile.divideTiles( - context: context, - tiles: tiles, - ).toList(), - ) - ); } } \ No newline at end of file diff --git a/pubspec.yaml b/pubspec.yaml index fe823e78..5ebee8db 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.1.1+5 +version: 0.1.2+6 environment: sdk: ">=2.1.0 <3.0.0"