Skip to content

Commit

Permalink
Develop (#25)
Browse files Browse the repository at this point in the history
* remove get latest button, remove uservoice link

* add get started, add start-dev

* add final level, refactor

* try fix heroku port issue

* fix server.js, remove stupid line

* score validation

* bump version to 1.0.2

* limit level to 10

* add dummy tests

* fix newGame issues

* fix bump version for package-lock.json

* version bump to 1.0.3
  • Loading branch information
platzhersh authored Dec 26, 2020
1 parent 4dad697 commit c65197e
Show file tree
Hide file tree
Showing 10 changed files with 4,902 additions and 205 deletions.
4 changes: 3 additions & 1 deletion bump_version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,10 @@ function write_new_version {
local rep="\"version\": \"${newVersion}\""
sed -i "" "s/${line}/${rep}/g" package.json

# in package-lock.json we only want to replace the very first occurence
echo " package-lock.json"
sed -i "" "s/${line}/${rep}/g" package-lock.json
sed -e "/${line}/{s//${rep}/;:a" -e '$!N;$!ba' -e '}' package-lock.json > tmp && mv tmp package-lock.json


# TODO: update last_update
echo " web-app-manifest.json"
Expand Down
2 changes: 1 addition & 1 deletion cache.manifest
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CACHE MANIFEST
# Pacman 1.0.2 2020-12-26 14:04:47
# Pacman 1.0.3 2020-12-26 20:23:31

CACHE:

Expand Down
2 changes: 1 addition & 1 deletion index.htm
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ <h3>Powerpills</h3>
<div class="button" id="back">&lt; back</div>
<div>
<h1>Info</h1>
<p>Current Version: <span class="app-version">1.0.2 (2020-12-26)</span></p>
<p>Current Version: <span class="app-version">1.0.3 (2020-12-26)</span></p>
<img src="img/platzh1rsch-logo.png">
<p>Pacman Canvas is Open Source, written by <a href="http://platzh1rsch.ch">platzh1rsch</a>. You can get the code on <a target="_blank" href="https://github.com/platzhersh/pacman-canvas" target="_blank">github</a>.</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Pacman Canvas",
"version": "1.0.2",
"version": "1.0.3",

"short_name": "Pacman Canvas",
"description": "An old classic, rewritten in HTML5",
Expand Down
Loading

0 comments on commit c65197e

Please sign in to comment.