Skip to content

Commit 6e802c7

Browse files
committed
Version 1.1.133-134
* Added a `try except` clause when importing the sound subpackage to handle for MacOS Users * The goopylib `__init__.py` file not longer imports everything.
1 parent 87af3fe commit 6e802c7

File tree

13 files changed

+15
-8
lines changed

13 files changed

+15
-8
lines changed

Documentation/MathFeatures.png

61.3 KB
Loading

Documentation/ObjectFeatures.png

54 KB
Loading

Documentation/SoundFeatures.png

51.8 KB
Loading
Binary file not shown.

Examples/HelloWorld.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
# Creates the title text and makes it glide in from the side with an elastic ease for 2 seconds
88
title = Text([0, 250], "Hello World!", text_align="center", font_colour=WHITE, font_size=30,
99
font_face="Century Gothic", font_style="bold").draw()
10-
title.glide_to_x(250, time=2, easing=py_ease_elastic_out())
10+
title.glide_to_x(250, time=10, easing=py_ease_elastic_out())
1111

1212
# Creates the subtitle and makes it glide in from the bottom with a circle ease for 2 seconds
1313
subtitle = Text([250, 520], "Bhavye's 2nd program", text_align="center", font_colour=WHITE, font_size=12,
1414
font_face="Century Gothic").draw()
15-
subtitle.glide(0, 0, time=1)
16-
subtitle.glide_to_y(300, time=2, easing=py_ease_circle_out())
15+
subtitle.glide(0, 0, time=5)
16+
subtitle.glide_to_y(300, time=10, easing=py_ease_circle_out())
1717

1818
while True: # The Mainloop
1919
window.update() # Updating the Window

MathFeatures.png

61.3 KB
Loading

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,11 @@ https://stackoverflow.com/questions/63978464/error-when-compiling-cpython-cannot
206206
There are probably still a lot of bugs in the release version, but I moved onto Version 1.1 because I started working
207207
on converting goopylib code to Cython C and also building a Sound Engine for goopylib 1.2
208208

209+
#### 1.1.1134-alpha15 27th October 2020
210+
211+
* Added a `try except` clause when importing the sound subpackage to handle for MacOS Users
212+
* The goopylib `__init__.py` file not longer imports everything.
213+
209214
#### 1.1.132-alpha14 4th-20th October 2020
210215

211216
* Fixed bug with the `AnimatedImage` class not defining its `anchor` attribute

goopylib/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
11
from goopylib.constants import _root
2-
from goopylib import imports
-40 Bytes
Binary file not shown.
195 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)