You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PySimpleGUIQt/PySimpleGUIQt.py
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
#!/usr/bin/python3
2
-
version=__version__="0.34.0.4 Unreleased - Added element_justification parm to Column Frame Tab Window, fix for Multiline.get, MultilineOutput.get, Radio.update can clear all radio buttons by usetting any in the group to False, expanded Table element to handle header color andatustyling according to theme, fixed frame background color bug"
@@ -123,7 +112,7 @@ PySide2 or PyQt5 (experimental)
123
112
124
113
For the primary PySimpleGUI documentation go to http://www.PySimpleGUI.org. HOWEVER, bear in mind that is the tkinter version. But it's the best documentation for the package at the moment. Docstrings are coming to this Qt Release, but it's going to take some time to get them done. When they are, then this readme will also be fabulous.s
125
114
126
-
### FEATURE COMPLETE!
115
+
### FEATURE COMPLETE! (Sorta... all elements are available)
127
116
All of the major features are DONE. They may not have all of their options working, but they can be added to your windows. It's been an amazing week to get here.
128
117
129
118
I hope you enjoy this ALPHA release! Please post a screenshot on the GitHub site. There is an Issue where users have been posting their applications. It's a place for you to show-off and a place for others to learn from your designs. Your window does not have to be complex.... all GUIs, no matter how simple, are something we can learn from.
@@ -819,9 +808,29 @@ This time for REAL added the constants. I don't know how to changes got lost bu
819
808
* EVENT_TIMEOUT and TIMEOUT_EVENT
820
809
821
810
811
+
## 0.35.0 PySimpleGUIQt 6-Jun-2020
812
+
813
+
Element justification within Window and Containers! Finally a unified justification
822
814
815
+
* When any Radio element is updated to be False, the entire GROUP is reset so nothing is selected
816
+
* Fixed Multiline.get so that it correctly returns the value, was always returning None
817
+
* Fixed MultilineOutput.get so that it correctly returns the value, was always returning None
818
+
* Notes say I fixed a Frame Element background color bug but I don't see where / how
819
+
* element_jutification added so that all elements inside these will be justified accordingly.
820
+
* For PySimpleGUIQt only, the default is "float" which sets nothing. Buttons will stretch across the window as result
821
+
* Valid values are 'l', 'r', 'c'. You can spell it out, but only first letter is used.
0 commit comments