Skip to content

Commit

Permalink
v073+2. the future is now, or something
Browse files Browse the repository at this point in the history
  • Loading branch information
devinacker committed Nov 10, 2015
1 parent dc7a840 commit 6e2e3b8
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 10 deletions.
18 changes: 18 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
v073+2 [2015-11-09]
Replaced original memory editor with a new, faster and better one [Revenant]
Added hotkeys for breaking and stepping in the debugger (F5 through F8) [Revenant]
Added new "Sound Viewer" window to tools menu [Revenant]
Removed "enable" checkbox from breakpoints, now enabled by R/W/X setting [Revenant]
Re-enabled quickload/save menus [Revenant]
Frame count added to CPU/SA1 traces [Revenant]
Fixed cycle timing issue introduced by debugger in previous release [Revenant]
Slightly improved SPC700, SA1 and SuperFX disassembly [Revenant]
Fixed MMIO mapping on SA1 bus (fixes crash with Marvelous and possibly others) [AWJ]
Various emulation, build, and other improvements [AWJ]
Backported various OpenGL, Direct3D, and rawinput fixes from bsnes 081+ [mziab]
Fixed potential GUI deadlock when Windows system menu is opened [Revenant]
Improved BPS/UPS/IPS soft patching support [mziab, Revenant]
snesreader no longer advertises RAR support that it doesn't actually have [mziab]
Backport newer File Extractor from VBA-M. LZMA2-compressed 7zip archives work now [mziab]
Various build fixes, mostly for clang / Mac OS [Optiroc, AWJ]
Nicer OSX app bundle (custom icon and retina support enabled) [Optiroc]
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,8 @@ After building, just copy the .dll, .so, or .dylib files into the same directory

This fork of bsnes doesn't include the alternate UI based on byuu's `phoenix` library. The purpose of this fork is primarily to add additional UI functionality and I have no intention of implementing every new feature twice using completely different libraries just to keep both versions of the UI at parity.

bsnes v073 and its derivatives are licensed under the GPL v2; see *Help > License...* for more information.
bsnes v073 and its derivatives are licensed under the GPL v2; see *Help > License ...* for more information.

## Contributors

- Devin Acker (@devinacker)
- Alex W. Jackson (@awjackson)
- Michał Ziąbkowski (@mziab)
- Maximilian Rehkopf (@mrehkopf)
See *Help > Documentation ...* for a list of authors.
2 changes: 1 addition & 1 deletion bsnes/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ifeq ($(ui),)
endif

# build version
version := v073+1
version := v073+2

# compiler
c := $(compiler) -xc -std=gnu99
Expand Down
4 changes: 2 additions & 2 deletions bsnes/data/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>v073+1</string>
<string>v073+2</string>
<key>CFBundleVersion</key>
<string>v073+1</string>
<string>v073+2</string>
<key>LSMinimumSystemVersion</key>
<string>10.6</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion bsnes/snes/snes.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
namespace SNES {
namespace Info {
static const char Name[] = "bsnes-plus";
static const char Version[] = "073+1";
static const char Version[] = "073+2";
static const unsigned SerializerSignature = 0x43545342; //'BSTC'
static const unsigned SerializerVersion = 6;
}
Expand Down
2 changes: 1 addition & 1 deletion bsnes/ui-qt/base/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ AboutWindow::AboutWindow() {
"<td align='right'><a href='https://github.com/devinacker/bsnes-plus'>https://github.com/devinacker/bsnes-plus</a></td>"
"</tr><tr>"
"<td align='left'><b>Based on bsnes-classic:</b></td>"
"<td align='right'><a href='http://code.google.com/p/bsnes-classic'>http://code.google.com/p/bsnes-classic</a></td>"
"<td align='right'><a href='https://github.com/awjackson/bsnes-classic'>https://github.com/awjackson/bsnes-classic</a></td>"
"</tr></table>"
);
layout->addWidget(info);
Expand Down
1 change: 1 addition & 0 deletions bsnes/ui-qt/data/documentation.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ <h3>Contributors</h3><br>
&bull; Alex W. Jackson<br>
&bull; Andreas Naive<br>
&bull; anomie<br>
&bull; David Lindecrantz<br>
&bull; _Demo_<br>
&bull; Derrick Sobodash<br>
&bull; Devin Acker<br>
Expand Down

0 comments on commit 6e2e3b8

Please sign in to comment.