|
1 | 1 | #!/usr/bin/python3 |
2 | 2 |
|
3 | | -version = __version__ = "4.61.0.198 Unreleased" |
| 3 | +version = __version__ = "4.61.0.199 Unreleased" |
4 | 4 |
|
5 | 5 | _change_log = """ |
6 | 6 | Changelog since 4.60.0 released to PyPI on 8-May-2022 |
|
468 | 468 | Made Table Element Header mouse-over and clicked be the inverse of the normal header colors. Makes for a much nicer experience |
469 | 469 | 4.61.0.198 |
470 | 470 | Added no_buffering option to popup_animated |
471 | | - |
| 471 | + 4.61.0.199 |
| 472 | + Updated Udemy coupon code |
472 | 473 |
|
473 | 474 | """ |
474 | 475 |
|
@@ -26797,15 +26798,15 @@ def main(): |
26797 | 26798 | elif event == 'Get Text': |
26798 | 26799 | popup_scrolled('Returned:', popup_get_text('Enter some text', keep_on_top=True)) |
26799 | 26800 | elif event.startswith('-UDEMY-'): |
26800 | | - webbrowser.open_new_tab(r'https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388') |
| 26801 | + webbrowser.open_new_tab(r'https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457') |
26801 | 26802 | elif event.startswith('-SPONSOR-'): |
26802 | 26803 | if webbrowser_available: |
26803 | 26804 | webbrowser.open_new_tab(r'https://www.paypal.me/pythongui') |
26804 | 26805 | elif event == '-COFFEE-': |
26805 | 26806 | if webbrowser_available: |
26806 | 26807 | webbrowser.open_new_tab(r'https://www.buymeacoffee.com/PySimpleGUI') |
26807 | 26808 | elif event in ('-EMOJI-HEARTS-', '-HEART-', '-PYTHON HEARTS-'): |
26808 | | - popup_scrolled("Oh look! It's a Udemy discount coupon!", '62A4C02AB0A3DAB34388', |
| 26809 | + popup_scrolled("Oh look! It's a Udemy discount coupon!", '2F6C6BE01B8940D3E457', |
26809 | 26810 | 'A personal message from Mike -- thank you so very much for supporting PySimpleGUI!', title='Udemy Coupon', image=EMOJI_BASE64_MIKE, keep_on_top=True) |
26810 | 26811 | elif event == 'Themes': |
26811 | 26812 | search_string = popup_get_text('Enter a search term or leave blank for all themes', 'Show Available Themes', keep_on_top=True) |
|
0 commit comments