Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanlchristensen committed Nov 2, 2024
1 parent 936368f commit cdb4365
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bruhanimate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
)


__version__ = "0.2.73"
__version__ = "0.2.74"
__valid_demos__ = [
"static_demo",
"offset_demo",
Expand Down
7 changes: 5 additions & 2 deletions bruhanimate/demos/firework_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from ..bruhrenderer import CenterRenderer
from ..bruhutil import Screen, text_to_image, get_image

def main(screen: Screen):
def fireworks(screen: Screen):
renderer = CenterRenderer(
screen=screen,
img=text_to_image("FIREWORKS!"),
Expand All @@ -35,5 +35,8 @@ def main(screen: Screen):

renderer.run()

def run():
Screen.show(fireworks)

if __name__ == "__main__":
Screen.show(main)
run()
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()

VERSION = "0.2.73"
VERSION = "0.2.74"
DESCRIPTION = 'ASCII Terminal Animation Package'
LONG_DESCRIPTION = 'A package that allows for various animations in the terminal'

Expand Down

0 comments on commit cdb4365

Please sign in to comment.