generated from remarkablegames/phaser-rpg
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from remarkablegames/release-please--branches-…
…-master--components--lights-out chore(master): release 1.0.0
- Loading branch information
Showing
3 changed files
with
35 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Changelog | ||
|
||
## 1.0.0 (2024-04-26) | ||
|
||
|
||
### Features | ||
|
||
* **assets:** replace misa with spaceman ([2738c10](https://github.com/remarkablegames/lights-out/commit/2738c10de7efaabd60626449b9e33e3288115b4f)) | ||
* **components:** improve Score ([132f022](https://github.com/remarkablegames/lights-out/commit/132f022c3387283f934a2a966fa37dcb6d423131)) | ||
* **components:** render Score in Main ([d4aea76](https://github.com/remarkablegames/lights-out/commit/d4aea76527eb258abe3194272b1a51f50402d365)) | ||
* **graphics:** add TileMarker ([b28488d](https://github.com/remarkablegames/lights-out/commit/b28488d54516fb3c0784cf03c6494136c51411d8)) | ||
* **levels:** add 2 more levels ([efecd92](https://github.com/remarkablegames/lights-out/commit/efecd92cd405d06c13e963276a6e9e4499e60b20)) | ||
* **levels:** add 2 more levels ([e4e52d6](https://github.com/remarkablegames/lights-out/commit/e4e52d6b568201409e86a698e351017ff7d2f7d6)) | ||
* **scenes:** add Lose ([0c22172](https://github.com/remarkablegames/lights-out/commit/0c22172952f8cb092110122354d40095f33d15a1)) | ||
* **scenes:** add vignette FX to Main camera ([5acaa37](https://github.com/remarkablegames/lights-out/commit/5acaa3730309b859733317209faa0ee8395af4ed)) | ||
* **scenes:** add Win ([95128c2](https://github.com/remarkablegames/lights-out/commit/95128c282415d0bde7ad312d333c376a9a791e6e)) | ||
* **scenes:** decrease vignette radius over time ([3ca7b9d](https://github.com/remarkablegames/lights-out/commit/3ca7b9d406f0c31baf14db2e917c171189a375de)) | ||
* **scenes:** generate 10 Cat in Main and add collision ([bdc7949](https://github.com/remarkablegames/lights-out/commit/bdc7949af5cd5f8634a2675ae2b193fb67e54daa)) | ||
* **scenes:** render helper text about goal in Main ([03ebaac](https://github.com/remarkablegames/lights-out/commit/03ebaac5f9f03b2029b5e712762dd002f6370132)) | ||
* **sprites:** add shine to Spaceman ([8f2c25b](https://github.com/remarkablegames/lights-out/commit/8f2c25b17423ff3feac46f969ddf4f07bfe66926)) | ||
* **sprites:** set tint and update velocity in Cat ([d17524c](https://github.com/remarkablegames/lights-out/commit/d17524c8c59fec6cf1a1bc1e709b9fdd7ce2c08b)) | ||
|
||
|
||
### Bug Fixes | ||
|
||
* add .idea to gitignore ([a9bcf21](https://github.com/remarkablegames/lights-out/commit/a9bcf21c4a2f25049dd1e2517a8a9e6ae6f98077)) | ||
* **assets:** fix tilemap so player can't get stuck ([85980b5](https://github.com/remarkablegames/lights-out/commit/85980b52b8cededf37eab07e26e4418496b82dec)) | ||
* **cat:** add first version of cat ([daea3e7](https://github.com/remarkablegames/lights-out/commit/daea3e7c6d99ce1431828dfcc0f437060b16191b)) | ||
* **scenes:** render Power after Typewriter ([77a9b8a](https://github.com/remarkablegames/lights-out/commit/77a9b8a276877cab7c4a46a74a94e03d858a69aa)) | ||
* **sprites:** adjust Player selector ([466b751](https://github.com/remarkablegames/lights-out/commit/466b7511dc9b4aa43abe636e4c961c31a28e5049)) | ||
* **sprites:** fix Cat movement ([ce3982a](https://github.com/remarkablegames/lights-out/commit/ce3982a2677589e8f04c8da88c4bb5d23a9ef271)) | ||
* **sprites:** fix selector position in Player ([8a503aa](https://github.com/remarkablegames/lights-out/commit/8a503aa1b318f955808c078fec9de5d112489043)) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "lights-out", | ||
"version": "1.0.0-alpha", | ||
"version": "1.0.0", | ||
"description": "Lights Out is a 2D arcade game.", | ||
"author": "Mark <[email protected]>", | ||
"scripts": { | ||
|