Release 0.39.0
This commit is contained in:
parent
fdbd8d700a
commit
5b4b1cfe49
|
@ -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)):
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue