Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
busayojee committed Dec 17, 2023
1 parent 3d10f92 commit f0da005
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
/env
*/__pycache__
*/test.py
/.venv
2 changes: 1 addition & 1 deletion dinoterm/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
VERSION = (1,0,0)
VERSION = (1,0,1)
VERSION_STRING = ".".join([str(v) for v in VERSION])
1 change: 0 additions & 1 deletion dinoterm/game.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

import random

class Game:
Expand Down
8 changes: 4 additions & 4 deletions dinoterm/main.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import curses
from play import Play
from .play import Play
import click
from __init__ import VERSION_STRING
from . import VERSION_STRING
import time

def getScreen_dimension(stdscr):
Expand Down Expand Up @@ -59,5 +59,5 @@ def print_version(ctx, param, value):
def main():
curses.wrapper(main_function)

if __name__ == '__main__':
main()
# if __name__ == '__main__':
# main()
2 changes: 1 addition & 1 deletion dinoterm/play.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from game import Game
from .game import Game
import time
class Play(Game):
baseTime = 0.1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='dino-terminal',
version='1.0.0',
version='1.0.1',
description="Chrome Dino game in your terminal",
author="Alabi Busayo",
author_email="[email protected]",
Expand Down

0 comments on commit f0da005

Please sign in to comment.