Skip to content

Commit

Permalink
Merge pull request #75 from FNBBDevs/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ethanlchristensen authored Nov 2, 2024
2 parents 94341b8 + cdb4365 commit 9dd5f85
Show file tree
Hide file tree
Showing 8 changed files with 529 additions and 17 deletions.
12 changes: 9 additions & 3 deletions bruhanimate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,22 +75,26 @@
offset_demo,
static_demo,
chatbot_demo,
firework_demo,
)


__version__ = "0.2.69"
__version__ = "0.2.74"
__valid_demos__ = [
"static_demo",
"offset_demo",
"matrix_demo",
"gol_demo",
"rain_demo",
"chatbot_demo" "line_demo",
"chatbot_demo",
"line_demo",
"plasma_demo",
"snow_demo",
"stars_demo",
"twinkle_demo",
"noise_demo" "holiday",
"noise_demo",
"holiday",
"firework_demo"
]

if sys.platform == "win32":
Expand Down Expand Up @@ -162,6 +166,7 @@
"text_to_image",
"TwinkleEffect",
"TWINKLE_SPEC",
"firework_demo",
]
else:
__all__ = [
Expand Down Expand Up @@ -229,5 +234,6 @@
"text_to_image",
"TwinkleEffect",
"TWINKLE_SPEC",
"firework_demo",
]

4 changes: 4 additions & 0 deletions bruhanimate/bruheffect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
from .offset_effect import OffsetEffect
from .rain_effect import RainEffect
from .noise_effect import NoiseEffect
from .firework_effect import FireworkEffect, Firework, Particle


if sys.platform == "win32":
Expand All @@ -37,6 +38,9 @@
"Key",
"Line",
"TWINKLE_SPEC",
"FireworkEffect",
"Firework",
"Particle"
]
else:
__all__ = [
Expand Down
Loading

0 comments on commit 9dd5f85

Please sign in to comment.