Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
digitaltom committed Dec 29, 2012
1 parent 0ecf298 commit b58c746
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 14 deletions.
11 changes: 8 additions & 3 deletions README.md
Expand Up @@ -6,16 +6,21 @@ Features:
- Compatible with all HTML5 browsers, - Compatible with all HTML5 browsers,
tested with: Firefox 15+, Chrome tested with: Firefox 15+, Chrome
- No dependencies - No dependencies
- Easy level creation with textfiles - Easy level creation from textfiles
- Supports different themes - Supports different themes
- Soundeffects - Soundeffects




- Tablet + Mobile support: - Tablet + Mobile support:
- Touchscreen controls - Touchscreen controls
- responds to changing screen dimensions (rotate) - Automatically fit to screen dimensions (also on rotate)
- Supports different screen dimensions (Tablet, phone ...)




Have Fun! Have Fun!
Tom (tom@digitalflow.de) Tom (tom@digitalflow.de)


Credits:
- Geeko inspired by work from S.Kemter
- Sounds from freesound.org
- Sprites from opengameart.org
3 changes: 0 additions & 3 deletions TODO
Expand Up @@ -3,9 +3,6 @@ TODO:
- iphone fullscreen - iphone fullscreen
- avoid double jumps - avoid double jumps


- suse level
- release! blog entry



IDEAS: IDEAS:


Expand Down
8 changes: 4 additions & 4 deletions index.html
Expand Up @@ -7,7 +7,7 @@
<meta name="apple-mobile-web-app-capable" content="yes"/> <meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/> <meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>


<title>Geeko Challenge</title> <title>Geeko Run</title>


<link href="css/game.css" rel="stylesheet" type="text/css"> <link href="css/game.css" rel="stylesheet" type="text/css">
<link href="css/pad-controls.css" rel="stylesheet" type="text/css"> <link href="css/pad-controls.css" rel="stylesheet" type="text/css">
Expand All @@ -23,7 +23,7 @@
<div id="game-menu" class="game-info"> <div id="game-menu" class="game-info">


<div class="menu-item menu-text" id="intro"> <div class="menu-item menu-text" id="intro">
<p>Welcome to the Geeko challenge!</p> <p>Welcome to the Geeko run!</p>
</div> </div>


<div class="menu-item menu-link" id="button-play3"> <div class="menu-item menu-link" id="button-play3">
Expand Down Expand Up @@ -73,10 +73,10 @@
<script type="text/javascript" src="js/sounds.js" charset="utf-8"></script> <script type="text/javascript" src="js/sounds.js" charset="utf-8"></script>




<!-- <a href="https://github.com/digitaltom/hackweek"> <a href="https://github.com/digitaltom/jump-run">
<img style="position: absolute; top: 0; right: 0; border: 0;" <img style="position: absolute; top: 0; right: 0; border: 0;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png"
alt="Fork me on GitHub"></a> --> alt="Fork me on GitHub"></a>


</body> </body>
</html> </html>
4 changes: 2 additions & 2 deletions js/game.js
Expand Up @@ -3,10 +3,10 @@ var ticks = 0;
var spriteMap = new Image; var spriteMap = new Image;
var actors; var actors;
var items; var items;
var debug = true; var debug = false;


// default theme and level // default theme and level
var theme = 'snoop' var theme = 'suse'
var current_level = levels[1]; var current_level = levels[1];


var gameInterval; var gameInterval;
Expand Down
4 changes: 2 additions & 2 deletions js/levels.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified screenshots/desktop_mario.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/desktop_suse.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified screenshots/tablet_suse.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit b58c746

Please sign in to comment.