Skip to content

Commit 6e2e3b8

Browse files
committed
v073+2. the future is now, or something
1 parent dc7a840 commit 6e2e3b8

File tree

7 files changed

+26
-10
lines changed

7 files changed

+26
-10
lines changed

CHANGES.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
v073+2 [2015-11-09]
2+
Replaced original memory editor with a new, faster and better one [Revenant]
3+
Added hotkeys for breaking and stepping in the debugger (F5 through F8) [Revenant]
4+
Added new "Sound Viewer" window to tools menu [Revenant]
5+
Removed "enable" checkbox from breakpoints, now enabled by R/W/X setting [Revenant]
6+
Re-enabled quickload/save menus [Revenant]
7+
Frame count added to CPU/SA1 traces [Revenant]
8+
Fixed cycle timing issue introduced by debugger in previous release [Revenant]
9+
Slightly improved SPC700, SA1 and SuperFX disassembly [Revenant]
10+
Fixed MMIO mapping on SA1 bus (fixes crash with Marvelous and possibly others) [AWJ]
11+
Various emulation, build, and other improvements [AWJ]
12+
Backported various OpenGL, Direct3D, and rawinput fixes from bsnes 081+ [mziab]
13+
Fixed potential GUI deadlock when Windows system menu is opened [Revenant]
14+
Improved BPS/UPS/IPS soft patching support [mziab, Revenant]
15+
snesreader no longer advertises RAR support that it doesn't actually have [mziab]
16+
Backport newer File Extractor from VBA-M. LZMA2-compressed 7zip archives work now [mziab]
17+
Various build fixes, mostly for clang / Mac OS [Optiroc, AWJ]
18+
Nicer OSX app bundle (custom icon and retina support enabled) [Optiroc]

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,8 @@ After building, just copy the .dll, .so, or .dylib files into the same directory
5858

5959
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.
6060

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

6363
## Contributors
6464

65-
- Devin Acker (@devinacker)
66-
- Alex W. Jackson (@awjackson)
67-
- Michał Ziąbkowski (@mziab)
68-
- Maximilian Rehkopf (@mrehkopf)
65+
See *Help > Documentation ...* for a list of authors.

bsnes/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ifeq ($(ui),)
88
endif
99

1010
# build version
11-
version := v073+1
11+
version := v073+2
1212

1313
# compiler
1414
c := $(compiler) -xc -std=gnu99

bsnes/data/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
<key>CFBundlePackageType</key>
1616
<string>APPL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>v073+1</string>
18+
<string>v073+2</string>
1919
<key>CFBundleVersion</key>
20-
<string>v073+1</string>
20+
<string>v073+2</string>
2121
<key>LSMinimumSystemVersion</key>
2222
<string>10.6</string>
2323
<key>NSPrincipalClass</key>

bsnes/snes/snes.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
namespace SNES {
22
namespace Info {
33
static const char Name[] = "bsnes-plus";
4-
static const char Version[] = "073+1";
4+
static const char Version[] = "073+2";
55
static const unsigned SerializerSignature = 0x43545342; //'BSTC'
66
static const unsigned SerializerVersion = 6;
77
}

bsnes/ui-qt/base/about.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ AboutWindow::AboutWindow() {
3939
"<td align='right'><a href='https://github.com/devinacker/bsnes-plus'>https://github.com/devinacker/bsnes-plus</a></td>"
4040
"</tr><tr>"
4141
"<td align='left'><b>Based on bsnes-classic:</b></td>"
42-
"<td align='right'><a href='http://code.google.com/p/bsnes-classic'>http://code.google.com/p/bsnes-classic</a></td>"
42+
"<td align='right'><a href='https://github.com/awjackson/bsnes-classic'>https://github.com/awjackson/bsnes-classic</a></td>"
4343
"</tr></table>"
4444
);
4545
layout->addWidget(info);

bsnes/ui-qt/data/documentation.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ <h3>Contributors</h3><br>
5858
&bull; Alex W. Jackson<br>
5959
&bull; Andreas Naive<br>
6060
&bull; anomie<br>
61+
&bull; David Lindecrantz<br>
6162
&bull; _Demo_<br>
6263
&bull; Derrick Sobodash<br>
6364
&bull; Devin Acker<br>

0 commit comments

Comments
 (0)