Skip to content

Commit 5277a15

Browse files
committed
release v1.4.0
1 parent 1e77c1f commit 5277a15

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

docs/releases.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Release notes
44
.. toctree::
55
:maxdepth: 2
66

7+
releases/v1.4
78
releases/v1.3.0
89
releases/v1.2.0
910
releases/v1.1.0

docs/releases/v1.4.rst

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
What's new in PyWebIO 1.4
2+
==========================
3+
4+
2021/10/4
5+
-----------
6+
7+
Highlights
8+
^^^^^^^^^^^
9+
* automatically hold session when needed
10+
* support for binding onclick callback on any output widget
11+
12+
Detailed changes
13+
^^^^^^^^^^^^^^^^^
14+
* migrate to a `open-source <https://github.com/wang0618/localshare>`_ remote access service
15+
* add ``output_max_width`` parameter to `set_env() <pywebio.session.set_env>`
16+
* can use ``Esc``/``F11`` to toggle fullscreen of codemirror textarea
17+
* `pin_wait_change() <pywebio.pin.pin_wait_change>` support `timeout` parameter
18+
* add `pywebio.config() <pywebio.config>`
19+
* add `pywebio.output.put_button() <pywebio.output.put_button>`
20+
* add `pywebio.pin.put_actions() <pywebio.pin.put_actions>`
21+
* rearrange document
22+
23+
Bug fix
24+
^^^^^^^^^^^^^^^^^
25+
* fix(#148): form can't be submit after validation failed - `e262ea43 <https://github.com/pywebio/PyWebIO/commit/e262ea43dc8a4fe3addd6c84f2fdd4f290a53f20>`_
26+
* fix some codemirror issues: codemirror refresh and mode auto load - `b7957891 <https://github.com/pywebio/PyWebIO/commit/b7957891832a20fe47dd3b907e061a4d2b35de73>`_, `50cc41a9 <https://github.com/pywebio/PyWebIO/commit/50cc41a9d35f566ffe4c995165c841c1ae4971c4>`_
27+
* fix: `run_js()` return `None` when empty-value - `89ce352d <https://github.com/pywebio/PyWebIO/commit/89ce352d069eec28f3ccc4e7657892a43374c3fc>`_
28+
* fix: whole output crash when a sub output fail - `31b26d09 <https://github.com/pywebio/PyWebIO/commit/31b26d0985d700633946c750a01d25c96c634eaa>`_

pywebio/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
__package__ = 'pywebio'
22
__description__ = 'Write interactive web app in script way.'
33
__url__ = 'https://pywebio.readthedocs.io'
4-
__version__ = "1.3.3"
5-
__version_info__ = (1, 3, 3, 0)
4+
__version__ = "1.4.0"
5+
__version_info__ = (1, 4, 0, 0)
66
__author__ = 'WangWeimin'
77
__author_email__ = 'wang0.618@qq.com'
88
__license__ = 'MIT'

0 commit comments

Comments
 (0)