Skip to content

Commit 8c82675

Browse files
author
Roman Sirokov
committed
2.3 info
1 parent e12f4fe commit 8c82675

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33

44
# Changelog
55

6+
## 2.3
7+
8+
_Released 12/02/2019_
9+
10+
- `New` [All] Ability to resize window after creation `webview.set_window_size(width, height)`. Thanks @aprowe #274
11+
- `New` [Windows] Chrome Embedded Framework (CEF) support #15
12+
- `Improvement` [All] _pywebview_ does not interfer with Python's logger configuration #295
13+
- `Fix` [All] Empty DOM issues when window is created without a URL #285
14+
- `Improvement` [macOS] Web renderer upgraded to WKWebView
15+
- `Improvement` [macOS] Add support for Mojave dark mode
16+
- `Fix` [macOS] Problem with handling paths containing spaces #283
17+
- `Fix` [QT] Better support for QTWebKit and QTWebChannel #304
18+
- `Improvement` [QT] Remove support for QT4
19+
- `Fix` [GTK] Thrown exception not Python 2 compatible #277
20+
21+
622
## 2.2.1
723

824
_Released 24/10/2018_
@@ -135,7 +151,7 @@ Released 10/10/2016
135151

136152
- `Fix` [All] Python 2 compatibility issue in Flask Example (#52). Thanks to @bastula.
137153
- `Fix` [Windows] Python 3 compatibility issue in Windows Forms implementation (#51)
138-
- `Fix` [Linux] Resizing width/height: 100% problem on GTK (#53). Thanks to @klausweiss.
154+
- `Fix` [Linux] Resizing width/height: 100% problem on GTK (#53). Thanks to @klausweiss.
139155

140156

141157
## 1.2.1

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@
2525
long_description=long_description,
2626
long_description_content_type="text/markdown",
2727
url="https://github.com/r0x0r/pywebview",
28-
download_url="https://github.com/r0x0r/pywebview/archive/2.2.1.tar.gz",
28+
download_url="https://github.com/r0x0r/pywebview/archive/2.3.tar.gz",
2929
keywords=["gui", "webkit", "html", "web"],
3030
install_requires=install_requires,
3131
extras_require=extras_require,
32-
version="2.2.1",
32+
version="2.3",
3333
include_package_data=True,
3434
packages=["webview", "webview.js"],
3535
package_data={"webview": ['webview/lib/WebBrowserInterop.x64.dll', 'webview/lib/WebBrowserInterop.x86.dll']},

0 commit comments

Comments
 (0)