mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-27 21:16:48 +00:00
v0.1.2
- Update release notes - Update build number
This commit is contained in:
parent
90a74fec16
commit
613dd388b6
@ -1,3 +1,8 @@
|
||||
## 0.1.2 - February 2021
|
||||
---
|
||||
|
||||
- Fixes bug which caused blank screen when opening barcode scanner
|
||||
|
||||
## 0.1.1 - February 2021
|
||||
---
|
||||
|
||||
|
@ -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"
|
||||
|
@ -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(),
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
@ -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"
|
||||
|
Loading…
x
Reference in New Issue
Block a user