-
Notifications
You must be signed in to change notification settings - Fork 388
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ Release notes | |
.. toctree:: | ||
:maxdepth: 2 | ||
|
||
releases/v1.6 | ||
releases/v1.5 | ||
releases/v1.4 | ||
releases/v1.3.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
What's new in PyWebIO 1.6 | ||
========================== | ||
|
||
2022/3/23 | ||
----------- | ||
|
||
Highlights | ||
^^^^^^^^^^^ | ||
* add :func:`pywebio.pin.pin_on_change() <pywebio.pin.pin_on_change>` | ||
|
||
Detailed changes | ||
^^^^^^^^^^^^^^^^^ | ||
* use `bootstrap-select <https://github.com/snapappointments/bootstrap-select/>`_ to provide more user-friendly select input | ||
* add `pin.pin.use_strict()` to enable strict mode for getting pin widget value | ||
* Persian language support for default labels, thanks to `Pikhosh <https://github.com/pikhosh>`_ | ||
* add color input type (`#310 <https://github.com/pywebio/PyWebIO/discussions/310>`_) | ||
* add input check on number and float type input | ||
|
||
Bug fix | ||
^^^^^^^^^^^^^^^^^ | ||
* fix: uncaught `SessionClosedException` in callback of thread-based session | ||
* fix(`#313 <https://github.com/pywebio/PyWebIO/discussions/313>`_): slider value label don't sync when set value | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
__package__ = 'pywebio' | ||
__description__ = 'Write interactive web app in script way.' | ||
__url__ = 'https://pywebio.readthedocs.io' | ||
__version__ = "1.5.2" | ||
__version_info__ = (1, 5, 2, 0) | ||
__version__ = "1.6.0" | ||
__version_info__ = (1, 6, 0, 0) | ||
__author__ = 'WangWeimin' | ||
__author_email__ = '[email protected]' | ||
__license__ = 'MIT' |