Commit: 982285dd2fe2bf9579ab9383b7d6764c2a468151 Parent: 78a8ebfe254f7ca07df95ad70da4bb41af1d1323 Author: Vi Grey Date: 2019-08-14 19:59 UTC Summary: Add bin directory and finished .nes file - Add bin directory - Add .nes file of current version ROM - Add archive of previous version ROMs - Fix accidental addition of second "Vi Grey" in README.md - Update v0.0.1 to v0.0.2 in CHR ROM .gitignore | 2 +- CHANGELOG.md | 16 ++++++++++++++++ Makefile | 1 - README.md | 4 +++- bin/archive/discord-nes-v0_0_1.nes | Bin 0 -> 40976 bytes bin/discord-nes-v0_0_2.nes | Bin 0 -> 40976 bytes src/discord-nes.asm | 2 +- src/graphics/tileset.chr | Bin 8192 -> 8192 bytes 8 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index c745919..5c63d3e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ -bin +bin/*.deb build diff --git a/CHANGELOG.md b/CHANGELOG.md index b84b981..a661138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,22 @@ # Change Log All notable changes to this project will be documented in this file. +## 0.0.2 - 2019-08-14 +### Added +- bin directory +- Current version NES ROM file +- Previous versions of the NES ROM file in bin/archives directory +- Note in README.md mentioning this ROM has not yet been tested with a TAS replay device + +### Changed +- v0.0.1 to v0.0.2 in CHR ROM data +- Comment saying Version 0.0.1 to Version 0.0.2 in main assembly file +- .gitignore file to ignore only .deb files in bin directory rather than entire bin directory + +### Removed +- Extra "Vi Grey" in README.md file +- Deletion of bin file when using `make clean` from Makefile + ## 0.0.1 - 2019-08-10 ### Added - Initial release diff --git a/Makefile b/Makefile index 1ec30ea..81e0f39 100755 --- a/Makefile +++ b/Makefile @@ -45,5 +45,4 @@ all: mv new.zip ../bin/$(PKG_NAME).nes; \ clean: - rm -rf -- $(CURRENTDIR)bin; \ rm -rf -- $(CURRENTDIR)build; \ diff --git a/README.md b/README.md index 9c6cd13..4c77412 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,11 @@ NES game that is also a Discord chat client -**_Discord for NES was created by Vi Grey Vi Grey (https://vigrey.com) and is licensed under the BSD 2-Clause License._** +**_Discord for NES was created by Vi Grey (https://vigrey.com) and is licensed under the BSD 2-Clause License._** ### Description: +**This NES ROM has yet to be tested with a TAS replay device. This notice will be removed once it has been successfully tested with a TAS replay device** + This is an NROM NES ROM that is also a Discord chat client that connects to Discord using a TAS replay device like TASBot. ### Platforms: diff --git a/bin/archive/discord-nes-v0_0_1.nes b/bin/archive/discord-nes-v0_0_1.nes new file mode 100644 index 0000000..39fdf7e Binary files /dev/null and b/bin/archive/discord-nes-v0_0_1.nes differ diff --git a/bin/discord-nes-v0_0_2.nes b/bin/discord-nes-v0_0_2.nes new file mode 100644 index 0000000..1a43d18 Binary files /dev/null and b/bin/discord-nes-v0_0_2.nes differ diff --git a/src/discord-nes.asm b/src/discord-nes.asm index 5b1b09b..1c0ef27 100644 --- a/src/discord-nes.asm +++ b/src/discord-nes.asm @@ -23,7 +23,7 @@ ; OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF ; SUCH DAMAGE. -; Version 0.0.1 +; Version 0.0.2 .db "NES", $1A .db $02 diff --git a/src/graphics/tileset.chr b/src/graphics/tileset.chr index b329d23..a2e13fe 100644 Binary files a/src/graphics/tileset.chr and b/src/graphics/tileset.chr differ