-
Notifications
You must be signed in to change notification settings - Fork 9
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 #22 from danirod/devel
Releasing CHIP-8 0.1.3
- Loading branch information
Showing
19 changed files
with
205 additions
and
36 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
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,5 +1,17 @@ | ||
2016-03-26 Dani Rodríguez <[email protected]> | ||
|
||
* src/libsdl.c: fixed package not building under Windows and | ||
MacOS X because name conflict between our sdl.h and SDL2's | ||
SDL.h (non-case sensitive file systems). | ||
* src/chip8.c: doesn't crash when the PC has no sound device, | ||
emulator will just run muted. (Bug#19) | ||
* src/chip8.c: added --mute flag. | ||
* Makefile.am: extra files are now copied to datadir. | ||
* debian/: added Debian control files for Debian packaging. | ||
|
||
2016-03-24 Dani Rodríguez <[email protected]> | ||
|
||
* Version 0.1.2 released. | ||
* src/sdl.h: fixed SDL.h header file inclusion. | ||
|
||
2016-03-02 Dani Rodríguez <[email protected]> | ||
|
@@ -31,6 +43,7 @@ | |
|
||
2015-03-12 Hugo Martin <[email protected]> | ||
|
||
* Version 0.1.1 released. | ||
* src/sdl.c: Drop SDL_WINDOW_OPENGL so that SDL can decide | ||
the best graphics backend based on the user platform. | ||
* src/sdl.c: Remove unrequired SDL_Surface. | ||
|
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 +1,13 @@ | ||
SUBDIRS = src . tests | ||
|
||
# Copy extra distribution files | ||
docdir = $(datadir)/doc/$(PACKAGE) | ||
doc_DATA = ChangeLog NEWS README COPYING | ||
|
||
# Copy public domain examples | ||
examples = examples/* | ||
examplesdir = $(datadir)/doc/@PACKAGE@/roms | ||
examples_DATA = $(examples) | ||
|
||
# Extra files that should come with dist (like ROMs) | ||
EXTRA_DIST = $(examples) debian/* |
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 |
---|---|---|
|
@@ -4,6 +4,11 @@ Copyright (C) 2015-2016 Dani Rodríguez <[email protected]> | |
This file is about relevant changes for CHIP-8 users. Developers: Check | ||
ChangeLog for an overview on relevant changes about the source code. | ||
|
||
Version 0.1.3 - 2016-03-28 | ||
* Fixed: emulator won't crash if the PC has no sound device. | ||
* Added: --mute flag was added, forcing emulator to not buzz. | ||
* Added: support for DPKG distributions using a .deb file. | ||
|
||
Version 0.1.2 - 2016-03-24 | ||
* Added sound support. | ||
* Added more flags: --version and --usage. | ||
|
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
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
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 @@ | ||
# configure.ac | ||
|
||
AC_INIT([chip8], [0.1.2], [[email protected]]) | ||
AC_INIT([chip8], [0.1.3], [[email protected]]) | ||
AM_INIT_AUTOMAKE([foreign -Wall -Werror]) | ||
|
||
# Check programs | ||
|
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,5 @@ | ||
chip8 (0.1.3-1) unstable; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- Dani Rodríguez <[email protected]> Sat, 26 Mar 2016 17:00:41 +0100 |
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 @@ | ||
9 |
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,19 @@ | ||
Source: chip8 | ||
Section: games | ||
Priority: optional | ||
Maintainer: Dani Rodríguez <[email protected]> | ||
Build-Depends: debhelper (>= 8.0.0), autotools-dev, check, libsdl2-dev (>= 2.0.0) | ||
Standards-Version: 3.9.4 | ||
Homepage: http://github.com/danirod/chip8 | ||
Vcs-Git: git://github.com/danirod/chip8.git | ||
Vcs-Browser: http://github.com/danirod/chip8 | ||
|
||
Package: chip8 | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, libsdl2-2.0-0 (>= 2.0.0) | ||
Description: Multiplatform CHIP-8 emulator | ||
chip8 is a CHIP-8 emulator using the SDL2 emulation library. | ||
It is able to emulate CHIP-8 ROMs in binary and hexadecimal | ||
format. CHIP-8 is under development and not all features | ||
have been implemented. | ||
|
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,19 @@ | ||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: chip8 | ||
Source: http://github.com/danirod/chip8 | ||
|
||
Files: * | ||
Copyright: 2015-2016 Dani Rodríguez <[email protected]> | ||
License: GPL-3+ | ||
This program is free software: you can redistribute it and/or modify | ||
it under the terms of the GNU General Public License as published by | ||
the Free Software Foundation, either version 3 of the License, or | ||
(at your option) any later version. | ||
. | ||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
. | ||
You should have received a copy of the GNU General Public License | ||
along with this program. If not, see <http://www.gnu.org/licenses/>. |
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,8 @@ | ||
#!/usr/bin/make -f | ||
# -*- makefile -*- | ||
|
||
# Uncomment this to turn on verbose mode. | ||
#export DH_VERBOSE=1 | ||
|
||
%: | ||
dh $@ --with autotools-dev |
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 @@ | ||
3.0 (quilt) |
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,23 @@ | ||
examples/15PUZZLE | ||
examples/BLINKY | ||
examples/BLITZ | ||
examples/BRIX | ||
examples/CONNECT4 | ||
examples/GUESS | ||
examples/HIDDEN | ||
examples/INVADERS | ||
examples/KALEID | ||
examples/MAZE | ||
examples/MERLIN | ||
examples/MISSILE | ||
examples/PONG | ||
examples/PONG2 | ||
examples/PUZZLE | ||
examples/SYZYGY | ||
examples/TANK | ||
examples/TETRIS | ||
examples/TICTAC | ||
examples/UFO | ||
examples/VBRIX | ||
examples/VERS | ||
examples/WIPEOFF |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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