Skip to content

Commit cd82087

Browse files
author
Roman Sirokov
committed
3.4 info
1 parent 80ce522 commit cd82087

File tree

5 files changed

+38
-8
lines changed

5 files changed

+38
-8
lines changed

MANIFEST.in

+9
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,12 @@ include webview/lib/WebBrowserInterop.x64.dll
22
include webview/lib/WebBrowserInterop.x86.dll
33
include webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.dll
44
include webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.LICENSE.md
5+
include webview/lib/WebBrowserInterop.x64.dll
6+
include webview/lib/WebBrowserInterop.x86.dll
7+
include webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.dll
8+
include webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.LICENSE.md
9+
include webview/lib/x64/WebView2Loader.dll
10+
include webview/lib/x86/WebView2Loader.dll
11+
include webview/lib/Microsoft.Web.WebView2.Core.dll
12+
include webview/lib/Microsoft.Web.WebView2.LICENSE.md
13+
include webview/lib/Microsoft.Web.WebView2.WinForms.dll

docs/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## 3.4: Second wave
4+
5+
_Released 04/12/2020_
6+
7+
- `New` [Windows] WebView2 Chromium support. Thanks [sbbosco](https://github.com/sbbosco). [#521](https://github.com/r0x0r/pywebview/issues/521).
8+
- `Fix` [All] Exception with HTML checkboxes and `get_elements`. [#622](https://github.com/r0x0r/pywebview/issues/622).
9+
- `Fix` [All] pystray compatibility. Thanks [AlexCovizzi](https://github.com/AlexCovizzi). [#486](https://github.com/r0x0r/pywebview/issues/486).
10+
- `Fix` [All] expose methods instead of all callables for JS API objects. Thanks [jgentil](https://github.com/jgentil). [#629](https://github.com/r0x0r/pywebview/issues/629).
11+
- `Fix` [EdgeHTML] Make returning results of `evaluate_js` more robust. Thanks [sbbosco](https://github.com/sbbosco).
12+
- `Fix` [QT] KDE_FULL_SESSION not being used. Thanks [Maltzur](https://github.com/Maltzur).
13+
- `Fix` [Cocoa] Unicode filenames for input files.
14+
- `Improvement` [Cocoa] Only install the specific `pyobjc` packages required. Thanks [Fizzadar](https://github.com/fizzadar).
15+
- `Improvement` [Cocoa] Add support for default document navigation and window handling shortcut keys . Thanks [ikhmyz](https://github.com/ikhmyz) and [Fizzadar](https://github.com/fizzadar)
16+
317
## 3.3.5
418

519
_Released 26/09/2020_

docs/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ actionLink: /guide/
77
footer: BSD Licensed | Copyright © 2014-present Roman Sirokov
88
---
99
<div class='center version'>
10-
Current version: <strong>3.3.5</strong><br/>
10+
Current version: <strong>3.4</strong><br/>
1111
<a href='/changelog'>What's new</a>
1212
</div>
1313

docs/guide/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ _pywebview_ is a BSD licensed open source project. It is an independent project
2121

2222

2323

24-
_pywebview_ is created by [Roman Sirokov](https://github.com/r0x0r/). Maintained by Roman and [Shiva Prasad](https://github.com/shivaprsdv).
24+
_pywebview_ is created by [Roman Sirokov](https://github.com/r0x0r/).

setup.py

+13-6
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,27 @@
2929
long_description=long_description,
3030
long_description_content_type='text/markdown',
3131
url='https://github.com/r0x0r/pywebview',
32-
download_url='https://github.com/r0x0r/pywebview/archive/3.3.5.tar.gz',
32+
download_url='https://github.com/r0x0r/pywebview/archive/3.4.tar.gz',
3333
keywords=['gui', 'webkit', 'html', 'web'],
3434
install_requires=install_requires,
3535
extras_require=extras_require,
36-
version='3.3.5',
36+
version='3.4',
3737
include_package_data=True,
3838
packages=['webview', 'webview.js', 'webview.platforms'],
3939
package_dir={'webview': 'webview'},
4040
package_data={
4141
'webview': [
4242
'webview/lib/WebBrowserInterop.x64.dll',
4343
'webview/lib/WebBrowserInterop.x86.dll',
44-
'webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.dll'
45-
'webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.LICENSE.md'
46-
]
47-
},
44+
'webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.dll',
45+
'webview/lib/Microsoft.Toolkit.Forms.UI.Controls.WebView.LICENSE.md',
46+
'webview/lib/x64/WebView2Loader.dll',
47+
'webview/lib/x86/WebView2Loader.dll',
48+
'webview/lib/Microsoft.Web.WebView2.Core.dll',
49+
'webview/lib/Microsoft.Web.WebView2.LICENSE.md',
50+
'webview/lib/Microsoft.Web.WebView2.WinForms.dll',
51+
]
52+
},
4853
license='New BSD license',
4954
classifiers=[
5055
'Intended Audience :: Developers',
@@ -60,6 +65,8 @@
6065
'Programming Language :: Python :: 3.5',
6166
'Programming Language :: Python :: 3.6',
6267
'Programming Language :: Python :: 3.7',
68+
'Programming Language :: Python :: 3.8',
69+
'Programming Language :: Python :: 3.9',
6370
'Topic :: Software Development :: Libraries :: Application Frameworks',
6471
'Topic :: Software Development :: Libraries :: Python Modules',
6572
'Topic :: Software Development :: User Interfaces'

0 commit comments

Comments
 (0)