Release 4.41.0
This commit is contained in:
parent
b0f6ae354f
commit
35efc51149
176
PySimpleGUI.py
176
PySimpleGUI.py
File diff suppressed because one or more lines are too long
|
@ -11778,6 +11778,22 @@ Parameter Descriptions:
|
|||
|
||||
These are the functions available for you to call
|
||||
|
||||
## Version Info
|
||||
|
||||
Returns a human-readable string of version numbers for:
|
||||
|
||||
Python version
|
||||
PySimpleGUI Port (tkinter in this case)
|
||||
tkinter version
|
||||
PySimpleGUI version
|
||||
The location of the PySimpleGUI.py file
|
||||
|
||||
The format is a newline between each value and descriptive text for each line
|
||||
|
||||
```
|
||||
get_versions()
|
||||
```
|
||||
|
||||
## Multi-window Interface
|
||||
|
||||
Reads all windows that are "active" when the call is made. "Active" means that it's been finalized or read.
|
||||
|
|
|
@ -1,24 +1,29 @@
|
|||
<p align="center">
|
||||
<img src="https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_readme/Logo%20with%20text%20for%20GitHub%20Top.png" alt="Python GUIs for Humans">
|
||||
<h2 align="center">Python GUIs for Humans</h2>
|
||||
<h1 align="center">Python GUIs for Humans</h1>
|
||||
</p>
|
||||
|
||||
[](http://pepy.tech/project/pysimplegui) tkinter
|
||||
[](https://pepy.tech/project/pysimplegui27) tk 2.7
|
||||
[](https://pepy.tech/project/pysimpleguiqt) Qt
|
||||
[](https://pepy.tech/project/pysimpleguiWx) WxPython
|
||||
[](https://pepy.tech/project/pysimpleguiWeb) Web (Remi)
|
||||
------------------------------
|
||||
|
||||

|
||||

|
||||
## PyPI Statistics & Versions
|
||||
|
||||
[](https://pypi.org/project/pysimplegui/) tkinter
|
||||
[](https://pypi.org/project/pysimpleguiqt/) Qt
|
||||
[](https://pypi.org/project/pysimpleguiweb/) Web
|
||||
[](https://pypi.org/project/pysimpleguiwx/) Wx
|
||||
 
|
||||
[](../../commits/master)
|
||||
[](../../commits/master)
|
||||
| TK | TK 2.7 | Qt| WxPython | Web (Remi) |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
| [](http://pepy.tech/project/pysimplegui) | [](https://pepy.tech/project/pysimplegui27) | [](https://pepy.tech/project/pysimpleguiqt) | [](https://pepy.tech/project/pysimpleguiWx) | [](https://pepy.tech/project/pysimpleguiWeb) |
|
||||
|  |  |  |  |  |
|
||||
| [](https://pypi.python.org/pypi/PySimpleGUI/) | [](https://pypi.python.org/pypi/PySimpleGUI27/) | [](https://pypi.python.org/pypi/PySimpleGUIQt/) | [](https://pypi.python.org/pypi/PySimpleGUIWx/) | [](https://pypi.python.org/pypi/PySimpleGUIWeb/) |
|
||||
|
||||
--------------------------
|
||||
|
||||
## GitHub Statistics
|
||||
|
||||
| Issues | Commit Activity | Stars | Docs |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |
|
||||
|  |  | | |
|
||||
|
||||
--------------------------
|
||||
|
||||
# PySimpleGUI User's Manual
|
||||
|
||||
|
@ -8679,6 +8684,33 @@ Gray Gray Gray should you wish to go colorless
|
|||
* Added back functions accidently lost during a PEP8 rework
|
||||
* added back popup_annoying, popup_no_border, popup_no_frame, popup_no_wait, popup_timed, sgprint, sgprint_close
|
||||
|
||||
## 4.41.0 PySimpleGUI 12-May-2021
|
||||
|
||||
New Readme & Other PyPI info
|
||||
Fixed Syntax error in Text.update
|
||||
|
||||
* 2 more menu definition constants (simply a shortcut way to add right click menu)
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_EXIT = ['', ['Edit Me', 'Version', 'Exit']]
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_SETTINGS_EXIT = ['', ['Edit Me', 'Settings', 'Version', 'Exit']]
|
||||
* 3 new SYMBOL constants. Use code completion with SYMBOL_ to find some handy symbols
|
||||
* SYMBOL_CHECK = '✅'
|
||||
* SYMBOL_BALLOT_X ='☒'
|
||||
* SYMBOL_BALLOT_CHECK = '☑'
|
||||
* Syntax error, and thus crash, if the check for widget was created is false
|
||||
* Fix for scrollable Column (was able to scroll further than should have been possible)
|
||||
* More docstrings to explain Column.contents_changed is needed when layout is extended
|
||||
* Docstring addition for read_all_windows to explain which windows will be read and what's returned when a window is closed
|
||||
* Titlebar docstring fix - return was misplaced. rtype changed to Column
|
||||
* Added execute_py_get_interpreter to return the current global setting
|
||||
* get_versions() function added to aid in dubugging. print(sg.get_versions())
|
||||
* Returns a human readable string with labels next to each version.
|
||||
* Python version x.x.x
|
||||
* Port (tkinter)
|
||||
* tkinter version
|
||||
* PySimpleGUI version
|
||||
* PySimpleGUI filename with full path
|
||||
|
||||
|
||||
## Upcoming
|
||||
|
||||
The future for PySimpleGUI looks bright!
|
||||
|
|
|
@ -21,24 +21,27 @@ I could use a coffee! It fuels consultants, editors, domain registration and so
|
|||
|
||||
# Statistics 📈
|
||||
|
||||
# PyPI Statistics & Versions
|
||||
|
||||
## PyPI Statistics & Versions
|
||||
|
||||
| TK | TK 2.7 | Qt| WxPython | Web (Remi) |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
| [](http://pepy.tech/project/pysimplegui) | [](https://pepy.tech/project/pysimplegui27) | [](https://pepy.tech/project/pysimpleguiqt) | [](https://pepy.tech/project/pysimpleguiWx) | [](https://pepy.tech/project/pysimpleguiWeb) |
|
||||
|  |  |  |  |  |
|
||||
| [](https://pypi.python.org/pypi/PySimpleGUI/) | [](https://pypi.python.org/pypi/PySimpleGUI27/) | [](https://pypi.python.org/pypi/PySimpleGUIQt/) | [](https://pypi.python.org/pypi/PySimpleGUIWx/) | [](https://pypi.python.org/pypi/PySimpleGUIWeb/) |
|
||||
|
||||
|
||||
--------------------------
|
||||
|
||||
# GitHub Statistics
|
||||
## GitHub Statistics
|
||||
|
||||
|
||||
|
||||
| Issues | Commit Activity | Stars | Python Ver Supported | Docs |
|
||||
|
||||
| Issues | Commit Activity | Stars | Docs |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
|  |  |  |  |
|
||||
|  |  | | |
|
||||
|
||||
|
||||
|
|
11
readme.md
11
readme.md
|
@ -21,24 +21,27 @@ I could use a coffee! It fuels consultants, editors, domain registration and so
|
|||
|
||||
# Statistics 📈
|
||||
|
||||
# PyPI Statistics & Versions
|
||||
|
||||
## PyPI Statistics & Versions
|
||||
|
||||
| TK | TK 2.7 | Qt| WxPython | Web (Remi) |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
| [](http://pepy.tech/project/pysimplegui) | [](https://pepy.tech/project/pysimplegui27) | [](https://pepy.tech/project/pysimpleguiqt) | [](https://pepy.tech/project/pysimpleguiWx) | [](https://pepy.tech/project/pysimpleguiWeb) |
|
||||
|  |  |  |  |  |
|
||||
| [](https://pypi.python.org/pypi/PySimpleGUI/) | [](https://pypi.python.org/pypi/PySimpleGUI27/) | [](https://pypi.python.org/pypi/PySimpleGUIQt/) | [](https://pypi.python.org/pypi/PySimpleGUIWx/) | [](https://pypi.python.org/pypi/PySimpleGUIWeb/) |
|
||||
|
||||
|
||||
--------------------------
|
||||
|
||||
# GitHub Statistics
|
||||
## GitHub Statistics
|
||||
|
||||
|
||||
|
||||
| Issues | Commit Activity | Stars | Python Ver Supported | Docs |
|
||||
|
||||
| Issues | Commit Activity | Stars | Docs |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
|  |  |  |  |
|
||||
|  |  | | |
|
||||
|
||||
|
||||
|
|
|
@ -28,25 +28,38 @@ HOW DO I INSERT IMAGES ???
|
|||
|
||||
<p align="center">
|
||||
<img src="https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_readme/Logo%20with%20text%20for%20GitHub%20Top.png" alt="Python GUIs for Humans">
|
||||
<h2 align="center">Python GUIs for Humans</h2>
|
||||
<h1 align="center">Python GUIs for Humans</h1>
|
||||
</p>
|
||||
|
||||
[](http://pepy.tech/project/pysimplegui) tkinter
|
||||
[](https://pepy.tech/project/pysimplegui27) tk 2.7
|
||||
[](https://pepy.tech/project/pysimpleguiqt) Qt
|
||||
[](https://pepy.tech/project/pysimpleguiWx) WxPython
|
||||
[](https://pepy.tech/project/pysimpleguiWeb) Web (Remi)
|
||||
|
||||

|
||||

|
||||
------------------------------
|
||||
|
||||
[](https://pypi.org/project/pysimplegui/) tkinter
|
||||
[](https://pypi.org/project/pysimpleguiqt/) Qt
|
||||
[](https://pypi.org/project/pysimpleguiweb/) Web
|
||||
[](https://pypi.org/project/pysimpleguiwx/) Wx
|
||||
 
|
||||
[](../../commits/master)
|
||||
[](../../commits/master)
|
||||
|
||||
## PyPI Statistics & Versions
|
||||
|
||||
| TK | TK 2.7 | Qt| WxPython | Web (Remi) |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
| [](http://pepy.tech/project/pysimplegui) | [](https://pepy.tech/project/pysimplegui27) | [](https://pepy.tech/project/pysimpleguiqt) | [](https://pepy.tech/project/pysimpleguiWx) | [](https://pepy.tech/project/pysimpleguiWeb) |
|
||||
|  |  |  |  |  |
|
||||
| [](https://pypi.python.org/pypi/PySimpleGUI/) | [](https://pypi.python.org/pypi/PySimpleGUI27/) | [](https://pypi.python.org/pypi/PySimpleGUIQt/) | [](https://pypi.python.org/pypi/PySimpleGUIWx/) | [](https://pypi.python.org/pypi/PySimpleGUIWeb/) |
|
||||
|
||||
|
||||
--------------------------
|
||||
|
||||
## GitHub Statistics
|
||||
|
||||
|
||||
|
||||
|
||||
| Issues | Commit Activity | Stars | Docs |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |
|
||||
|  |  | | |
|
||||
|
||||
|
||||
|
||||
--------------------------
|
||||
|
||||
|
||||
|
||||
|
|
|
@ -1887,6 +1887,33 @@ Gray Gray Gray should you wish to go colorless
|
|||
|
||||
|
||||
|
||||
## 4.41.0 PySimpleGUI 12-May-2021
|
||||
|
||||
New Readme & Other PyPI info
|
||||
Fixed Syntax error in Text.update
|
||||
|
||||
* 2 more menu definition constants (simply a shortcut way to add right click menu)
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_EXIT = ['', ['Edit Me', 'Version', 'Exit']]
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_SETTINGS_EXIT = ['', ['Edit Me', 'Settings', 'Version', 'Exit']]
|
||||
* 3 new SYMBOL constants. Use code completion with SYMBOL_ to find some handy symbols
|
||||
* SYMBOL_CHECK = '✅'
|
||||
* SYMBOL_BALLOT_X ='☒'
|
||||
* SYMBOL_BALLOT_CHECK = '☑'
|
||||
* Syntax error, and thus crash, if the check for widget was created is false
|
||||
* Fix for scrollable Column (was able to scroll further than should have been possible)
|
||||
* More docstrings to explain Column.contents_changed is needed when layout is extended
|
||||
* Docstring addition for read_all_windows to explain which windows will be read and what's returned when a window is closed
|
||||
* Titlebar docstring fix - return was misplaced. rtype changed to Column
|
||||
* Added execute_py_get_interpreter to return the current global setting
|
||||
* get_versions() function added to aid in dubugging. print(sg.get_versions())
|
||||
* Returns a human readable string with labels next to each version.
|
||||
* Python version x.x.x
|
||||
* Port (tkinter)
|
||||
* tkinter version
|
||||
* PySimpleGUI version
|
||||
* PySimpleGUI filename with full path
|
||||
|
||||
|
||||
## Upcoming
|
||||
|
||||
The future for PySimpleGUI looks bright!
|
||||
|
|
|
@ -2604,6 +2604,12 @@ The following methods are here for backwards compatibility reference. You will
|
|||
|
||||
These are the functions available for you to call
|
||||
|
||||
|
||||
## Version Info
|
||||
|
||||
<!-- <+func.get_versions+> -->
|
||||
|
||||
|
||||
## Multi-window Interface
|
||||
|
||||
<!-- <+func.read_all_windows+> -->
|
||||
|
|
|
@ -11778,6 +11778,22 @@ Parameter Descriptions:
|
|||
|
||||
These are the functions available for you to call
|
||||
|
||||
## Version Info
|
||||
|
||||
Returns a human-readable string of version numbers for:
|
||||
|
||||
Python version
|
||||
PySimpleGUI Port (tkinter in this case)
|
||||
tkinter version
|
||||
PySimpleGUI version
|
||||
The location of the PySimpleGUI.py file
|
||||
|
||||
The format is a newline between each value and descriptive text for each line
|
||||
|
||||
```
|
||||
get_versions()
|
||||
```
|
||||
|
||||
## Multi-window Interface
|
||||
|
||||
Reads all windows that are "active" when the call is made. "Active" means that it's been finalized or read.
|
||||
|
|
|
@ -1,24 +1,29 @@
|
|||
<p align="center">
|
||||
<img src="https://raw.githubusercontent.com/PySimpleGUI/PySimpleGUI/master/images/for_readme/Logo%20with%20text%20for%20GitHub%20Top.png" alt="Python GUIs for Humans">
|
||||
<h2 align="center">Python GUIs for Humans</h2>
|
||||
<h1 align="center">Python GUIs for Humans</h1>
|
||||
</p>
|
||||
|
||||
[](http://pepy.tech/project/pysimplegui) tkinter
|
||||
[](https://pepy.tech/project/pysimplegui27) tk 2.7
|
||||
[](https://pepy.tech/project/pysimpleguiqt) Qt
|
||||
[](https://pepy.tech/project/pysimpleguiWx) WxPython
|
||||
[](https://pepy.tech/project/pysimpleguiWeb) Web (Remi)
|
||||
------------------------------
|
||||
|
||||

|
||||

|
||||
## PyPI Statistics & Versions
|
||||
|
||||
[](https://pypi.org/project/pysimplegui/) tkinter
|
||||
[](https://pypi.org/project/pysimpleguiqt/) Qt
|
||||
[](https://pypi.org/project/pysimpleguiweb/) Web
|
||||
[](https://pypi.org/project/pysimpleguiwx/) Wx
|
||||
 
|
||||
[](../../commits/master)
|
||||
[](../../commits/master)
|
||||
| TK | TK 2.7 | Qt| WxPython | Web (Remi) |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |  |
|
||||
| [](http://pepy.tech/project/pysimplegui) | [](https://pepy.tech/project/pysimplegui27) | [](https://pepy.tech/project/pysimpleguiqt) | [](https://pepy.tech/project/pysimpleguiWx) | [](https://pepy.tech/project/pysimpleguiWeb) |
|
||||
|  |  |  |  |  |
|
||||
| [](https://pypi.python.org/pypi/PySimpleGUI/) | [](https://pypi.python.org/pypi/PySimpleGUI27/) | [](https://pypi.python.org/pypi/PySimpleGUIQt/) | [](https://pypi.python.org/pypi/PySimpleGUIWx/) | [](https://pypi.python.org/pypi/PySimpleGUIWeb/) |
|
||||
|
||||
--------------------------
|
||||
|
||||
## GitHub Statistics
|
||||
|
||||
| Issues | Commit Activity | Stars | Docs |
|
||||
| -- | -- | -- | -- | -- |
|
||||
|  |  |  |  |
|
||||
|  |  | | |
|
||||
|
||||
--------------------------
|
||||
|
||||
# PySimpleGUI User's Manual
|
||||
|
||||
|
@ -8679,6 +8684,33 @@ Gray Gray Gray should you wish to go colorless
|
|||
* Added back functions accidently lost during a PEP8 rework
|
||||
* added back popup_annoying, popup_no_border, popup_no_frame, popup_no_wait, popup_timed, sgprint, sgprint_close
|
||||
|
||||
## 4.41.0 PySimpleGUI 12-May-2021
|
||||
|
||||
New Readme & Other PyPI info
|
||||
Fixed Syntax error in Text.update
|
||||
|
||||
* 2 more menu definition constants (simply a shortcut way to add right click menu)
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_EXIT = ['', ['Edit Me', 'Version', 'Exit']]
|
||||
* MENU_RIGHT_CLICK_EDITME_VER_SETTINGS_EXIT = ['', ['Edit Me', 'Settings', 'Version', 'Exit']]
|
||||
* 3 new SYMBOL constants. Use code completion with SYMBOL_ to find some handy symbols
|
||||
* SYMBOL_CHECK = '✅'
|
||||
* SYMBOL_BALLOT_X ='☒'
|
||||
* SYMBOL_BALLOT_CHECK = '☑'
|
||||
* Syntax error, and thus crash, if the check for widget was created is false
|
||||
* Fix for scrollable Column (was able to scroll further than should have been possible)
|
||||
* More docstrings to explain Column.contents_changed is needed when layout is extended
|
||||
* Docstring addition for read_all_windows to explain which windows will be read and what's returned when a window is closed
|
||||
* Titlebar docstring fix - return was misplaced. rtype changed to Column
|
||||
* Added execute_py_get_interpreter to return the current global setting
|
||||
* get_versions() function added to aid in dubugging. print(sg.get_versions())
|
||||
* Returns a human readable string with labels next to each version.
|
||||
* Python version x.x.x
|
||||
* Port (tkinter)
|
||||
* tkinter version
|
||||
* PySimpleGUI version
|
||||
* PySimpleGUI filename with full path
|
||||
|
||||
|
||||
## Upcoming
|
||||
|
||||
The future for PySimpleGUI looks bright!
|
||||
|
|
Loading…
Reference in New Issue