Release 0.39.0

This commit is contained in:
PySimpleGUI 2020-06-06 17:14:05 -04:00
parent fdbd8d700a
commit 5b4b1cfe49
2 changed files with 18 additions and 5 deletions

View File

@ -1,6 +1,6 @@
#usr/bin/python3 #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' port = 'PySimpleGUIWeb'
@ -7950,10 +7950,8 @@ def main():
# FolderBrowse()], # FolderBrowse()],
# [Text('Destination Folder', justification='right', size=(40,1)), InputText('Dest'), 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)]] # [Ok(), Cancel(disabled=True), Exit(tooltip='Exit button'), Button('Hidden Button', visible=False)]]
try:
ver = version[:version.index('\n')] ver = version.split('\n')[0]
except:
ver = version
def VerLine(version, description, size=(30,1)): def VerLine(version, description, size=(30,1)):

View File

@ -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 # Design
# Author # Author