diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 991d24b2..271cb38b 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 4.0.2 + +_Released 21/02/2023_ + +### 🚀 Improvements +- [All] HTTP server is now multithreaded. This should prevent stalled requests. #1025 +- [Windows] `webview.start(storage_path)` can now be set in private mode. This can be useful if you do not have write access to EdgeChromium default data directory and get 0x80070005 (E_ACCESSDENIED) error. #1026 + +### 🐞 Bug fixes +- [All] Fix `AttributeError: module 'webview.http' has no attribute 'running'` exception occurring when multiple windows are opened. Thanks @YidaozhanYa. #1024 +- [Winforms] Fix on_top not having any effect on Windows. #1036 +- [Winforms] Fix `create_window(hidden=True)` makes the show() command not work #1050 +- [Windows] Fix pyinstaller compatibility on Windows. Thanks @simonrob #1044 +- [CEF] Fix window.get_cookies() throwing KeyError exception. #1021 +- [Cocoa] Fix non-QWERTY keyboard shortcuts. Thanks @max-uho +- [QT] Fix web inspector preventing to open. #1028 +- [GTK] Fix "ImportError: Requiring namespace 'Soup' version '2.4', but '3.0' is already loaded" Thanks @YidaozhanYa #1041 + + ## 4.0.1 _Released 19/01/2023_ diff --git a/docs/README.md b/docs/README.md index ce89fd56..b981dd72 100644 --- a/docs/README.md +++ b/docs/README.md @@ -7,7 +7,7 @@ actionLink: /guide/ footer: BSD Licensed | Copyright © 2014–present Roman Sirokov ---
diff --git a/setup.py b/setup.py index 1475f021..7ed1d28c 100644 --- a/setup.py +++ b/setup.py @@ -31,11 +31,11 @@ long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/r0x0r/pywebview', - download_url='https://github.com/r0x0r/pywebview/archive/4.0.1.tar.gz', + download_url='https://github.com/r0x0r/pywebview/archive/4.0.2.tar.gz', keywords=['gui', 'webkit', 'html', 'web'], install_requires=install_requires, extras_require=extras_require, - version='4.0.1', + version='4.0.2', include_package_data=True, packages=['webview', 'webview.js', 'webview.platforms'], package_dir={'webview': 'webview'}, @@ -68,7 +68,6 @@ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', - 'Programming Language :: Python :: 3.10', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Libraries :: Python Modules', 'Topic :: Software Development :: User Interfaces'