Skip to content

Commit 41e137e

Browse files
authored
Merge pull request PySimpleGUI#6529 from PySimpleGUI/Dev-latest
New Udemy coupons... added earlier but forgot to post to GitHub
2 parents dee0c81 + 2470d10 commit 41e137e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

PySimpleGUI.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/python3
22

3-
version = __version__ = "4.61.0.198 Unreleased"
3+
version = __version__ = "4.61.0.199 Unreleased"
44

55
_change_log = """
66
Changelog since 4.60.0 released to PyPI on 8-May-2022
@@ -468,7 +468,8 @@
468468
Made Table Element Header mouse-over and clicked be the inverse of the normal header colors. Makes for a much nicer experience
469469
4.61.0.198
470470
Added no_buffering option to popup_animated
471-
471+
4.61.0.199
472+
Updated Udemy coupon code
472473

473474
"""
474475

@@ -26797,15 +26798,15 @@ def main():
2679726798
elif event == 'Get Text':
2679826799
popup_scrolled('Returned:', popup_get_text('Enter some text', keep_on_top=True))
2679926800
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')
2680126802
elif event.startswith('-SPONSOR-'):
2680226803
if webbrowser_available:
2680326804
webbrowser.open_new_tab(r'https://www.paypal.me/pythongui')
2680426805
elif event == '-COFFEE-':
2680526806
if webbrowser_available:
2680626807
webbrowser.open_new_tab(r'https://www.buymeacoffee.com/PySimpleGUI')
2680726808
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',
2680926810
'A personal message from Mike -- thank you so very much for supporting PySimpleGUI!', title='Udemy Coupon', image=EMOJI_BASE64_MIKE, keep_on_top=True)
2681026811
elif event == 'Themes':
2681126812
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

Comments
 (0)