Skip to content

Commit dee0c81

Browse files
authored
Merge pull request PySimpleGUI#6512 from PySimpleGUI/Dev-latest
Dev latest
2 parents ce32fe3 + 4504ea7 commit dee0c81

File tree

10 files changed

+37
-25
lines changed

10 files changed

+37
-25
lines changed

PySimpleGUI.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22475,7 +22475,7 @@ def popup_animated(image_source, message=None, background_color=None, text_color
2247522475
:param icon: Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO
2247622476
:type icon: str | bytes
2247722477
:param no_buffering: If True then no buffering will be used for the GIF. May work better if you have a large animation
22478-
:type no_buffering: (str)
22478+
:type no_buffering: (bool)
2247922479
:return: True if the window updated OK. False if the window was closed
2248022480
:rtype: bool
2248122481
"""

docs/call reference.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388.
28+
2F6C6BE01B8940D3E457.
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>
@@ -16903,7 +16903,8 @@ popup_animated(image_source,
1690316903
time_between_frames = 0,
1690416904
transparent_color = None,
1690516905
title = "",
16906-
icon = None)
16906+
icon = None,
16907+
no_buffering = False)
1690716908
```
1690816909

1690916910
Parameter Descriptions:
@@ -16925,6 +16926,7 @@ Parameter Descriptions:
1692516926
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
1692616927
| str | title | Title that will be shown on the window |
1692716928
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
16929+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
1692816930
| bool | **RETURN** | True if the window updated OK. False if the window was closed
1692916931

1693016932
Popup that closes itself after some time period
@@ -17987,7 +17989,8 @@ PopupAnimated(image_source,
1798717989
time_between_frames = 0,
1798817990
transparent_color = None,
1798917991
title = "",
17990-
icon = None)
17992+
icon = None,
17993+
no_buffering = False)
1799117994
```
1799217995

1799317996
Parameter Descriptions:
@@ -18009,6 +18012,7 @@ Parameter Descriptions:
1800918012
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
1801018013
| str | title | Title that will be shown on the window |
1801118014
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
18015+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
1801218016
| bool | **RETURN** | True if the window updated OK. False if the window was closed
1801318017

1801418018
Display a Popup without a titlebar. Enables grab anywhere so you can move it

docs/cookbook.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388
28+
2F6C6BE01B8940D3E457
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>

docs/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388
28+
2F6C6BE01B8940D3E457
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>
@@ -2028,7 +2028,8 @@ popup_animated(image_source,
20282028
time_between_frames = 0,
20292029
transparent_color = None,
20302030
title = "",
2031-
icon = None)
2031+
icon = None,
2032+
no_buffering = False)
20322033
```
20332034

20342035
Parameter Descriptions:
@@ -2050,6 +2051,7 @@ Parameter Descriptions:
20502051
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
20512052
| str | title | Title that will be shown on the window |
20522053
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
2054+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
20532055
| bool | **RETURN** | True if the window updated OK. False if the window was closed
20542056

20552057
***To close animated popups***, call PopupAnimated with `image_source=None`. This will close all of the currently open PopupAnimated windows.

docs/readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<img src="https://www.dropbox.com/s/6wzf3ebmj97v4zs/PySimpleGUI-GitHub-Udemy-Course.png?raw=1" width=200 alt="PySimpleGUI Udemy Course">
1010
</td>
1111
<td>
12-
<h5>apply coupon for discount:<br>62A4C02AB0A3DAB34388</h6>
13-
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388">click here to visit course page</a>
12+
<h5>apply coupon for discount:<br>2F6C6BE01B8940D3E457</h6>
13+
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457">click here to visit course page</a>
1414
</td>
1515
</tr>
1616
</table>

readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
<img src="https://www.dropbox.com/s/6wzf3ebmj97v4zs/PySimpleGUI-GitHub-Udemy-Course.png?raw=1" width=200 alt="PySimpleGUI Udemy Course">
1010
</td>
1111
<td>
12-
<h5>apply coupon for discount:<br>F988F082A3D18483B1C5</h6>
13-
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=F988F082A3D18483B1C5">click here to visit course page</a>
12+
<h5>apply coupon for discount:<br>2F6C6BE01B8940D3E457</h6>
13+
<a href="https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457">click here to visit course page</a>
1414
</td>
1515
</tr>
1616
</table>

readme_creator/markdown input files/1_HEADER_top_part.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ HOW DO I INSERT IMAGES ???
5252
<span style="font-weight: normal;">
5353
apply coupon for discount:
5454
</span>
55-
62A4C02AB0A3DAB34388
55+
2F6C6BE01B8940D3E457
5656
</div>
57-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
57+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
5858
click here to visit course page
5959
</button>
6060
</div>

readme_creator/markdown input files/5_call_reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388.
28+
2F6C6BE01B8940D3E457.
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>

readme_creator/output/call reference.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388.
28+
2F6C6BE01B8940D3E457.
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>
@@ -16903,7 +16903,8 @@ popup_animated(image_source,
1690316903
time_between_frames = 0,
1690416904
transparent_color = None,
1690516905
title = "",
16906-
icon = None)
16906+
icon = None,
16907+
no_buffering = False)
1690716908
```
1690816909

1690916910
Parameter Descriptions:
@@ -16925,6 +16926,7 @@ Parameter Descriptions:
1692516926
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
1692616927
| str | title | Title that will be shown on the window |
1692716928
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
16929+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
1692816930
| bool | **RETURN** | True if the window updated OK. False if the window was closed
1692916931

1693016932
Popup that closes itself after some time period
@@ -17987,7 +17989,8 @@ PopupAnimated(image_source,
1798717989
time_between_frames = 0,
1798817990
transparent_color = None,
1798917991
title = "",
17990-
icon = None)
17992+
icon = None,
17993+
no_buffering = False)
1799117994
```
1799217995

1799317996
Parameter Descriptions:
@@ -18009,6 +18012,7 @@ Parameter Descriptions:
1800918012
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
1801018013
| str | title | Title that will be shown on the window |
1801118014
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
18015+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
1801218016
| bool | **RETURN** | True if the window updated OK. False if the window was closed
1801318017

1801418018
Display a Popup without a titlebar. Enables grab anywhere so you can move it

readme_creator/output/index.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
<span style="font-weight: normal;">
2626
apply coupon for discount:
2727
</span>
28-
62A4C02AB0A3DAB34388
28+
2F6C6BE01B8940D3E457
2929
</div>
30-
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=62A4C02AB0A3DAB34388','_blank');">
30+
<button style="margin: 0 auto; display: block; width: 200px; height: 70px; border-radius: 14px; border: none; padding: 10px; font-size: 18px; background-color: #357296; color: white; cursor: pointer;" onclick="window.open('https://www.udemy.com/course/pysimplegui/?couponCode=2F6C6BE01B8940D3E457','_blank');">
3131
click here to visit course page
3232
</button>
3333
</div>
@@ -2028,7 +2028,8 @@ popup_animated(image_source,
20282028
time_between_frames = 0,
20292029
transparent_color = None,
20302030
title = "",
2031-
icon = None)
2031+
icon = None,
2032+
no_buffering = False)
20322033
```
20332034

20342035
Parameter Descriptions:
@@ -2050,6 +2051,7 @@ Parameter Descriptions:
20502051
| str | transparent_color | This color will be completely see-through in your window. Can even click through |
20512052
| str | title | Title that will be shown on the window |
20522053
| str or bytes | icon | Same as Window icon parameter. Can be either a filename or Base64 byte string. For Windows if filename, it MUST be ICO format. For Linux, must NOT be ICO |
2054+
| bool | no_buffering | If True then no buffering will be used for the GIF. May work better if you have a large animation |
20532055
| bool | **RETURN** | True if the window updated OK. False if the window was closed
20542056

20552057
***To close animated popups***, call PopupAnimated with `image_source=None`. This will close all of the currently open PopupAnimated windows.

0 commit comments

Comments
 (0)