Просмотр исходного кода

Merge branch 'rolling' of https://github.com/jomjol/AI-on-the-edge-device into rolling

CaCO3 2 лет назад
Родитель
Сommit
33bfef0af4
2 измененных файлов с 9 добавлено и 9 удалено
  1. 8 8
      Changelog.md
  2. 1 1
      code/components/jomjol_influxdb/interface_influxdb.cpp

+ 8 - 8
Changelog.md

@@ -1,21 +1,17 @@
-## [unreleased]
+## [15.1.1] - 2023-03-23
 
 ### Update Procedure
 
 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)!
-
-:bangbang: Afterwards you should check your configuration for errors!
-
 ### Changes
 
-For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.0.3...v15.1.0)
+For a full list of changes see [Full list of changes](https://github.com/jomjol/AI-on-the-edge-device/compare/v15.1.0...v15.1.1)
 
 #### Added
 
-- n.a.
-
+- [#2206](https://github.com/jomjol/AI-on-the-edge-device/pull/2206) Log PSRAM usage
+- [#2216](https://github.com/jomjol/AI-on-the-edge-device/pull/2216) Log MQTT connection refused reasons
 
 #### Changed
 
@@ -23,7 +19,10 @@ For a full list of changes see [Full list of changes](https://github.com/jomjol/
 
 #### Fixed
 
+-  [#2224](https://github.com/jomjol/AI-on-the-edge-device/pull/2224), [#2213](https://github.com/jomjol/AI-on-the-edge-device/pull/2213) Reverted some of the PSRAM usage changes due to negative sideffects 
 -  [#2203](https://github.com/jomjol/AI-on-the-edge-device/issues/2203) Correct API for pure InfluxDB v1
+-  [#2180](https://github.com/jomjol/AI-on-the-edge-device/pull/2180) Fixed links in Parameter Documentation
+-  Various minor fixes
 
 #### Removed
 
@@ -934,6 +933,7 @@ External Illumination
 -   Initial Version
 
 
+[15.1.1]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.1.0...v15.1.1
 [15.1.0]: https://github.com/jomjol/AI-on-the-edge-device/compare/v15.0.3...v15.1.0
 [15.0.3]: https://github.com/jomjol/AI-on-the-edge-device/compare/v14.0.3...v15.0.3
 [14.0.3]: https://github.com/jomjol/AI-on-the-edge-device/compare/v13.0.8...v14.0.3

+ 1 - 1
code/components/jomjol_influxdb/interface_influxdb.cpp

@@ -189,7 +189,7 @@ void InfluxDBPublish(std::string _key, std::string _content, std::string _timest
 
 
     // use the default retention policy of the database
-    std::string apiURI = _influxDBURI + "/write?db=" + _influxDBDatabase + "/";
+    std::string apiURI = _influxDBURI + "/write?db=" + _influxDBDatabase;
     apiURI.shrink_to_fit();
     http_config.url = apiURI.c_str();