mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 20:46:52 +03:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f42e9c71f2 | ||
|
|
00be21f9e1 | ||
|
|
c694d9f363 |
14
.github/workflows/build.yaml
vendored
14
.github/workflows/build.yaml
vendored
@@ -334,13 +334,13 @@ jobs:
|
|||||||
# changelogPath: Changelog.md
|
# changelogPath: Changelog.md
|
||||||
# version: ${{ steps.get_version.outputs.version-without-v }}
|
# version: ${{ steps.get_version.outputs.version-without-v }}
|
||||||
|
|
||||||
# the release notes will be extracted from changelog
|
# # the release notes will be extracted from changelog
|
||||||
- name: Extract release notes
|
# - name: Extract release notes
|
||||||
id: extract-release-notes
|
# id: extract-release-notes
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
# if: startsWith(github.ref, 'refs/tags/')
|
||||||
uses: ffurrer2/extract-release-notes@v1
|
# uses: ffurrer2/extract-release-notes@v1
|
||||||
with:
|
# with:
|
||||||
changelog_file: Changelog.md
|
# changelog_file: Changelog.md
|
||||||
|
|
||||||
# Releases should only be created on master by tagging the last commit.
|
# Releases should only be created on master by tagging the last commit.
|
||||||
# all artifacts in firmware folder pushed to the release
|
# all artifacts in firmware folder pushed to the release
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
## [Unreleased]
|
## [15.0.3] - 2023-02-28
|
||||||
|
|
||||||
**Parameter Migration**
|
**Parameter Migration**
|
||||||
|
|
||||||
@@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
Update Procedure see [online documentation](https://jomjol.github.io/AI-on-the-edge-device-docs/Installation/#update-ota-over-the-air)
|
Update Procedure see [online documentation](https://jomjol.github.io/AI-on-the-edge-device-docs/Installation/#update-ota-over-the-air)
|
||||||
|
|
||||||
|
:bangbang: Afterwards you should force-reload the Web Interface (usually Ctrl-F5 will do it).
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
|
||||||
This release only migrates some parameters, see #2023 for details and a list of all parameter changes.
|
This release only migrates some parameters, see #2023 for details and a list of all parameter changes.
|
||||||
@@ -29,6 +31,7 @@ If you want to revert back to `v14` or earlier, you will have to revert the migr
|
|||||||
|
|
||||||
- [#2036](https://github.com/jomjol/AI-on-the-edge-device/issues/2036) Fix wrong url-encoding
|
- [#2036](https://github.com/jomjol/AI-on-the-edge-device/issues/2036) Fix wrong url-encoding
|
||||||
- **NEW v15.0.2:** [#1933](https://github.com/jomjol/AI-on-the-edge-device/issues/1933) Bugfix InfluxDB Timestamp
|
- **NEW v15.0.2:** [#1933](https://github.com/jomjol/AI-on-the-edge-device/issues/1933) Bugfix InfluxDB Timestamp
|
||||||
|
- **NEW v15.0.3:** Re-added lost dropdownbox filling for Postprocessing Individual Parameters
|
||||||
|
|
||||||
#### Removed
|
#### Removed
|
||||||
|
|
||||||
|
|||||||
@@ -1599,6 +1599,11 @@ function InitIndivParameter()
|
|||||||
_indexInflux.remove(0);
|
_indexInflux.remove(0);
|
||||||
|
|
||||||
for (var i = 0; i < NUMBERS.length; ++i){
|
for (var i = 0; i < NUMBERS.length; ++i){
|
||||||
|
var option = document.createElement("option");
|
||||||
|
option.text = NUMBERS[i]["name"];
|
||||||
|
option.value = i;
|
||||||
|
_index.add(option);
|
||||||
|
|
||||||
var optionInflux = document.createElement("option");
|
var optionInflux = document.createElement("option");
|
||||||
optionInflux.text = NUMBERS[i]["name"];
|
optionInflux.text = NUMBERS[i]["name"];
|
||||||
optionInflux.value = i;
|
optionInflux.value = i;
|
||||||
|
|||||||
Reference in New Issue
Block a user