2
0
mirror of https://github.com/inventree/inventree-app.git synced 2025-05-05 08:48:55 +00:00
This commit is contained in:
Oliver Walters 2021-05-22 21:13:42 +10:00
parent a7d855defe
commit a415a2cd99
5 changed files with 9 additions and 7 deletions

View File

@ -1,6 +1,11 @@
## InvenTree App Release Notes
---
### 0.1.6 - May 2021
---
### 0.1.5 - May 2021
---

View File

@ -62,7 +62,7 @@ class InvenTreeFileService extends FileService {
class InvenTreeAPI {
// Minimum required API version for server
static const _minApiVersion = 2;
static const _minApiVersion = 3;
// Endpoint for requesting an API token
static const _URL_GET_TOKEN = "user/token/";

@ -1 +1 @@
Subproject commit 8d5f69f355632939c9b6550625066ca779930bfe
Subproject commit 55e409cf7d1200c0e0a30af96ceabd9e67947a97

View File

@ -82,9 +82,6 @@ class ImagePickerField extends FormField<File> {
],
),
);
return ListTile(
title: Text(L10().selectImage),
);
}
);
}

View File

@ -55,7 +55,7 @@ class _StockItemTestResultDisplayState extends RefreshableState<StockItemTestRes
);
showSnackIcon(
success ? "Test result uploaded" : "Could not upload test result",
success ? L10().testResultUploadPass : L10().testResultUploadFail,
success: success
);
@ -70,7 +70,7 @@ class _StockItemTestResultDisplayState extends RefreshableState<StockItemTestRes
String _notes;
File _attachment;
showFormDialog("Add Test Data",
showFormDialog(L10().testResultAdd,
key: _addResultKey,
callback: () {
uploadTestResult(_name, _result, _value, _notes, _attachment);