diff --git a/README.md b/README.md index 67e2d12..00a5624 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,8 @@ you've made yourself! | 13. | [**OneTwoThreeButtonGame**](./games/013_OneTwoThreeButtonGame)
CleverPet |[![Install OneTwoThreeButtonGame](./docs/images/install.png)][OneTwoThreeButtonGame]| This game can be useful during initial training of a player to use the Hub. | ![]() | | 14. | [**ColorMatchGame**](./games/014_ColorMatchGame)
CleverPet |[![Install ColorMatchGame](./docs/images/install.png)][ColorMatchGame]| Touching a touchpad toggles it to a different color, the game ends when all the touchpad colors match. | ![]() | | 15. | [**WhackAMole**](./games/015_WhackAMole)
CleverPet |[![Install WhackAMole](./docs/images/install.png)][WhackAMole]| This is a more "active" game for the Hub that challenges your player's "paw-eye" coordination. | ![]() | - | 16. | [**Simon**](./games/016_Simon)
Jelmer Tiete |[![Install Simon](./docs/images/install.png)][Simon]| The classic Simon game, but now for your pet! | ![]() | + | 16. | [**ControlPet**](./games/016_ControlPet)
Michael Gschwandtner  | [![Install ControlPet](./docs/images/install.png)][ControlPet] | Remote control app for the hub. Control the hub either via a webinterface or from a python program. Enables rapid prototyping of new ideas and guided learning of the hub | ![]() | + | 17. | [**Symon**](./games/017_Symon)
Jelmer Tiete  | [![Install Symon](./docs/images/install.png)][Symon] | CleverPet's take on the classic Simon game! | ![]() | -------- @@ -150,4 +151,5 @@ in specific ways: [OneTwoThreeButtonGame]: https://install.hackerpet.com/?name=OneTwoThreeButtonGame&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/013_OneTwoThreeButtonGame/src/OneTwoThreeButtonGame.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/013_OneTwoThreeButtonGame/project.properties [ColorMatchGame]: https://install.hackerpet.com/?name=ColorMatchGame&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/014_ColorMatchGame/src/ColorMatchGame.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/014_ColorMatchGame/project.properties [WhackAMole]: https://install.hackerpet.com/?name=WhackAMole&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/015_WhackAMole/src/WhackAMole.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/015_WhackAMole/project.properties -[Simon]: https://install.hackerpet.com/?name=Simon&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_Simon/src/simon.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_Simon/project.properties +[ControlPet]: https://install.hackerpet.com/?name=ControlPet&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/SocketIOclient.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/SocketIOclient.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSockets.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSockets.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSocketsClient.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSocketsClient.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSocketsServer.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/WebSocketsServer.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/cdecode.c&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/cdecode_inc.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/cencode.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/cencode_inc.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/controlpet.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/controlpet_util.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/controlpet_util.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/libsha1.c&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/libsha1.h&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/016_ControlPet/project.properties +[Symon]: https://install.hackerpet.com/?name=Symon&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/017_Symon/src/symon.cpp&f=https://raw.githubusercontent.com/CleverPet/hackerpet-games/master/games/017_Symon/project.properties diff --git a/games.json b/games.json index a0cebd2..0a453ec 100644 --- a/games.json +++ b/games.json @@ -156,10 +156,9 @@ { "title": "Simon", "author": "Jelmer Tiete ", - "description_sentence":"The classic Simon game, but now for your pet!", + "description_sentence":"CleverPet's take on the classic Simon game!", "description_paragraph":"", - "type": "github.com", - "url": "https://github.com/CleverPet/HackerPet-games/games/016_Simon/", + "url": "https://github.com/CleverPet/HackerPet-games/games/017_Symon/", "media": "", "tags":["Community","CleverPet"] }] diff --git a/games/016_Simon/project.properties b/games/016_Simon/project.properties index 1ddace0..f1ba765 100644 --- a/games/016_Simon/project.properties +++ b/games/016_Simon/project.properties @@ -1,2 +1,2 @@ -name=simon +name=Symon dependencies.hackerpet=0.2.2