Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/attogram/games
Browse files Browse the repository at this point in the history
  • Loading branch information
attogram committed May 9, 2019
2 parents 5412076 + 67ba680 commit c377543
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ games.html
.idea/
2048-lite/
3d.city/
8queens/
c4/
chess/
chordomatic/
classic-pool/
clumsy-bird/
dead-valley/
EightQueens/
fire-n-ice/
hexgl-lite/
hextris-lite/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ of the following games:

* 2048 Lite - <https://github.com/attogram/2048-lite>
* 3d.city - <https://github.com/lo-th/3d.city>
* 8 Queens - <https://github.com/attogram/8queens> _(requires composer)_
* Chess - <https://github.com/attogram/chess>
* Classic Pool Game - <https://github.com/henshmi/Classic-Pool-Game>
* Clumsy Bird - <https://github.com/ellisonleao/clumsy-bird>
* Dead Valley - <https://github.com/dmcinnes/dead-valley>
* Eight Queens - <https://github.com/attogram/EightQueens>
* Fire 'n Ice - <https://github.com/eugenioenko/fire-n-ice>
* HexGL Lite - <https://github.com/attogram/HexGL-lite>
* Hextris Lite - <https://github.com/attogram/hextris-lite>
Expand All @@ -39,7 +39,7 @@ of the following games:
* Phaser Cat - <https://github.com/DaxChen/phaser-cat> _(requires yarn)_
* The Pond Lite - <https://github.com/attogram/pond-lite>
* Raging Gardens - <https://github.com/alunix/RagingGardensFB>
* Snakisms - <https://github.com/pippinbarr/SNAKISMS>
* Snakisms - <https://github.com/attogram/SNAKISMS-lite>
* Tap Tap Tap - <https://github.com/MahdiF/taptaptap>
* Tower - <https://github.com/iamkun/tower_game>
* Twisty Polyhedra - <https://github.com/aditya-r-m/twisty-polyhedra>
Expand Down
24 changes: 11 additions & 13 deletions _build/games.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,11 @@
// The Ordered List of Games
$games = [
'hextris-lite' => [
'name' => 'Hextris Lite',
'name' => 'Hextris',
'tag' => 'hexagonal tetris',
'git' => 'https://github.com/attogram/hextris-lite.git',
'mobile' => true,
'desktop' => true,

],
'pond' => [
'name' => 'The Pond',
Expand All @@ -25,7 +24,7 @@
'desktop' => true,
],
'2048-lite' => [
'name' => '2048 Lite',
'name' => '2048',
'tag' => '2, 4, 8, swipe',
'git' => 'https://github.com/attogram/2048-lite.git',
'mobile' => true,
Expand Down Expand Up @@ -68,22 +67,21 @@
'mobile' => true,
'desktop' => true,
],
'EightQueens' => [
'name' => 'Eight Queens',
'tag' => 'chess puzzle',
'git' => 'https://github.com/attogram/EightQueens.git',
'branch' => 'gh-pages',
'mobile' => true,
'desktop' => true,
],
'chess' => [
'name' => 'Chess',
'tag' => 'e2 to e4',
'git' => 'https://github.com/attogram/chess.git',
'mobile' => true,
'desktop' => true,
],
'8queens' => [
'name' => '8 Queens',
'tag' => 'chess puzzle',
'git' => 'https://github.com/attogram/8queens.git',
'require' => ['composer'],
'build' => ['composer install'],
'mobile' => false,
'desktop' => true,
],
'hexgl-lite' => [
'name' => 'HexGL',
'tag' => 'racing pod',
Expand Down Expand Up @@ -195,7 +193,7 @@
'snakisms' => [
'name' => 'Snakisms',
'tag' => 'philosophy snake',
'git' => 'https://github.com/pippinbarr/SNAKISMS.git',
'git' => 'https://github.com/attogram/SNAKISMS-lite.git',
'mobile' => true,
'desktop' => true,
],
Expand Down
9 changes: 9 additions & 0 deletions _build/retired.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
// Preserved here for possible later use

$retiredGames = [
'8queens' => [
'name' => '8 Queens',
'tag' => 'chess puzzle',
'git' => 'https://github.com/attogram/8queens.git',
'require' => ['composer'],
'build' => ['composer install'],
'mobile' => false,
'desktop' => true,
],
'pacman' => [
'name' => 'pacman',
'tag' => 'eat the dots',
Expand Down

0 comments on commit c377543

Please sign in to comment.