diff --git a/PySimpleGUIWeb/PySimpleGUIWeb.py b/PySimpleGUIWeb/PySimpleGUIWeb.py index 82c6f877..a38640e5 100644 --- a/PySimpleGUIWeb/PySimpleGUIWeb.py +++ b/PySimpleGUIWeb/PySimpleGUIWeb.py @@ -3448,7 +3448,7 @@ def base64_to_style_image(base64_image): x ="url('data:image/png;base64," x += str(base64_image) x += "')" - print(x) + # print(x) return x @@ -6786,7 +6786,7 @@ def main(): [Combo(values=['Combo 1', 'Combo 2', 'Combo 3'], default_value='Combo 2', key='_COMBO_', enable_events=True, readonly=False, tooltip='Combo box', disabled=False, size=(12, 1))], [Listbox(values=('Listbox 1', 'Listbox 2', 'Listbox 3'), enable_events =True, size=(10, 3), key='_LIST_')], - [Image(filename=r'C:\Python\PycharmProjects\GooeyGUI\logo200.png', enable_events=True)], + # [Image(filename=r'C:\Python\PycharmProjects\GooeyGUI\logo200.png', enable_events=True)], [Image(data=DEFAULT_BASE64_ICON)], [Slider((1, 100), default_value=80, key='_SLIDER_', visible=True, enable_events=True, orientation='v')], [Spin(values=(1, 2, 3), initial_value='2', size=(4, 1), key='_SPIN_', enable_events=True)], diff --git a/PySimpleGUIWeb/readme.md b/PySimpleGUIWeb/readme.md index d2b1adbd..0005a110 100644 --- a/PySimpleGUIWeb/readme.md +++ b/PySimpleGUIWeb/readme.md @@ -8,7 +8,7 @@ ![Python Version](https://img.shields.io/badge/Python-3.x-yellow.svg) -![Python Version](https://img.shields.io/badge/PySimpleGUIWeb_-0.23.0-orange.svg?longCache=true&style=for-the-badge) +![Python Version](https://img.shields.io/badge/PySimpleGUIWeb_-0.24.0-orange.svg?longCache=true&style=for-the-badge) @@ -314,8 +314,23 @@ New features * Changed Image element to use SuperImage class * Image element works better? * Base64 not yet working - - + +## 0.23.1 21-Apr-2019 +One-time patch to remove a debug print + +# 0.24.0 PySimpleGUIWeb 23-Apr-2019 + +* Enabled SuperImage class to accept base64 imagees +* Now use an SvgGroup to hold all of the drawing items +* Circle can now set outline color +* DrawImage still isn't working +* Move isn't working +* Added Relocate for group +* Lazy buttons - Up, Down, Left, Right(() + * Creates buttons with arrows on them as text +* Base64 support for Image Element + + # Design # Author @@ -327,7 +342,6 @@ New features # Acknowledgments \ No newline at end of file