Compare commits

..

3 Commits

3 changed files with 16 additions and 8 deletions

View File

@@ -334,13 +334,13 @@ jobs:
# changelogPath: Changelog.md
# version: ${{ steps.get_version.outputs.version-without-v }}
# the release notes will be extracted from changelog
- name: Extract release notes
id: extract-release-notes
if: startsWith(github.ref, 'refs/tags/')
uses: ffurrer2/extract-release-notes@v1
with:
changelog_file: Changelog.md
# # the release notes will be extracted from changelog
# - name: Extract release notes
# id: extract-release-notes
# if: startsWith(github.ref, 'refs/tags/')
# uses: ffurrer2/extract-release-notes@v1
# with:
# changelog_file: Changelog.md
# Releases should only be created on master by tagging the last commit.
# all artifacts in firmware folder pushed to the release

View File

@@ -1,4 +1,4 @@
## [Unreleased]
## [15.0.3] - 2023-02-28
**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)
:bangbang: Afterwards you should force-reload the Web Interface (usually Ctrl-F5 will do it).
### 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
- **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

View File

@@ -1599,6 +1599,11 @@ function InitIndivParameter()
_indexInflux.remove(0);
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");
optionInflux.text = NUMBERS[i]["name"];
optionInflux.value = i;