Skip to content

Commit

Permalink
4.0.2 info
Browse files Browse the repository at this point in the history
  • Loading branch information
r0x0r committed Feb 21, 2023
1 parent 0b61f88 commit 61132c9
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
19 changes: 19 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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_
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ actionLink: /guide/
footer: BSD Licensed | Copyright © 2014–present Roman Sirokov
---
<div class='center version'>
Current version: <strong>4.0.1</strong><br/>
Current version: <strong>4.0.2</strong><br/>
<a href='/changelog'>What's new</a>
</div>

Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'},
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 61132c9

Please sign in to comment.