Skip to content

Commit 11183c5

Browse files
committed
Update README and setup.py
1 parent a55eb0d commit 11183c5

File tree

2 files changed

+21
-9
lines changed

2 files changed

+21
-9
lines changed

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,18 @@ Use py2app on OS X and py2exe/pyinstaller on Windows. For reference setup.py fil
8585

8686
# Changelog
8787

88+
89+
## 1.2
90+
Released 27/09/2016
91+
92+
- `New` [All] Introduced `load_html` function that allows dynamic loading of HTML code, instead of a URL. Implemented for all platforms except Win32 (use Windows Forms). Thanks to @ysobolev #39
93+
- `New` [All] Added an example of a Flask-based application skeleton. The example can be found in `examples/flask_app`
94+
- `New` [Windows] Windows Forms based implementation of webview window. Requires pythonnet.
95+
- `New` [Windows] Introduced config["USE_WIN32"] variable that lets you choose between Win32 and Windows Forms. Default to True (Windows Forms will be made as default in the future)
96+
- `Fix` [Windows/Linux] Got rid of installation dependencies on Windows and Linux. The dependencies now have to be installed by hand and the choice of dependencies is left to user
97+
- `Fix` [Linux] Compatibility with Qt 5.5. Thanks to @danidee10. #48
98+
99+
88100
## 1.1
89101
Released 08/06/2016
90102

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@
44

55
install_requires = []
66
if platform.system() == "Windows":
7-
install_requires = ["comtypes", "pypiwin32"]
7+
install_requires = []
88
elif platform.system() == "Darwin":
99
install_requires = ["pyobjc"]
1010
elif platform.system() == "Linux":
11-
install_requires = ["pygobject"]
11+
install_requires = []
1212

1313
setup(
1414
name="pywebview",
1515
author="Roman Sirokov",
16-
author_email = "[email protected]",
17-
description = ("A cross-platform lightweight native wrapper around a web view component"),
18-
url = "http://github.com/r0x0r/pywebview",
19-
download_url = "https://github.com/r0x0r/pywebview/archive/1.1.tar.gz",
20-
keywords = ["gui", "webkit", "html", "web"],
21-
install_requires = install_requires,
22-
version="1.1",
16+
author_email="[email protected]",
17+
description=("A cross-platform lightweight native wrapper around a web view component"),
18+
url="http://github.com/r0x0r/pywebview",
19+
download_url="https://github.com/r0x0r/pywebview/archive/1.2.tar.gz",
20+
keywords=["gui", "webkit", "html", "web"],
21+
install_requires=install_requires,
22+
version="1.2",
2323
packages=["webview",],
2424
license="New BSD license",
2525
classifiers=[

0 commit comments

Comments
 (0)