diff --git a/PySimpleGUIWeb/PySimpleGUIWeb.py b/PySimpleGUIWeb/PySimpleGUIWeb.py index fc6ed7c4..15082bae 100644 --- a/PySimpleGUIWeb/PySimpleGUIWeb.py +++ b/PySimpleGUIWeb/PySimpleGUIWeb.py @@ -1,6 +1,6 @@ #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' @@ -210,7 +210,10 @@ MESSAGE_BOX_LINE_WIDTH = 60 # "Special" Key Values.. reserved # 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 WRITE_ONLY_KEY = '__WRITE ONLY__' diff --git a/PySimpleGUIWeb/readme.md b/PySimpleGUIWeb/readme.md index 9d010f08..13baa0fd 100644 --- a/PySimpleGUIWeb/readme.md +++ b/PySimpleGUIWeb/readme.md @@ -8,9 +8,8 @@ ![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 @@ -450,8 +449,32 @@ Themes + * Fix for Text element crashing following the Remi 2020.2.5 release * 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 Mike B. @@ -460,3 +483,4 @@ Themes + GNU Lesser General Public License (LGPL 3) + # Acknowledgments +This could not be possible without the Remi project! Thank you Remi!!!!