Skip to content

Commit

Permalink
initial stable release
Browse files Browse the repository at this point in the history
  • Loading branch information
AviationSFO committed Dec 15, 2021
1 parent 77bb288 commit a193e7b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@ v0.5r2 fix score doc

V0.5.1
Added install script

STABLES
v1.0

v1.0
Changed fall speed increasing, optimizations, STABLE RELEASE!
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Dodger Game
Move around to avoide getting hit by falling objects
If you get hit you lose!
If you get hit you lose that round!

# Instructions
Arrow keys to move left and right
Expand Down
3 changes: 2 additions & 1 deletion dodger.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
highscore = highscoredoc.read()
# Creating a window screen
wn = turtle.Screen()
wn.title("Dodger Game BETA v0.5.1")
wn.title("Dodger Game v1.0")
wn.bgcolor("black")
wn.setup(width=600, height=600)
wn.tracer(0)
Expand Down Expand Up @@ -150,6 +150,7 @@ def move():
if score_this_round == 5 or score_this_round > 5:
score += 1
score_this_round = 0
fallspeed += 0.075
if int(score) < 0:
pen.goto(0, 100)
pen.write("GAME OVER!\nrestart game", align="center", font=("helvetica", 20, "bold"))
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Version BETA v0.5.1
Version STABLE v1.0.0

0 comments on commit a193e7b

Please sign in to comment.