commit
75abaa3948
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/python3
|
||||
|
||||
version = __version__ = "4.15.0 Released 08-Jan-2020"
|
||||
version = __version__ = "4.15.1 Released 09-Jan-2020"
|
||||
|
||||
port = 'PySimpleGUI'
|
||||
|
||||
|
@ -11584,8 +11584,6 @@ def Popup(*args, title=None, button_color=None, background_color=None, text_colo
|
|||
message = str(message)
|
||||
if message.count('\n'):
|
||||
message_wrapped = message
|
||||
if len(message_wrapped) > local_line_width:
|
||||
message_wrapped = textwrap.fill(message, local_line_width)
|
||||
else:
|
||||
message_wrapped = textwrap.fill(message, local_line_width)
|
||||
message_wrapped_lines = message_wrapped.count('\n') + 1
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
![Awesome Meter](https://img.shields.io/badge/Awesome_meter-100-yellow.svg)
|
||||
![Python Version](https://img.shields.io/badge/Python-2.7_3.x-yellow.svg)
|
||||
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUI_For_Python_3.x_Version-4.15.0-red.svg?longCache=true&style=for-the-badge)
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUI_For_Python_3.x_Version-4.15.1-red.svg?longCache=true&style=for-the-badge)
|
||||
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUIQt_Version-0.30.0-orange.svg?longCache=true&style=for-the-badge)
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUIWx_version-0.14.0-orange.svg?longCache=true&style=for-the-badge)
|
||||
|
@ -19453,6 +19453,12 @@ Lots of fixes
|
|||
* Test harness uses a nicer colors for event, value print outs.
|
||||
* _timeit decorator for timing functions
|
||||
|
||||
|
||||
## 4.15.1 PySimpleGUI 09-Jan-2020
|
||||
|
||||
Quick patch to remove change to popup
|
||||
|
||||
|
||||
### Upcoming
|
||||
|
||||
There will always be overlapping work as the ports will never actually be "complete" as there's always something new that can be built. However there's a definition for the base functionality for PySimpleGUI. This is what is being strived for with the currnt ports that are underway.
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
![Awesome Meter](https://img.shields.io/badge/Awesome_meter-100-yellow.svg)
|
||||
![Python Version](https://img.shields.io/badge/Python-2.7_3.x-yellow.svg)
|
||||
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUI_For_Python_3.x_Version-4.15.0-red.svg?longCache=true&style=for-the-badge)
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUI_For_Python_3.x_Version-4.15.1-red.svg?longCache=true&style=for-the-badge)
|
||||
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUIQt_Version-0.30.0-orange.svg?longCache=true&style=for-the-badge)
|
||||
![Python Version](https://img.shields.io/badge/PySimpleGUIWx_version-0.14.0-orange.svg?longCache=true&style=for-the-badge)
|
||||
|
@ -19453,6 +19453,12 @@ Lots of fixes
|
|||
* Test harness uses a nicer colors for event, value print outs.
|
||||
* _timeit decorator for timing functions
|
||||
|
||||
|
||||
## 4.15.1 PySimpleGUI 09-Jan-2020
|
||||
|
||||
Quick patch to remove change to popup
|
||||
|
||||
|
||||
### Upcoming
|
||||
|
||||
There will always be overlapping work as the ports will never actually be "complete" as there's always something new that can be built. However there's a definition for the base functionality for PySimpleGUI. This is what is being strived for with the currnt ports that are underway.
|
||||
|
|
Loading…
Reference in New Issue