diff --git a/NetworkManager/CMakeLists.txt b/NetworkManager/CMakeLists.txt index bc33de372b..f7ba8e671c 100644 --- a/NetworkManager/CMakeLists.txt +++ b/NetworkManager/CMakeLists.txt @@ -6,7 +6,7 @@ find_package(WPEFramework) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") set(VERSION_MAJOR 0) set(VERSION_MINOR 2) -set(VERSION_PATCH 8) +set(VERSION_PATCH 9) add_compile_definitions(NETWORKMANAGER_MAJOR_VERSION=${VERSION_MAJOR}) add_compile_definitions(NETWORKMANAGER_MINOR_VERSION=${VERSION_MINOR}) diff --git a/NetworkManager/NetworkManager.cpp b/NetworkManager/NetworkManager.cpp index 2327815212..47a93053de 100644 --- a/NetworkManager/NetworkManager.cpp +++ b/NetworkManager/NetworkManager.cpp @@ -81,7 +81,7 @@ namespace WPEFramework // // Ideally for large, complex plugins we would actually split the plugin into two libraries - a thin library that just calls // _service->Root to launch WPEProcess, and a larger library that is only ever run inside WPEProcess only (we do this for Cobalt and WebKitBrowser) - _NetworkManager = service->Root(_connectionId, 5000, _T("NetworkManagerImplementation")); + _NetworkManager = service->Root(_connectionId, 25000, _T("NetworkManagerImplementation")); // Still running inside the main WPEFramework process - the child process will have now been spawned and registered if necessary if (_NetworkManager != nullptr) diff --git a/docs/api/NetworkManagerPlugin.md b/docs/api/NetworkManagerPlugin.md index c3e54b8bfc..70bf806efe 100644 --- a/docs/api/NetworkManagerPlugin.md +++ b/docs/api/NetworkManagerPlugin.md @@ -2,7 +2,7 @@ # NetworkManager Plugin -**Version: [0.2.8]()** +**Version: [0.2.9]()** A NetworkManager plugin for Thunder framework.