From 76e2ec49d9f361aafc9d46f910302854b5930664 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Thu, 9 Jan 2020 23:25:54 -0500 Subject: [PATCH] Release 4.15.1 --- PySimpleGUI.py | 4 +--- docs/index.md | 8 +++++++- readme.md | 8 +++++++- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 213be095..7223ea24 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -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 diff --git a/docs/index.md b/docs/index.md index 8574c99d..6ce687d2 100644 --- a/docs/index.md +++ b/docs/index.md @@ -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. diff --git a/readme.md b/readme.md index 8574c99d..6ce687d2 100644 --- a/readme.md +++ b/readme.md @@ -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.