Release 0.38.0
This commit is contained in:
parent
312d425feb
commit
7fdb34d338
|
@ -1,6 +1,6 @@
|
||||||
#usr/bin/python3
|
#usr/bin/python3
|
||||||
|
|
||||||
version = __version__ = "0.37.0.1 Unreleased - Added close parameter to Window.read"
|
version = __version__ = "0.38.0 Released 06-May-2020"
|
||||||
|
|
||||||
port = 'PySimpleGUIWeb'
|
port = 'PySimpleGUIWeb'
|
||||||
|
|
||||||
|
@ -210,7 +210,10 @@ MESSAGE_BOX_LINE_WIDTH = 60
|
||||||
|
|
||||||
# "Special" Key Values.. reserved
|
# "Special" Key Values.. reserved
|
||||||
# Key representing a Read timeout
|
# Key representing a Read timeout
|
||||||
TIMEOUT_KEY = '__TIMEOUT__'
|
EVENT_TIMEOUT = TIMEOUT_EVENT = TIMEOUT_KEY = '__TIMEOUT__'
|
||||||
|
# Window closed event (user closed with X or destroyed using OS)
|
||||||
|
WIN_CLOSED = WINDOW_CLOSED = None
|
||||||
|
|
||||||
# Key indicating should not create any return values for element
|
# Key indicating should not create any return values for element
|
||||||
WRITE_ONLY_KEY = '__WRITE ONLY__'
|
WRITE_ONLY_KEY = '__WRITE ONLY__'
|
||||||
|
|
||||||
|
|
|
@ -8,9 +8,8 @@
|
||||||
|
|
||||||
![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg)
|
![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg)
|
||||||
|
|
||||||
![Python Version](https://img.shields.io/badge/PySimpleGUIWeb_-0.36.0-orange.svg?longCache=true&style=for-the-badge)
|
|
||||||
|
[![PyPI Version](https://img.shields.io/pypi/v/pysimpleguiweb.svg?style=for-the-badge)](https://pypi.org/project/pysimpleguiweb/)
|
||||||
|
|
||||||
|
|
||||||
# PySimpleGUIWeb
|
# PySimpleGUIWeb
|
||||||
|
|
||||||
|
@ -450,8 +449,32 @@ Themes +
|
||||||
* Fix for Text element crashing following the Remi 2020.2.5 release
|
* Fix for Text element crashing following the Remi 2020.2.5 release
|
||||||
* Crash will show trying to use method "set_layout_orientation"
|
* Crash will show trying to use method "set_layout_orientation"
|
||||||
|
|
||||||
|
## 0.37.0 PySimpleGUIWeb 14-Apr-2020
|
||||||
|
|
||||||
|
Catching up to latest Remi releases.
|
||||||
|
|
||||||
|
* NO LONGER ADDING \n TO MULTILINE, MULTILINE_OUTPUT UPDATES
|
||||||
|
* This may cause some of your problems. Sorry about this, but it's the right thing to do so that prints work correctly
|
||||||
|
* Multiline.print capability
|
||||||
|
* MultilineOutput.print capability
|
||||||
|
* Fix for MultilineOutput not autoscrolling
|
||||||
|
* Fix for image update flicker
|
||||||
|
* Printing sep char fixed
|
||||||
|
* Fix for extra Tab
|
||||||
|
* Replaced SvgGroup with SvgSubcontainer (Requires Remi 2020.3.10)
|
||||||
|
* BIG Thank You owed to Remi creator Davide (for this and many other releases too)
|
||||||
|
|
||||||
|
|
||||||
|
## 0.38.0 PySimpleGUIWeb 6-May-2020
|
||||||
|
|
||||||
|
* Added constants
|
||||||
|
* WIN_CLOSED and WINDOW_CLOSED
|
||||||
|
* EVENT_TIMEOUT and TIMEOUT_EVENT
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
# Design
|
||||||
|
|
||||||
# Design
|
|
||||||
# Author
|
# Author
|
||||||
Mike B.
|
Mike B.
|
||||||
|
|
||||||
|
@ -460,3 +483,4 @@ Themes +
|
||||||
GNU Lesser General Public License (LGPL 3) +
|
GNU Lesser General Public License (LGPL 3) +
|
||||||
|
|
||||||
# Acknowledgments
|
# Acknowledgments
|
||||||
|
This could not be possible without the Remi project! Thank you Remi!!!!
|
||||||
|
|
Loading…
Reference in New Issue