mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 05:26:47 +00:00
v0.2.7 - Update release notes
This commit is contained in:
parent
b50d83f5f3
commit
fad7840c5c
@ -1,6 +1,11 @@
|
|||||||
## InvenTree App Release Notes
|
## InvenTree App Release Notes
|
||||||
---
|
---
|
||||||
|
|
||||||
|
### 0.2.7 - July 2021
|
||||||
|
---
|
||||||
|
|
||||||
|
- Fixed errors in error-handling code
|
||||||
|
|
||||||
### 0.2.6 - July 2021
|
### 0.2.6 - July 2021
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ export "COCOAPODS_PARALLEL_CODE_SIGN=true"
|
|||||||
export "FLUTTER_TARGET=lib\main.dart"
|
export "FLUTTER_TARGET=lib\main.dart"
|
||||||
export "FLUTTER_BUILD_DIR=build"
|
export "FLUTTER_BUILD_DIR=build"
|
||||||
export "SYMROOT=${SOURCE_ROOT}/../build\ios"
|
export "SYMROOT=${SOURCE_ROOT}/../build\ios"
|
||||||
export "FLUTTER_BUILD_NAME=0.2.6"
|
export "FLUTTER_BUILD_NAME=0.2.7"
|
||||||
export "FLUTTER_BUILD_NUMBER=14"
|
export "FLUTTER_BUILD_NUMBER=15"
|
||||||
export "DART_OBFUSCATION=false"
|
export "DART_OBFUSCATION=false"
|
||||||
export "TRACK_WIDGET_CREATION=false"
|
export "TRACK_WIDGET_CREATION=false"
|
||||||
export "TREE_SHAKE_ICONS=false"
|
export "TREE_SHAKE_ICONS=false"
|
||||||
|
@ -765,10 +765,6 @@ class InvenTreeAPI {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (request == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Set connection headers
|
// Set connection headers
|
||||||
request.headers.set(HttpHeaders.contentTypeHeader, 'application/json');
|
request.headers.set(HttpHeaders.contentTypeHeader, 'application/json');
|
||||||
request.headers.set(HttpHeaders.authorizationHeader, _authorizationHeader());
|
request.headers.set(HttpHeaders.authorizationHeader, _authorizationHeader());
|
||||||
@ -776,7 +772,6 @@ class InvenTreeAPI {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
HttpClientResponse response = await request.close().timeout(Duration(seconds: 10));
|
HttpClientResponse response = await request.close().timeout(Duration(seconds: 10));
|
||||||
|
|
||||||
return response;
|
return response;
|
||||||
|
|
||||||
} on TimeoutException catch (error) {
|
} on TimeoutException catch (error) {
|
||||||
|
@ -7,7 +7,7 @@ description: InvenTree stock management
|
|||||||
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
|
||||||
# Read more about iOS versioning at
|
# Read more about iOS versioning at
|
||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
version: 0.2.6+14
|
version: 0.2.7+15
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.12.0 <3.0.0"
|
sdk: ">=2.12.0 <3.0.0"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user