Skip to content

Commit

Permalink
Increase version numer to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonioND committed Jul 7, 2020
1 parent c298532 commit 3b4f37d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,19 @@ Another GB, GBC and GBA cross-platform emulator writen in C. By Antonio Niño
Díaz (AntonioND). It's licensed under the GPL v2 license. The source code is
available `in GitHub <https://github.com/AntonioND/giibiiadvance>`_.

This is an emulator I started several years ago. I didn't release any version in
a few years after 0.1.0. At some point I did some changes that improved
compatibility a lot, and ported the original Win32 GUI to SDL2. The objective
This is an emulator I started several years ago. I didn't release any version
for a few years after 0.1.0. At some point I did some changes that improved
compatibility a lot, and ported the original Win32 GUI to SDL2. The objective
was to make it as portable as possible. Everything you need to play is in the
main window. The debugger needs additiona windows, but that's not needed to
play. If your machine doesn't have a windows manager, all the changes that are
needed are to disable the debugger.

A few years later I decided to clean up the code and release 0.3.0. It has a lot
of improvements of the months after 0.2.0. It also has some bugfixes added
during a few years. Finally, the code has been cleaned up and a new build system
has been added so that it can finally be built in Windows easily.

This emulator isn't meant to be used for playing. It is perfectly
capable of emulating most GB/GBC games pretty accurately, and most GBA games
with reasonable accuracy. However, there are several emulators that may be a
Expand Down
4 changes: 2 additions & 2 deletions source/build_options.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
//---------------------------------------------------------------

#define GIIBIIADVANCE_VERSION_MAJOR (0)
#define GIIBIIADVANCE_VERSION_MINOR (2)
#define GIIBIIADVANCE_VERSION_MINOR (3)
#define GIIBIIADVANCE_VERSION_PATCH (0)
#define GIIBIIADVANCE_VERSION \
((GIIBIIADVANCE_VERSION_MAJOR << 16) | (GIIBIIADVANCE_VERSION_MINOR << 8) \
| (GIIBIIADVANCE_VERSION_PATCH))

#define GIIBIIADVANCE_VERSION_STRING "0.2.X"
#define GIIBIIADVANCE_VERSION_STRING "0.3.0"

#define GIIBIIADVANCE_COPYRIGHT_STRING \
"Copyright (C) 2011-2015, 2019-2020 Antonio Niño Díaz (AntonioND)"
Expand Down

0 comments on commit 3b4f37d

Please sign in to comment.