From 5b4b1cfe49d3257b94b9fd4762faff873fa49438 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Sat, 6 Jun 2020 17:14:05 -0400 Subject: [PATCH] Release 0.39.0 --- PySimpleGUIWeb/PySimpleGUIWeb.py | 8 +++----- PySimpleGUIWeb/readme.md | 15 +++++++++++++++ 2 files changed, 18 insertions(+), 5 deletions(-) diff --git a/PySimpleGUIWeb/PySimpleGUIWeb.py b/PySimpleGUIWeb/PySimpleGUIWeb.py index f54d9e58..5296bd81 100644 --- a/PySimpleGUIWeb/PySimpleGUIWeb.py +++ b/PySimpleGUIWeb/PySimpleGUIWeb.py @@ -1,6 +1,6 @@ #usr/bin/python3 -version = __version__ = "0.38.0.1 Unreleased\n Addition of Frame (but without a label)" +version = __version__ = "0.39.0 Released 6-Jun-2020" port = 'PySimpleGUIWeb' @@ -7950,10 +7950,8 @@ def main(): # FolderBrowse()], # [Text('Destination Folder', justification='right', size=(40,1)), InputText('Dest'), FolderBrowse()], # [Ok(), Cancel(disabled=True), Exit(tooltip='Exit button'), Button('Hidden Button', visible=False)]] - try: - ver = version[:version.index('\n')] - except: - ver = version + + ver = version.split('\n')[0] def VerLine(version, description, size=(30,1)): diff --git a/PySimpleGUIWeb/readme.md b/PySimpleGUIWeb/readme.md index 13baa0fd..5f18865a 100644 --- a/PySimpleGUIWeb/readme.md +++ b/PySimpleGUIWeb/readme.md @@ -473,6 +473,21 @@ Catching up to latest Remi releases. +## 0.39.0 PySimpleGUIWeb 6-Jun-2020 + +Element justification within Window and Containers! Finally a unified justification + +* Frame support, but without any labels yet.... only makes a frame... hey, it's a start +* element_jutification added so that all elements inside these will be justified accordingly. + * For PySimpleGUIQt only, the default is "float" which sets nothing. Buttons will stretch across the window as result + * Valid values are 'l', 'r', 'c'. You can spell it out, but only first letter is used. + * Window + * Frame + * Column + * Tab +* New main() that shows Remi version and more info + + # Design # Author