Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release of 0.5.4 #47

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,37 @@ All notable changes to this RDK Service will be documented in this file.

* Changes in CHANGELOG should be updated when commits are added to the main or release branches. There should be one CHANGELOG entry per JIRA Ticket. This is not enforced on sprint branches since there could be multiple changes for the same JIRA ticket during development.

## [0.5.4] - 2024-11-29
### Fixed
- Fixed documentation of NetworkManager
- Handled IPAddressChange event

## [0.5.3] - 2024-11-21
### Fixed
- Fixed GetInterfaceState method
- Fixed bootup events on Gnome backend

## [0.5.2] - 2024-11-19
### Fixed
- Fixed Event data for DefaultInterfacechanged & WiFiThresholdChanged
- Fixed GetAvailableInterfaces on Gnome backend

## [0.5.1] - 2024-11-15
### Added
- Implemented WPS support on Gnome Backend
- Implemented L1/L2 unit test support
### Fixed
- Fixed GetIPSettings error
- Fixed IPAddressChange event

## [0.5.0] - 2024-11-05
### Added
- Enhanced WiFi Connection Structure to support EAP
- Defined JsonEnum to publish the Events
- Refactored Legacy Plugins to use ComRPC to communicate with NetworkManager
- Documentation Update
- Minor bug fixes

## [0.4.0] - 2024-10-04
### Added
- Added RDKLogger Integration
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ find_package(WPEFramework)
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
set(VERSION_MAJOR 0)
set(VERSION_MINOR 5)
set(VERSION_PATCH 3)
set(VERSION_PATCH 4)

add_compile_definitions(NETWORKMANAGER_MAJOR_VERSION=${VERSION_MAJOR})
add_compile_definitions(NETWORKMANAGER_MINOR_VERSION=${VERSION_MINOR})
Expand Down
2 changes: 1 addition & 1 deletion NetworkManager.json
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@
}
},
"GetWiFiSignalStrength":{
"summary": "Get WiFiSignalStrength of connected SSID.",
"summary": "Get WiFiSignalStrength of connected SSID. The signal quality is identifed based on the signal strength. The possible states are \n* 'Excellent' \n* 'Good' \n* 'Fair' \n* 'Weak' \n* 'Disconnected' \n",
"events":{
"onWiFiSignalStrengthChange" : "Triggered when Wifi signal strength switches between Excellent, Good, Fair, Weak."
},
Expand Down
12 changes: 9 additions & 3 deletions docs/NetworkManagerPlugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<a name="head.NetworkManager_Plugin"></a>
# NetworkManager Plugin

**Version: 0.5.3**
**Version: 0.5.4**

**Status: :white_circle::white_circle::white_circle:**

Expand All @@ -23,7 +23,7 @@ org.rdk.NetworkManager interface for Thunder framework.
<a name="head.Scope"></a>
## Scope

This document describes purpose and functionality of the org.rdk.NetworkManager interface (version 0.5.3). It includes detailed specification about its methods provided and notifications sent.
This document describes purpose and functionality of the org.rdk.NetworkManager interface (version 0.5.4). It includes detailed specification about its methods provided and notifications sent.

<a name="head.Case_Sensitivity"></a>
## Case Sensitivity
Expand Down Expand Up @@ -1635,7 +1635,13 @@ This method takes no parameters.
<a name="method.GetWiFiSignalStrength"></a>
## *GetWiFiSignalStrength [<sup>method</sup>](#head.Methods)*

Get WiFiSignalStrength of connected SSID.
Get WiFiSignalStrength of connected SSID. The signal quality is identifed based on the signal strength. The possible states are
* 'Excellent'
* 'Good'
* 'Fair'
* 'Weak'
* 'Disconnected'
.

Also see: [onWiFiSignalStrengthChange](#event.onWiFiSignalStrengthChange)

Expand Down