diff --git a/RELEASE_NOTES.txt b/RELEASE_NOTES.txt index 56309f6..6fd2045 100644 --- a/RELEASE_NOTES.txt +++ b/RELEASE_NOTES.txt @@ -5,6 +5,9 @@ WolkGateway bridges communication between WolkAbout IoT platform and multiple devices connected to it. +**Version 4.2.1** +- [BUGFIX] - Fixed the message sent to update the gateway on initialization. + **Version 4.2.0** - [IMPROVEMENT] - Automated .zip/.deb creation for release. This utilizes either local fs/Docker to create necessary things. diff --git a/debian/changelog b/debian/changelog index fbee0ef..68c0246 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,5 @@ -wolkgateway (4.2.0) stable; urgency=medium +wolkgateway (4.2.1) stable; urgency=medium - * Polished DEB release, automated DEB creation for both amd64/armv7l - - -- Wolkabout ELab Wed, 27 May 2020 00:00:00 +0100 + * Fixed the message sent to update the gateway on initialization. + + -- Wolkabout ELab Mod, 7 Sep 2020 16:30:00 +0100 diff --git a/src/model/GatewayDevice.cpp b/src/model/GatewayDevice.cpp index 6a05db0..3359c90 100644 --- a/src/model/GatewayDevice.cpp +++ b/src/model/GatewayDevice.cpp @@ -21,7 +21,7 @@ namespace wolkabout { const std::string GatewayDevice::FIRMWARE_UPDATE_TYPE = "DFU"; -const std::string GatewayDevice::SUBDEVICE_MANAGEMENT_PARAMETER = "subdeviceManagement"; +const std::string GatewayDevice::SUBDEVICE_MANAGEMENT_PARAMETER = "SUB_DEVICE_MANAGEMENT"; const std::string GatewayDevice::GATEWAY_SUBDEVICE_MANAGEMENT = "GATEWAY"; const std::string GatewayDevice::PLATFORM_SUBDEVICE_MANAGEMENT = "PLATFORM"; const std::string GatewayDevice::FIRMWARE_UPDATE_PARAMETER = "supportsFirmwareUpdate";