CHANGES (view raw)
10.7.1: (Future)
2Bugfixes:
3 - Switch: Fix final cleanup (fixes mgba.io/i/1283)
4 - Qt: Fix tile and sprite views not always displaying at first
5 - GBA Memory: Fix a few AGBPrint crashes
6 - GBA Memory: Fix OOB ROM reads showing up as AGBPrint memory
7 - GB Serialize: Fix loading states with negative pixel x (fixes mgba.io/i/1293)
8 - Qt: Fix audio context holding onto closed game controller
9 - Switch: Fix gyroscope orientation (fixes mgba.io/i/1300)
10 - GBA SIO: Prevent writing read-only multiplayer bits
11 - Qt: Fix color picking in sprite view (fixes mgba.io/i/1307)
12 - GB: Fix crash when accessing SRAM if no save loaded and cartridge has no SRAM
13 - Python: Fix crash when deleting files owned by library
14 - Python: Make sure GB link object isn't GC'd before GB object
15 - GBA DMA: Fix Display Start DMAs
16Misc:
17 - GBA Video: Improve sprite cycle counting (fixes mgba.io/i/1274)
18
190.7.0: (2019-01-26)
20Features:
21 - ELF support
22 - Game Boy Camera support
23 - Qt: Set default Game Boy colors
24 - Game Boy Printer support
25 - Super Game Boy support
26 - Customizable autofire speed
27 - Ability to set default Game Boy model
28 - Map viewer
29 - Automatic cheat loading and saving
30 - GameShark and Action Replay button support
31 - AGBPrint support
32 - Debugger: Conditional breakpoints and watchpoints
33 - Ability to select GB/GBC/SGB BIOS on console ports
34 - Optional automatic state saving/loading
35 - Access to ur0 and uma0 partitions on the Vita
36 - Partial support for MBC6, MMM01, TAMA and HuC-1 GB mappers
37 - GBA: ARMIPS/A22i-style and ELF symbol table support
38 - Initial Switch port
39Bugfixes:
40 - ARM: Fix MSR when T bit is set
41 - Core: Fix audio sync breaking when interrupted
42 - Core: Fix ordering events when scheduling during events
43 - FFmpeg: Fix encoding audio/video queue issues
44 - GB: Revamp IRQ handling based on new information
45 - GB: Fix IRQ disabling on the same T-cycle as an assert
46 - GB Audio: Make audio unsigned with bias (fixes mgba.io/i/749)
47 - GB Audio: Clock frame events on DIV
48 - GB Audio: Fix channel 3 reset value
49 - GB Audio: Fix channel 4 initial LFSR
50 - GB Audio: Fix channel 1, 2 and 4 reset timing
51 - GB I/O: DMA register is R/W
52 - GB MBC: Improve multicart detection heuristic (fixes mgba.io/i/1177)
53 - GB, GBA Savedata: Fix savestate loading overwriting saves on reset
54 - GB, GBA Savedata: Fix unmasking savedata crash
55 - GB Serialize: Fix audio state loading
56 - GB Serialize: Fix game title check
57 - GB Serialize: Fix IRQ pending/EI pending confusion
58 - GB Timer: Minor accuracy improvements
59 - GB Video: Fix dot clock timing being slightly wrong
60 - GB Video: Fix loading states while in mode 3
61 - GB Video: Fix enabling window when LY > WY (fixes mgba.io/i/409)
62 - GB Video: Fix SCX timing
63 - GB, GBA Video: Don't call finishFrame twice in thread proxy
64 - GBA: Reset WAITCNT properly
65 - GBA BIOS: Fix BitUnPack final byte
66 - GBA BIOS: Fix BitUnPack narrowing
67 - GBA DMA: Fix invalid DMA reads (fixes mgba.io/i/142)
68 - GBA DMA: Fix temporal sorting of DMAs of different priorities
69 - GBA Hardware: Fix RTC overriding light sensor (fixes mgba.io/i/1069)
70 - GBA Hardware: Fix RTC handshake transition (fixes mgba.io/i/1134)
71 - GBA Memory: Fix Vast Fame support (taizou) (fixes mgba.io/i/1170)
72 - GBA Savedata: Fix savedata modified time updating when read-only
73 - GBA Serialize: Fix loading channel 3 volume (fixes mgba.io/i/1107)
74 - GBA Serialize: Fix loading states in Hblank
75 - GBA SIO: Fix unconnected SIOCNT for multi mode (fixes mgba.io/i/1105)
76 - GBA Timer: Fix timers sometimes being late (fixes mgba.io/i/1012)
77 - GBA Video: Don't mask out high bits of BLDY (fixes mgba.io/i/899)
78 - GBA Video: Add delay when enabling BGs (fixes mgba.io/i/744, mgba.io/i/752)
79 - GBA Video: Start timing mid-scanline when skipping BIOS
80 - GBA Video: Improve sprite cycle counting (fixes mgba.io/i/1126)
81 - GBA Video: Make layer disabling work consistently
82 - PSP2: Fix more issues causing poor audio
83 - Qt: Fix GL display when loading a game from CLI (fixes mgba.io/i/843)
84 - Qt: Improve FPS timer stability
85 - Util: Fix wrapping edge cases in RingFIFO
86Misc:
87 - 3DS: Remove deprecated CSND interface
88 - All: Make FIXED_ROM_BUFFER an option instead of 3DS-only
89 - Core: Remove broken option for whether rewinding restores save games
90 - Feature: Added loading savestates from command line
91 - FFmpeg: Support libswresample (fixes mgba.io/i/1120, mgba.io/b/123)
92 - FFmpeg: Support lossless h.264 encoding
93 - FFmpeg: Support lossless VP9 encoding
94 - GBA Cheats: Allow multiple ROM patches in the same slot
95 - GB: Skip BIOS option now works
96 - GB: Fix VRAM/palette locking (fixes mgba.io/i/1109)
97 - GB Audio: Improved audio quality
98 - GB, GBA Audio: Increase max audio volume
99 - GB MBC: Remove erroneous bank 0 wrapping
100 - GB Video: Darken colors in GBA mode
101 - GBA: Extend oddly-sized ROMs to full address space (fixes mgba.io/i/722)
102 - GBA: Implement display start DMAs
103 - GBA: Improve multiboot image detection
104 - GBA Memory: 64 MiB GBA Video cartridge support
105 - GBA Savedata: Remove ability to disable realistic timing
106 - GBA Timer: Use global cycles for timers
107 - Libretro: Add frameskip option
108 - mGUI: Add fast forward toggle
109 - PSP2: Use system enter key by default
110 - Python: Integrate tests from cinema test suite
111 - Qt: Redo GameController into multiple classes
112 - Qt: Prevent window from being created off-screen
113 - Qt: Add option to disable FPS display
114 - Qt: Options to mess around with layer placement
115 - Qt: Add load alternate save option
116 - Qt: Allow pausing game at load (fixes mgba.io/i/1129)
117 - Qt: Clean up FPS target UI (fixes mgba.io/i/436)
118 - Test: Restructure test suite into multiple executables
119 - Util: Don't build crc32 if the function already exists
120 - Wii: Move audio handling to callbacks (fixes mgba.io/i/803)
121Changes from beta 1:
122Features:
123 - Libretro: Add Game Boy cheat support
124 - Qt: Separate fast forward volume control (fixes mgba.io/i/846, mgba.io/i/1143)
125 - Switch: Rumble support
126 - Switch: Rotation support
127 - Switch: Screen stretching options
128 - Qt: State file load/save menu options
129 - Windows installer
130 - Tile viewer now has adjustable width
131 - Python: Experimental audio API
132Bugfixes:
133 - 3DS: Fix unused screens not clearing (fixes mgba.io/i/1184)
134 - Core: Remember to deinit proxy ring FIFO
135 - Core: Reroot timing list when (de)scheduling
136 - GB, GBA: Fix broken opposing button filter (fixes mgba.io/i/1191)
137 - GB MBC: Fix MBC30 SRAM
138 - GB, GBA Savedata: Fix leaks when loading masked save (fixes mgba.io/i/1197)
139 - GB Video: Fix SGB border hole size
140 - GB Video: Changing LYC while LCDC off doesn't affect STAT (fixes mgba.io/i/1224)
141 - GBA: Fix GB Player features
142 - GBA I/O: SOUNDCNT_HI is readable when sound is off
143 - GBA Savedata: Fix EEPROM writing codepath when savetype is not EEPROM
144 - GBA Video: Fix caching with background toggling (fixes mgba.io/i/1118)
145 - Libretro: Fix adding codes with hooks
146 - PSP2: Fix audio crackling after fast forward
147 - PSP2: Fix audio crackling when buffer is full
148 - Qt: Fix jumbled background when paused
149 - Qt: Fix FPS counter on Windows
150 - Qt: Fix focus issues with load/save state overlay
151 - Switch: Fix incorrect mapping for fast forward cap
152 - Wii: Fix drawing caching regression (fixes mgba.io/i/1185)
153 - PSP2: Fix tearing issues (fixes mgba.io/i/1211)
154 - Qt: Fix mapping analog triggers (fixes mgba.io/i/495)
155 - Qt: Grab focus when game starts (fixes mgba.io/i/804)
156 - Qt: Ensure FATAL logs reach log view
157 - SDL: Fix handling of invalid gamepads (fixes mgba.io/i/1239)
158Misc:
159 - CMake: Fix libswresample version dependencies (fixes mgba.io/i/1229)
160 - Debugger: Minor text fixes
161 - Debugger: Readability improvements (fixes mgba.io/i/1238)
162 - GB: Improved SGB2 support
163 - GB Audio: Skip frame if enabled when clock is high
164 - Libretro: Reduce rumble callbacks
165 - mGUI: Add SGB border configuration option
166 - mGUI: Add support for different settings types
167 - Python: Minor API improvements
168 - Qt: Ensure camera image is valid
169 - Qt: Debugger console history
170 - Qt: Detect presence of GL_ARB_framebuffer_object
171 - Qt: Minor memory view tweaks
172 - Res: Improve modeling of AGB/AGS screen in shaders
173 - Wii: Define _GNU_SOURCE (fixes mgba.io/i/1106)
174 - Wii: Expose stretch configuration in settings
175 - Wii: Stretch now sets pixel-accurate mode size cap
176
1770.7 beta 1: (2018-09-24)
178- Initial beta for 0.7
179
1800.6.3: (2018-04-14)
181Bugfixes:
182 - GB Audio: Revert unsigned audio changes
183 - GB Video: Fix bad merge (fixes mgba.io/i/1040)
184 - GBA Video: Fix OBJ blending regression (fixes mgba.io/i/1037)
185
1860.6.2: (2018-04-03)
187Bugfixes:
188 - Core: Fix ROM patches not being unloaded when disabled (fixes mgba.io/i/962)
189 - 3DS: Fix opening files in directory names with trailing slashes
190 - LR35902: Fix watchpoints not reporting new value
191 - GB MBC: Fix MBC2 saves (fixes mgba.io/i/954)
192 - GB Memory: HDMAs should not start when LCD is off (fixes mgba.io/i/310)
193 - GB Memory: Fix OAM DMA blocking regions (fixes mgba.io/i/1013)
194 - GB Video: Only trigger STAT write IRQs when screen is on (fixes mgba.io/i/912)
195 - GBA: Fix some GBA ROM misdetection (fixes mgba.io/i/978)
196 - GBA: Fix SharkPort saves for EEPROM games
197 - GBA Audio: Increase PSG volume (fixes mgba.io/i/932)
198 - GBA BIOS: Fix incorrect exit condition in LZ77
199 - GBA Cheats: Fix PARv3 slide codes (fixes mgba.io/i/919)
200 - GBA Cheats: Fix slide codes not initializing properly
201 - GBA DMA: ROM reads are forced to increment
202 - GBA Hardware: RTC accuracy improvements
203 - GBA I/O: Fix writing to DISPCNT CGB flag (fixes mgba.io/i/902)
204 - GBA Memory: Fix copy-on-write memory leak
205 - GBA Memory: Partially revert prefetch changes (fixes mgba.io/i/840)
206 - GBA Savedata: Fix crash when resizing flash
207 - GBA Video: Force align 256-color tiles
208 - GBA Video: OBJWIN can change blend params after OBJ is drawn (fixes mgba.io/i/921)
209 - PSP2: Fix issues causing poor audio
210 - Python: Fix package directory
211 - Qt: Fix locale being set to English on settings save (fixes mgba.io/i/906)
212 - Qt: Fix opening in fullscreen (fixes mgba.io/i/993)
213 - Wii: Fix screen tear when unpausing
214 - Wii: Fix various setup and teardown drawing issues (fixes mgba.io/i/988)
215Misc:
216 - 3DS: Scale font based on glyph heights (fixes mgba.io/i/961)
217 - GB MBC: Remove erroneous bank 0 wrapping
218 - GBA: Improve multiboot image detection
219 - PSP2: Use system enter key by default
220
2210.6.1: (2017-10-01)
222Bugfixes:
223 - GB, GBA: Fix crashes when attempting to identify null VFiles
224 - GB, GBA: Fix sync to video with frameskip
225 - GB, GBA Savedata: Fix savestate-related save overwriting (fixes mgba.io/i/834)
226 - GB Audio: Fix NRx2 writes while active (fixes mgba.io/i/866)
227 - GB Core: Fix palette loading when loading a foreign config
228 - GB MBC: Pocket Cam memory should be accessible without enabling
229 - GB MBC: Fix SRAM sizes 4 and 5
230 - GB MBC: Fix RTC initialization (fixes mgba.io/i/825)
231 - GB MBC: Fix RTC loading when file size is off
232 - GB Memory: Initialize peripheral pointers
233 - GB Memory: Prevent accessing empty SRAM (fixes mgba.io/i/831)
234 - GB Memory: Fix HDMA count starting in mode 0 (fixes mgba.io/i/855)
235 - GB Memory: Actually load latch time from savestate
236 - GB Serialize: Fix deserializing video STAT
237 - GB Video: Fix 16-bit screenshots (fixes mgba.io/i/826)
238 - GB Video: Fix potential hang when ending mode 0
239 - GB Video: Fix read mode when enabling LCD
240 - GBA: Reset active region as needed when loading a ROM
241 - GBA: Fix keypad IRQs not firing when extra buttons are pressed
242 - GBA BIOS: Use core's VRAM variable instead of renderer's
243 - GBA Cheats: Fix PARv3 multiline blocks (fixes mgba.io/i/889)
244 - GBA I/O: Fix reading from a few invalid I/O registers (fixes mgba.io/i/876)
245 - GBA Savedata: Fix 512 byte EEPROM saving as 8kB (fixes mgba.io/i/877)
246 - GBA Savedata: Fix size of SRAM saves (fixes mgba.io/i/883)
247 - GBA Video: Fix broken sprite blending hack (fixes mgba.io/i/532)
248 - Python: Fix importing .gb or .gba before .core
249 - Qt: Fix command line debugger closing second game
250 - Qt: Fix LOG argument order
251 - Qt: Fix timezone issues with time overrides
252 - Qt: Fix sprite export pausing game indefinitely (fixes mgba.io/i/841)
253 - SDL: Fix potential race condition when pressing keys (fixes mgba.io/i/872)
254Misc:
255 - CMake: Fix CPack dependencies for libpng 1.6
256 - GBA: Detect hardware for Pokémon FireRed ROM hacks
257 - GBA Cheats: Improve detection of raw cheats
258 - Qt: Don't rebuild library view if style hasn't changed
259 - Qt: Allow overrides to be saved before a game is loaded
260 - Qt: Hide mouse immediately when loading
261 - SDL: Fix 2.0.5 build on macOS under some circumstances
262 - VFS: Make VFile.truncate work growing files on PSV (fixes mgba.io/i/885)
263
2640.6.0: (2017-07-16)
265Features:
266 - Library view
267 - Sprite viewer
268 - Debugging console
269 - Improved memory viewer
270 - Memory search
271 - Command line ability to override configuration values
272 - Add option to allow preloading the entire ROM before running
273 - Add option for whether rewinding restores save games
274 - Savestates now contain any RTC override data
275 - Add option to lock video to integer scaling
276 - LR35902: Watchpoints
277 - LR35902/GB-Z80 disassembler
278 - GB: Tile viewer
279 - GB: Video/audio channel enabling/disabling
280 - GB: Symbol table support
281 - GB MBC: Add MBC1 multicart support
282 - GBA: Support printing debug strings from inside a game
283 - GBA: Better cheat type autodetection
284 - Implement keypad interrupts
285 - Configuration of gamepad hats
286 - Video log recording for testing and bug reporting
287 - Debugger: Segment/bank support
288 - Debugger: Execution tracing
289 - Qt: German translation (by Lothar Serra Mari)
290 - Qt: Spanish translation (by Kevin López)
291 - Qt: Italian translation (by theheroGAC)
292Bugfixes:
293 - ARM7: Fix MLA/*MULL/*MLAL timing
294 - Core: Fix crash with rewind if savestates shrink
295 - Core: Fix interrupting a thread while on the thread (fixes mgba.io/i/692)
296 - Core: Fix directory sets crashing on close if base isn't properly detached
297 - FFmpeg: Fix overflow and general issues with audio encoding
298 - GB: Fix flickering when screen is strobed quickly
299 - GB: Fix STAT blocking
300 - GB MBC: Fix ROM bank overflows getting set to bank 0
301 - GB MBC: Fix swapping carts not detect new MBC
302 - GB Timer: Improve DIV reset behavior
303 - GB Timer: Fix DIV batching if TAC changes
304 - GB Video: Reset renderer when loading state
305 - GBA: Fix multiboot ROM loading
306 - GBA: Fix multiboot loading resulting in too small WRAM
307 - GBA BIOS: Implement BitUnPack
308 - GBA BIOS: Fix ArcTan sign in HLE BIOS
309 - GBA BIOS: Fix ArcTan2 sign in HLE BIOS (fixes mgba.io/i/689)
310 - GBA BIOS: Fix INT_MIN/-1 crash
311 - GBA Hardware: Fix crash if a savestate lies about game hardware
312 - GBA I/O: Handle audio registers specially when deserializing
313 - GBA Memory: Improve initial skipped BIOS state
314 - GBA Savedata: Fix savedata unmasking (fixes mgba.io/i/441)
315 - GBA Savedata: Update and fix Sharkport importing (fixes mgba.io/i/658)
316 - GBA Video: Fix wrong palette on 256-color sprites in OBJWIN
317 - GBA Video: Don't update background scanline params in mode 0 (fixes mgba.io/i/377)
318 - Libretro: Fix saving in GB games (fixes mgba.io/i/486)
319 - LR35902: Fix core never exiting with certain event patterns
320 - LR35902: Fix pc overflowing current region off-by-one
321 - LR35902: Fix decoding LD r, $imm and 0-valued immediates (fixes mgba.io/i/735)
322 - OpenGL: Fix some shaders causing offset graphics
323 - GB Timer: Fix sub-M-cycle DIV reset timing and edge triggering
324 - Qt: Fix window icon being stretched
325 - Qt: Fix data directory path
326 - Qt: Fix timing issues on high refresh rate monitors
327 - Qt: Fix linking after some windows have been closed
328 - Qt: Fix crash when changing audio settings after a game is closed
329 - Qt: Ensure CLI backend is attached when submitting commands (fixes mgba.io/i/662)
330 - Qt: Disable "New multiplayer window" when MAX_GBAS is reached (fixes mgba.io/i/107)
331 - Qt: Fix game unpausing after frame advancing and refocusing
332 - SDL: Fix game crash check
333 - SDL: Fix race condition with audio thread when starting
334 - SDL: Fix showing version number
335 - Test: Fix crash when loading invalid file
336 - Test: Fix crash when fuzzing fails to load a file
337 - Test: Don't rely on core for frames elapsed
338 - Test: Fix crash when loading invalid file
339 - Test: Fix crash when fuzzing fails to load a file
340 - Tools: Fix recurring multiple times over the same library
341 - Util: Fix overflow when loading invalid UPS patches
342 - Util: Fix highest-fd socket not being returned by SocketAccept
343 - Windows: Fix VDir.rewind
344Misc:
345 - All: Add C++ header guards
346 - All: Move time.h include to common.h
347 - 3DS, PSP2, Wii: Last directory loaded is saved
348 - CMake: Add ability to just print version string
349 - Core: New, faster event timing subsystem
350 - Core: Clean up some thread state checks
351 - Core: Add generic checksum function
352 - Core: Cores can now have multiple sets of callbacks
353 - Core: Restore sleep callback
354 - Core: Move rewind diffing to its own thread
355 - Core: Ability to enumerate and modify video and audio channels
356 - Core: List memory segments in the core
357 - Core: Move savestate creation time to extdata
358 - Core: Config values can now be hexadecimal
359 - Core: Improved threading interrupted detection
360 - Debugger: Modularize CLI debugger
361 - Debugger: Make building with debugging aspects optional
362 - Debugger: Add functions for read- or write-only watchpoints
363 - Debugger: Make attaching a backend idempotent
364 - Debugger: Add mDebuggerRunFrame convenience function
365 - Feature: Move game database from flatfile to SQLite3
366 - Feature: Support ImageMagick 7
367 - Feature: Make -l option explicit
368 - FFmpeg: Return false if a file fails to open
369 - FFmpeg: Force MP4 files to YUV420P
370 - GB: Trust ROM header for number of SRAM banks (fixes mgba.io/i/726)
371 - GB: Reset with initial state of DIV register
372 - GB MBC: New MBC7 implementation
373 - GB Audio: Simplify envelope code
374 - GB Audio: Improve initial envelope samples
375 - GB Audio: Start implementing "zombie" audio (fixes mgba.io/i/389)
376 - GB Video: Improved video timings
377 - GBA: Ignore invalid opcodes used by the Wii U VC emulator
378 - GBA, GB: ROM is now unloaded if a patch is applied
379 - GBA DMA: Refactor DMA out of memory.c
380 - GBA DMA: Move DMAs to using absolute timing
381 - GBA I/O: Clear JOYSTAT RECV flag when reading JOY_RECV registers
382 - GBA I/O: Set JOYSTAT TRANS flag when writing JOY_TRANS registers
383 - GBA Memory: Support for Mo Jie Qi Bing by Vast Fame (taizou)
384 - GBA Memory: Support reading/writing POSTFLG
385 - GBA Memory: Remove unused prefetch cruft
386 - GBA Timer: Improve accuracy of timers
387 - GBA Video: Clean up unused timers
388 - GBA Video: Allow multiple handles into the same tile cache
389 - GBA Video, GB Video: Colors are now fully scaled
390 - GBA Video: Optimize when BLD* registers are written frequently
391 - OpenGL: Add xBR-lv2 shader
392 - Qt: Move last directory setting from qt.ini to config.ini
393 - Qt: Improved HiDPI support
394 - Qt: Expose configuration directory
395 - Qt: Merge "Save" and "OK" buttons in shader options
396 - Qt: Automatically load controller profile when plugged in
397 - Qt: Rename "Resample video" option to "Bilinear filtering"
398 - Qt: Remove audio thread
399 - Qt: Remove audio buffer sizing in AudioProcessorQt
400 - Qt: Re-enable QtMultimedia on Windows
401 - Qt: Make "Mute" able to be bound to a key
402 - Qt: Add .gb/.gbc files to the extension list in Info.plist
403 - Qt: Relax hard dependency on OpenGL
404 - Qt: Better highlight active key in control binding
405 - SDL: Remove scancode key input
406 - SDL: Automatically map controllers when plugged in
407 - Test: Add a basic test suite
408 - Util: Add size counting to Table
409 - Util: Add 8-bit PNG write support
410 - Util: Tune patch-fast extent sizes
411 - VFS: Call msync when syncing mapped data
412 - VFS: Allow truncating memory chunk VFiles
413 - VFS: Fix some minor VFile issues with FILEs
414 - VFS: Optimize expanding in-memory files
415 - VFS: Add VFileFIFO for operating on circle buffers
416Changes from beta 1:
417Features:
418 - Qt: Italian translation (by theheroGAC)
419 - Qt: Updated German translation
420Bugfixes:
421 - GB Audio: Fix incorrect channel 4 iteration
422 - GB Audio: Fix zombie mode bit masking
423 - GB Serialize: Fix timer serialization
424 - GB Video: Fix LYC regression
425 - GBA SIO: Improve SIO Normal dummy driver (fixes mgba.io/i/520)
426 - GBA Timer: Fix count-up timing overflowing timer 3
427 - PSP2: Use custom localtime_r since newlib version is broken (fixes mgba.io/i/560)
428 - Qt: Fix memory search close button (fixes mgba.io/i/769)
429 - Qt: Fix window icon being stretched
430 - Qt: Fix initial window size (fixes mgba.io/i/766)
431 - Qt: Fix data directory path
432 - Qt: Fix controls not saving on non-SDL builds
433 - Qt: Fix translation initialization (fixes mgba.io/i/776)
434 - Qt: Fix patch loading while a game is running
435 - Qt: Fix shader selector on Ubuntu (fixes mgba.io/i/767)
436 - Core: Fix rewinding getting out of sync (fixes mgba.io/i/791)
437 - Qt: Fix GL-less build
438 - Qt: Fix Software renderer not handling alpha bits properly
439 - Qt: Fix screen background improperly stretching
440 - SDL: Fix cheats not loading
441Misc:
442 - GB Serialize: Add MBC state serialization
443 - GBA Memory: Call crash callbacks regardless of if hard crash is enabled
444 - GBA Timer: Improve accuracy of timers
445 - PSP2: Update toolchain to use vita.cmake
446 - Qt: Add language selector
447 - Qt: Minor test fixes
448 - Qt: Move shader settings into main settings window
449 - Qt: Dismiss game crashing/failing dialogs when a new game loads
450 - Qt: Properly ship Qt translations
451 - SDL: Remove writing back obtained samples (fixes mgba.io/i/768)
452
4530.6 beta 1: (2017-06-29)
454 - Initial beta for 0.6
455
4560.5.2: (2016-12-31)
457Bugfixes:
458 - All: Fix fullscreen config option being ignored
459 - ARM7: PSR mode bits should not get sign extended
460 - GB: Fix audio not being deinitialized
461 - GB: Fix crash when masking savedata
462 - GB: Properly initialize sramRealVf variable
463 - GB Audio: Fix serialization of channel 3 and NR52 properties
464 - GB Audio: Reset envelope timer when reseting sound channel
465 - GB MBC: Fix SRAM dangling pointer with RTC games
466 - GB MBC: Fix initializing MBC when no ROM is loaded
467 - GB Memory: Fix patching ROM bank 0
468 - GB Memory: Fix starting HDMAs during mode 0
469 - GB Memory: Fix HDMA5 value after DMA completes
470 - GB Video: Initialize LCDC in renderer
471 - GB Video: Hblank IRQs should mask LYC=LY IRQs
472 - GBA: Fix IRQs firing after already being cleared
473 - GBA: Only unhalt CPU if appropriate bit is set in IE
474 - GBA: Add savegame override for Crash Bandicoot 2
475 - GBA BIOS: Fix MidiKey2Freq BIOS reads
476 - GBA BIOS: Fix invalid CpuSet not setting BIOS prefetch
477 - GBA Cheats: Fix GameShark ROM patches
478 - GBA I/O: Mask off WAITCNT bits that cannot be written
479 - GBA Memory: Fix misaligned BIOS reads
480 - GBA Memory: Fix VCOUNT being writable
481 - GBA Video: Fix out of bounds sprite transforms
482 - Libretro: Fix unterminated SET_INPUT_DESCRIPTORS
483 - Libretro: Fix disabling BIOS
484 - Libretro: Fix Game Boy savestates and audio
485 - Qt: Fix changing resolution of software renderer
486 - Qt: Fix setting overrides
487 - Qt: Fix cut off tiles and alignment issues in tile viewer
488 - Qt: Only reset window dimensions when first shown
489 - Qt: Fix Qt Multimedia audio driver on big endian
490 - Qt: Fix Apply button for key and controller configurations
491 - VFS: Fix resizing memory chunks when not needed
492 - Windows: Fix Unicode directory handling
493Misc:
494 - GB, GBA: Prevent loading null ROMs
495 - GB Audio: Initialize wave RAM to GBC values
496 - GB Memory: Reset ROM bank when loading a ROM
497 - PSP2: Improved controller rumble
498
4990.5.1: (2016-10-05)
500Bugfixes:
501 - Core: Fix importing save games as read-only
502 - FFmpeg: Fix encoding AAC
503 - GB: Fix invalid STOP behavior on Game Boy Color
504 - GB: Initialize audio properly
505 - GB: Properly clear KEY1 bit 0 when switching speeds
506 - GB: Properly unload save files when unloading a ROM
507 - GB, GBA: Fix emulator hardlocking when halting with IRQs off
508 - GB MBC: Fix MBC7 when size is incorrectly specified
509 - GB MBC: Fix RTC access when no save file is loaded
510 - GB SIO: Don't auto-clock external shift clock
511 - GB Video: Setting LYC=LY during mode 2 should trigger an IRQ
512 - GB Video: Fix video frames getting missed when LCDC is off
513 - GB Video: Clear screen when LCDC is off
514 - GBA Cheats: Fix holding onto pointers that may get invalidated
515 - GBA Cheats: Fix key-activated CodeBreaker cheats
516 - GBA Cheats: Fix uninitialized memory getting freed when saving
517 - GBA Hardware: Improve Game Boy Player rumble behavior
518 - GBA Memory: Fix several unused I/O register read values
519 - GBA Savedata: Fix loading savestates with 512Mb Flash saves
520 - LR35902: Fix events running with the wrong cycle active
521 - Qt: Fix "close" button on Overrides view
522 - Qt: Fix saving overrides
523 - Qt: Fix directory set unloading when replacing the ROM
524 - Qt: Fix patch loading
525 - Qt: Fix crash when saving an override if a game isn't loaded
526 - Qt: Fix showing default display driver as OpenGL (force 1.x)
527 - SDL: Attach rumble in SDL frontend
528 - Util: Fix PNG identification on files too small to be a PNG
529Misc:
530 - All: Only update version info if needed
531 - All: Split out install locations for Libretro and OpenEmu
532 - FFmpeg: Encoding cleanup
533 - GB: Reset active region when reloading ROM
534 - GB Memory: Initialize RAM pattern for GBC
535 - GB Video: Improved video timings
536 - Qt: Manage window sizes slightly better
537 - Qt: Remember scale option independent of core dimensions
538
5390.5.0: (2016-09-19)
540Features:
541 - Game Boy support
542 - Support for encrypted CodeBreaker GBA cheats
543 - Emulation of Vast Fame protected GBA carts (taizou)
544 - Tile viewer
545 - Threaded rendering mode
546 - Libretro: Memory map and achievement support (leiradel)
547 - GUI: Add UI control remapping
548 - GUI: Add fast-forward
549 - Wii: 240p support
550 - 3DS: Adjustable screen darkening
551 - Ability to temporarily load a savegame
552 - Load specific files out of archives
553 - Automatic BIOS detection
554Bugfixes:
555 - ARM7: Fix decoding of Thumb ADD (variants 5 and 6)
556 - Debugger: Fix GDB breakpoints
557 - GBA: Fix losing IRQs when CPSR I bit isn't cleared
558 - GBA: Fix filehandle leak with savegames
559 - GBA: Timer 0 cannot be count up
560 - GBA: Count up timers should not count themselves
561 - GBA Memory: Fix mirror on non-overdumped Classic NES games
562 - GBA Memory: Fix ldm {pc}
563 - GBA Savedata: Fix savedata sync timer
564 - GBA Savedata: Only unmap savedata if present
565 - GBA Serialize: Savestates now properly store prefetch
566 - GBA Video: WIN0/1 take priority over OBJWIN
567 - GBA Video: Fix out-of-order OBJWIN
568 - PSP2: Fix GPU crash while exiting
569 - PSP2: Fix VSync
570 - PSP2: Fix accelerometer range
571 - PSP2: Actually load screen mode setting
572 - PSP2: Fix gyroscope direction
573 - PSP2: Delete threads after they return
574 - PSP2: Fix mapping/unmapping from not at 0
575 - Qt: Fix bug in software renderer scaling
576 - Qt: Fix hanging key press after disabling autofire
577 - Qt: Fix being unable to pause manually when using auto-pausing
578 - SDL: Fix axes being mapped wrong
579 - Util: Fix realloc semantics in utf16to8
580 - Util: Fix inserting too many items into a hash table
581 - VFS: Fix uninitialized varaible reading from 7z
582 - VFS: Fix reading multiple files from a 7z archive
583 - Wii: Fix framelimiting after a slowdown
584 - Wii: Fix garbage flash at startup
585Misc:
586 - 3DS: Use blip_add_delta_fast for a small speed improvement
587 - 3DS: Allow UTF-16 filenames
588 - 3DS: Port to using citro3D
589 - 3DS: Use system font for menus
590 - 3DS: Attempt to use Core 2 for threads
591 - 3DS: Adjustable filering
592 - 3DS: 3D banner
593 - All: Add QUIET parameter to silence CMake
594 - All: Faster memory read/write
595 - ARM7: Support forcing Thumb mode via MSR
596 - ARM7: Flush prefetch cache when loading CPSR via MSR
597 - ARM7: Clean up instruction decoding for future expandability
598 - Debugger: Support register and memory writes via GDB stub
599 - Debugger: Add software breakpoint support to gdb
600 - FFmpeg: Full support for libavcodec 56+
601 - GBA: Better debug logging if event processing breaks
602 - GBA Audio: Force audio DMAs to not increment destination
603 - GBA BIOS: Use custom ArcTan, not relying on OS
604 - GBA Hardware: Clean up dead code in GBP
605 - GBA Memory: Optimize stalling behavior
606 - GBA Memory: Optimize Load-/StoreMultiple
607 - GBA Savedata: Add realistic timing for EEPROM
608 - GBA Serialize: Savestates now store if CPU was halted
609 - GBA Video: Remove old slow path fallback
610 - GBA Video: Optimize sprite drawing
611 - GBA Video: Optimize mode 0 rendering
612 - GBA Video: Optimize compositing cases slightly
613 - GUI: Screenshot dimensions are now passed through
614 - GUI: Add back logging
615 - GUI: Only reload config if manually saved
616 - GUI: Increase scrolling speed
617 - OpenGL: Log shader compilation failure
618 - OpenGL: Add texSize uniform
619 - Qt: Make -g flag work in Qt build
620 - Qt: Simplify OpenGL context creation
621 - Qt: Thread startup improvements
622 - Qt: Make audio channel/video layer options shortcut mappable
623 - Qt: Remove some C99isms from C++ code
624 - Qt: Remove default autofire mappings
625 - Qt: Make reseting when pasued frame-accurate
626 - Qt: Rearchitect game closing codepath
627 - PSP2: Use system font for menus
628 - PSP2: Add rumble for PS TV
629 - PSP2: Add fit-to-height screen mode
630 - PSP2: Sync files per descriptor
631 - PSP2: Allow UTF-8 filenames
632 - PSP2: Screenshots are now saved into the Photo Gallery
633 - PSP2: Stop underclocking when menuing
634 - SDL: Increase default audio buffer size to 1024 samples
635 - SDL: More responsive rumble
636 - Util: Add Vector GetConstPointer
637 - Util: Add rtrim
638 - Util: Add endswith
639 - VFS: Improve zip file detection
640 - Wii: Add pixelated resample filter
641 - Windows: Add native VDir support
642 - Util: Add PRIz macro for libc versions that don't support %z
643
6440.4.1: (2016-07-11)
645Bugfixes:
646 - All: Fix several file handle leaks
647 - All: Fix instruction tables getting zeroed when linking sometimes
648 - ARM7: Fix flags on SBC/RSC
649 - ARM7: Fix setting spsr privilege bits when spsr is empty
650 - GBA Audio: Reset audio FIFO DMA if an invalid destination is set
651 - GBA BIOS: Fix RegisterRamReset setting DISPCNT to the wrong value
652 - GBA BIOS: Fix ArcTan2 accuracy and boundary conditions
653 - GBA Memory: Fix executing code from OBJ region of VRAM
654 - GBA Serialize: Fix memory corruption bug in GBAExtdataSerialize
655 - GBA Serialize: Fix loading savegames from savestates
656 - OpenGL: Correct boolean vector strcmp strings for uniforms
657 - Qt: Fix sending gameStopped twice
658 - Qt: Fix hang if audio sync is enabled and audio fails to initialize
659 - Qt: Fix initial state of key mapping
660 - Qt: Initialize m_useBios
661 - SDL: Fix joystick initialization on BSD
662 - SDL: Fix potential joystick crash in games with rumble
663 - SDL: Fix SDL 1.2 build
664 - SDL: Fix sporadic crash when deinitializing audio
665 - Shaders: Fix AGS-001 shader with some bad drivers
666 - Util: Use closesocket on Windows
667 - Util: Fix socket bind addresses
668 - VFS: Fix reading 7z archives without rewinding first
669 - VFS: VFileFromFD should not open directories
670 - Wii: Fix tilting direction
671 - Util: Fix realloc semantics in utf16to8
672Misc:
673 - All: Allow use of external minizip library
674 - Debugger: CLI debugger now exits when end-of-stream is reached
675 - FFmpeg: Update dependencies on Ubuntu
676 - GBA: Slightly optimize GBAProcessEvents
677 - GBA: Add overrides for DBZ: Legacy of Goku II and Ueki no Housoku
678 - GBA Video: Null renderer should return proper register values
679 - Libretro: Disable logging game errors, BIOS calls and stubs in release builds
680 - Qt: Add preset for DualShock 4
681 - Qt: Update 360 input profile on OS X to reflect newer drivers
682 - Qt: Remove use of NaN
683 - Qt: Canonicalize file paths when loading games
684 - Qt: Add refresh button to controller editing
685 - SDL: Remove default gamepad mappings
686 - Util: Fix intermittent build failure on OS X
687 - VFS: VFile.sync now updates modified time
688
6890.4.0: (2016-02-02)
690Features:
691 - Officially supported ports for the Nintendo 3DS, Wii, and PlayStation Vita
692 - I/O viewer
693 - Booting of multiboot images
694 - Customization of GIF recording
695 - Libretro: Cheat code support
696 - Support for GLSL shaders
697 - ROM information view
698 - Support for VBA-style cheat codes
699 - Savestates now store creation timestamps
700 - Key autofire
701 - Libretro: Allow blocking opposing directional input
702 - OpenEmu core for OS X
703 - Libretro: Settings for using BIOS and skipping intro
704 - Libretro: Customizable idle loop removal
705 - Implemented cycle counting for sprite rendering
706 - Cleaner, unified settings window
707 - Added a setting for pausing when the emulator is not in focus
708 - Customizable paths for save games, save states, screenshots and patches
709 - Controller hotplugging
710 - Ability to store save games and active cheats within savestates
711Bugfixes:
712 - ARM7: Fix sign of unaligned LDRSH
713 - ARM7: Fix decoding of some ARM ALU instructions with shifters
714 - Debugger: Fix watchpoints in gdb
715 - GBA: Fix warnings when creating and loading savestates
716 - GBA: Fix Iridion II savetype
717 - GBA BIOS: Fix misaligned CpuSet
718 - GBA Cheats: Fix cheats setting the Action Replay version
719 - GBA Hardware: Fix GPIO on big endian
720 - GBA Memory: Fix DMA register writing behavior
721 - GBA Memory: Fix DMAs triggering two cycles early
722 - Libretro: Fix aspect ratio
723 - Qt: Fix some potential crashes with the gamepad mapping
724 - Qt: Fix keys being mapped incorrectly when loading configuration file
725 - Util: Fix PowerPC PNG read/write pixel order
726 - Util: Fix excessive memory allocation when decoding a PNG
727 - VFS: Fix VFileReadline and remove _vfdReadline
728Misc:
729 - All: Improved PowerPC support
730 - All: Fix some undefined behavior warnings
731 - ARM7: Combine shifter-immediate and shifter-register functions to reduce binary size
732 - Debugger: Convert breakpoints and watchpoints from linked-lists to vectors
733 - GBA: Implement bad I/O register loading
734 - GBA: Allow jumping to OAM and palette RAM
735 - GBA BIOS: Finish implementing RegisterRamReset
736 - GBA Config: Add "override" layer for better one-time configuration
737 - GBA Input: Consolidate GBA_KEY_NONE and GBA_NO_MAPPING
738 - GBA Memory: Use a dynamically sized mask for ROM memory
739 - GBA Memory: Implement several unimplemented memory access types
740 - GBA Memory: Add GBAView* functions for viewing memory directly without bus issues
741 - GBA RR: Starting from savestate now embeds the savegame
742 - GBA RR: Add preliminary SRAM support for VBM loading
743 - GBA RR: Add support for resets in movies
744 - GBA Video: Remove lastHblank, as it is implied
745 - Libretro: Use anonymous memory mappers for large blocks of memory
746 - Libretro: Add install target for libretro core
747 - Qt: Window size command line options are now supported
748 - Qt: Increase usability of key mapper
749 - Qt: Add 'Apply' button to settings window
750 - Qt: Gray out "Skip BIOS intro" while "Use BIOS file" is unchecked
751 - Qt: Allow use of modifier keys as input
752 - Qt: Optimize log viewer
753 - Qt: Added button for breaking into the GDB debugger
754 - Qt: Add box for showing duration of rewind
755 - SDL: Support fullscreen in SDL 1.2
756 - SDL: Allow GBASDLAudio to be used without a thread context
757 - Util: Use VFile for configuration
758 - Util: Add MutexTryLock
759
7600.3.2: (2015-12-16)
761Bugfixes:
762 - ARM7: Fix STRT/STRBT
763 - ARM7: Implement undefined STRH/LDRH/LDRSH/LDRSB versions
764 - ARM7: Fix bank switching with LDR[B]T/STR[B]T
765 - Libretro: Fix problems with rumble not turning off
766 - GBA: Fix idle skip state being retained between games
767 - GBA: Initialize uninitialized pristineRom and pristineRomSize members
768 - GBA BIOS: Fix CpuSet on 0x01XXXXXX addresses
769 - GBA BIOS: Fix Sqrt sign
770 - GBA BIOS: Fix misaligned RLUnCompReadNormalWrite*
771 - GBA Hardware: Fix Game Boy Player rumble in Pokemon Pinball
772 - GBA Memory: Fix DMA behavior for SRAM accesses
773 - GBA Memory: Fix Store8 to OBJ VRAM
774 - GBA Memory: Fix alignment of LDM/STM on SRAM
775 - GBA Memory: Fix unaligned out-of-bounds ROM loads
776 - GBA Memory: Fix timing of DMAs
777 - GBA Video: Fix _mix for 15-bit color
778 - GBA Video: Fix OAM and palette initialization
779 - OpenGL: Fix fast-forward on some OpenGL drivers where it may block early
780 - Qt: Use safer isLoaded check in GameController
781 - Qt: Fix a race condition in PainterGL that could lead to a crash
782 - Qt: Fix clear button/analog buttons in gamepad mapper on some platforms
783 - Qt: Fix font size in memory viewer
784 - Qt: Fix a crash in the memory viewer
785 - Qt: Add additional checks in CheatModel to prevent crashes
786 - Qt: Fix race condition with setting sample rate
787 - Qt: Fix crash when closing multiplayer windows
788 - Qt: Fix resetting while paused
789Misc:
790 - GBA Audio: Implement missing flags on SOUNDCNT_X register
791 - Qt: Add mute option to menu
792
7930.3.1: (2015-10-24)
794Bugfixes:
795 - ARM7: Fix instruction decoding of Thumb shifts
796 - GBA: Deinit savegame when unloading a ROM
797 - GBA: Fix BIOS check on big endian
798 - GBA: Fix autodetect problems with some bad dumps of Super Mario Advance 2
799 - GBA Audio: Fix 8-bit writes to audio channel 3 and 4 registers
800 - GBA Audio: Fix audio channels being silenced at the wrong time
801 - GBA Memory: Fix bad BIOS Load16 on big endian
802 - GBA Memory: Fix bad Load8 on big endian
803 - GBA Video: Start on the scanline BIOS finishes on if no BIOS is loaded
804 - GBA Video: Fix edge case with sprite blend modes and semitransparency
805 - GBA Video: Fix objwin and blending interaction on sprites
806 - GBA Video: Fix OBJ semitransparency improperly interacting with other blending ops
807 - Libretro: Fix a memory leak with the render buffer
808 - Qt: Windows no longer spawn in the top left on first launch
809 - Qt: Fix install path of XDG desktop file with DESTDIR
810 - Qt: Fix drag and drop on Windows
811 - Qt: Reenable double buffering, as disabling it broke some Windows configs
812 - VFS: Fix return values of VFileFILE.read and .write
813Misc:
814 - All: Reset next event to cycles instead of zero to interrupt
815 - All: Add --version flag
816 - ARM7: Force disable LTO on two files to work around a GCC bug
817 - GBA: Attempting to save a screenshot-style savestate should be allowed without libpng
818 - GBA: Better memory handling with PNG savestates
819 - GBA: Additional savestate sanity checks
820 - GBA: Check for cycle count being too high
821 - GBA Audio: Allow GBAAVStream to have no video callback
822 - GBA BIOS: Implement RegisterRamReset for SIO registers
823 - Qt: Remove useless help icons in dialogs
824 - Qt: Prevent savestate window from opening while in multiplayer
825 - Qt: Disable menu items in multiplayer that don't make sense to have enabled
826 - Qt: Dropping multiplayer windows works more cleanly now
827
8280.3.0: (2015-08-16)
829Features:
830 - Ability to hide individual background layers, or OBJs
831 - Ability to mute individual audio channels
832 - Palette viewer and exporter
833 - Volume control
834 - More shortcuts are editable (e.g. quick save/load)
835 - Rewind now shows the frame after rewinding
836 - Import/Export of GameShark/Action Replay snapshots
837 - Add "Step backwards" item for single increment rewind
838 - Deadzone estimation for game controllers
839 - Analog inputs can be used for shortcuts
840 - Menu items for specific solar sensor brightness levels
841 - Remappable controls for tilt and gyroscope sensors
842 - Status messages for actions taken while a game is running (e.g. save/load state)
843 - Memory inspector
844 - Screensaver can now be suspended while a game is running
845 - Load/save the most recent savestate slot
846 - Support varible speed (PWM) rumble
847 - Ability to cap fast forward speed
848 - Finer control over FPS target
849 - Holdable shortcut for rewinding one frame at a time
850 - Ability to boot directly into the BIOS
851 - Preliminary support for yanking out the game pak while a game is running
852 - Thumb-drive mode by putting a file called portable.ini in the same folder
853 - Configurable display driver, between software and OpenGL
854 - Undo-able savestate loading and saving
855 - Controller profiles now store shortcut settings
856 - Default controller profiles for several common controllers
857 - Libretro now supports BIOS, rumble and solar sensor
858 - Implement BIOS call Stop, for sleep mode
859 - Automatically load patches, if found
860 - Improved video synchronization
861 - Configurable audio output sample rate
862Bugfixes:
863 - ARM7: Fix SWI and IRQ timings
864 - ARM7: Fix Thumb MUL timing
865 - ARM7: Fix timing of multiplies to use N cycles
866 - ARM7: ARMHotplugDetach should call deinit
867 - Debugger: Fix use-after-free in breakpoint clearing code
868 - GBA: Fix crash if a 512kb flash save is loaded when a game has a 1Mb flash override
869 - GBA: Cap audio FIFO read size during deserialization
870 - GBA: Check for corrupted savestates when loading
871 - GBA: Check for improperly sized savestates when loading
872 - GBA: Check for savestates made from differently sized ROMs
873 - GBA: Fix calls to endian-independent loadstores
874 - GBA: Fix timing of reading from timer registers
875 - GBA: Ensure cycles never go negative
876 - GBA Audio: Force audio FIFOs to 32-bit
877 - GBA Audio: Fix audio pitch changing when adjusting buffer size
878 - GBA Audio: Fix sample order in audio channel 3
879 - GBA Audio: Fix 8-bit writes to audio channel 3 frequency
880 - GBA Cheats: Fix Pro Action Replay and GameShark issues when used together
881 - GBA Memory: Improve Thumb open bus behavior
882 - GBA Memory: Fix potential DMA issue when loading a savestate
883 - GBA Memory: Fix load/store multiple video memory waitstates
884 - GBA SIO: Fix reseting when there are SIO devices attached
885 - GBA Video: Blended sprites should never have other effects applied
886 - GBA Video: Fix out-of-bounds tiles in mosaic
887 - GBA Video: Fix windows not affecting sprites
888 - GBA Video: Prevent tiles < 512 from being used in modes 3 - 5
889 - GBA Video: Fix timing on first scanline
890 - Qt: Better cleanup when a game crashes
891 - Qt: Fix open ROM dialog filtering for archive formats
892 - Qt: Cap the maximum number of multiplayer windows
893 - Qt: Fix maximum year in sensor override
894 - Qt: Fix window being too tall after exiting fullscreen
895 - Qt: Fix a missing va_end call in the log handler lambda within the GameController constructor
896 - Qt: Fix analog buttons not getting unmapped
897 - Qt: Fix passing command line options
898 - Qt: Fix crashes on Windows by using using QMetaObject to do cross-thread calls
899 - SDL: Fix SDL build when OpenGL is missing
900 - Util: Allow loading IPS patches that grow the ROM
901 - VFS: Fix resource leaks if some allocations fail
902 - VFS: Fix line-reading to return proper values
903 - Video: Fix an issue with very long filenames
904 - Util: Fix formatting of floats
905Misc:
906 - All: Add --help flag for command line programs
907 - All: Fix sanitize-deb script to set file permissions properly if run as (fake)root
908 - All: Enable static linking for Windows
909 - All: Enable static linking for OS X
910 - All: Threads are now named
911 - All: Proper handling of Unicode file paths
912 - ARM7: Add emulation for Undefined CPU mode
913 - ARM7: Reduce the size of the Thumb instruction table
914 - GBA: Add status log level
915 - GBA: GBARewind now returns how many states it has rewound
916 - GBA: SIO logging layer
917 - GBA BIOS: Stub out SoundBias
918 - GBA: More accurate cycle estimation for ROM prefetch and flash save chips
919 - GBA: Don't include GBACLIDebugger struct unless needed
920 - GBA: Savedata is now synced shortly after data finishes being written
921 - GBA: Process multiple timer events at once, if necessary
922 - GBA Audio: Implement audio reset for channels A/B
923 - GBA Audio: Process multiple audio events at once, if necessary
924 - GBA Hardware: Backport generic RTC source into core
925 - GBA Input: Allow axes and buttons to be mapped to the same key
926 - GBA Memory: Run multiple DMAs in a tight loop if they all occur before present
927 - GBA SIO: Add a dummy driver for Normal mode
928 - GBA Thread: Add functionality for running callbacks on the GBA thread
929 - GBA Thread: Split GBASync into a separate file
930 - GBA Video: Refactor software renderer into separate files
931 - GBA Video: Slightly optimize mode 0 mosaic rendering
932 - Debugger: Free watchpoints in addition to breakpoints
933 - Qt: Handle saving input settings better
934 - Qt: Move GL frame drawing back onto its own thread
935 - Qt: Fast forward (held) option moved from Other to Emulation menu
936 - Qt: Show version info in window title
937 - Qt: Migrate multiplayer window handling into GBAApp
938 - Qt: Unified file opening and saving with last location
939 - Qt: Fix windows being resizable when they shouldn't have been
940 - Qt: Only hide cursor in full screen
941 - Qt: Replace pause-after-frame mutex with an atomic
942 - Qt: Add application icon and XDG desktop files
943 - Qt: Rename "Fullscreen" to "Toggle fullscreen"
944 - Qt: Don't save window size when entering fullscreen
945 - Qt: Make the default fullscreen binding for Windows be Alt-Enter
946 - Qt: Gamepads can now have both buttons and analog axes mapped to the same key
947 - Qt: Increase usability of key mapper
948 - Qt: Show checkmark for window sizes
949 - Qt: Set window path to loaded ROM
950 - Perf: Ability to load savestates immediately on launch
951 - SDL: Properly check for initialization
952 - SDL: Clean up initialization functions
953 - SDL: Clean up GL context
954 - Util: Allow disabling the threading code entirely
955 - VFS: Add sync method to force syncing with backing
956
9570.2.1: (2015-05-13)
958Bugfixes:
959 - All: Fix sanitize-deb script not cleaning up after itself
960 - All: Fix dependencies for libavcodec on Debian-derived platforms
961 - ARM7: Handle writeback for PC in addressing modes 2 and 3
962 - ARM7: Make illegal instruction decoding consistent between ARM and Thumb
963 - ARM7: Fix ARM multiply instructions when PC is a destination register
964 - Debugger: Fix use-after-free in breakpoint clearing code
965 - Debugger: Fix boundary conditions in tab completion
966 - GBA: Fix timers not updating timing when writing to only the reload register
967 - GBA: Fix rewind boundary conditions
968 - GBA: Add initial I/O register settings for background matrix registers
969 - GBA: Fix hang when loading a savestate if sync to video is enabled
970 - GBA: Handle out-of-bounds I/O access
971 - GBA: Fix bounds-checking on EEPROM access
972 - GBA Audio: FIFOs should not poll DMAs that are not scheduled for audio
973 - GBA BIOS: Initialize a variable that may be uninitialized in very rare cases
974 - GBA Memory: Allow SRAM to be 64kB
975 - GBA Memory: Fix 32-bit loads from unaddress cartridge space
976 - GBA Memory: Fix jumping to invalid memory when switching from Thumb to ARM
977 - GBA Video: Fix second frame mode 5
978 - Perf: Fix race condition if a game crashes immediately on start
979 - Qt: Fix Display object leak when closing a window
980 - Qt: Fix .deb dependencies
981 - Qt: Fix "QOpenGLContext::swapBuffers() called with non-exposed window" warning
982 - Qt: Fix window not regaining focus after exiting savestate window
983 - Qt: Fix regression where video would not record if the game had already started
984 - Qt: Fix potential crash if a gamepad causes focus to change
985 - Qt: Fix controller axis querying
986 - Qt: Fix multiplayer windows opening as the wrong size
987 - Qt: Fix controllers sometimes not loading the right profile
988 - SDL: Fix boundary conditions for joystick adjustments
989 - SDL: Allocate properly sized input maps
990 - SDL: Fix potential build issues when Qt and SDL2 are in use
991 - Util: Fix resource leak in UTF-8 handling code
992 - Util: Fix a null-pointer issue when attempting to delete a key
993 - VFS: Fix resource leaks if some allocations fail
994 - Video: Fix an issue with very long filenames
995Misc:
996 - GBA Memory: Soft-crash if jumping past the end of a ROM
997 - Qt: Show multiplayer numbers in window title
998 - Qt: Solar sensor can have shortcuts set
999
10000.2.0: (2015-04-03)
1001Features:
1002 - Support for gamepad axes, e.g. analog sticks or triggers
1003 - Add scale presets for up to 6x
1004 - Settings window
1005 - Bilinear resampling option
1006 - Add option to skip BIOS start screen
1007 - List of recently opened games
1008 - Support for games using the Solar Sensor
1009 - Better audio resampling via blip-buf
1010 - Game Pak overrides dialog for setting savetype and sensor values
1011 - Support for games using the tilt sensor
1012 - Remappable shortcuts for keyboard and gamepad
1013 - Rewinding of emulation
1014 - Implemented BIOS routines SoftReset, RegisterRamReset, Diff8bitUnFilterWram, Diff8bitUnFilterVram, and Diff16bitUnFilter
1015 - Support IPv6
1016 - Save directory of last loaded file
1017 - Support BPS patches
1018 - Automatically detect and optimize out idle loops
1019 - Configurable game overrides
1020 - Support loading 7-Zip files
1021 - Drag and drop game loading
1022 - Cheat code support
1023 - Runtime configurable audio driver
1024 - Libretro core for use with RetroArch and other front-ends
1025 - Controller profiles for setting different bindings for different controllers
1026 - Ability to lock aspect ratio
1027 - Local link cable support
1028 - Ability to switch which game controller is in use per instance
1029 - Ability to prevent opposing directional input
1030 - Warning dialog if an unimplemented BIOS feature is called
1031 - Debugger: Add CLI "frame", frame advance command
1032 - Debugger: Add CLI functions for writing to memory
1033 - Debugger: Add CLI functions for examining memory regions
1034 - Debugger: Add CLI function for writing a register
1035Bugfixes:
1036 - ARM7: Extend prefetch by one stage
1037 - ARM7: Fix cycle counting for loads
1038 - Debugger: Disassembly now lists PSR bitmasks (fixes #191)
1039 - GBA: Fix savestate loading of DISPSTAT and WAITCNT registers
1040 - GBA: Initialize gba.sync to null
1041 - GBA: Fix timer initialization
1042 - GBA Audio: Support 16-bit writes to FIFO audio
1043 - GBA Audio: Audio buffer sizes are now correct sizes for both sample rates
1044 - GBA BIOS: Fix BIOS prefetch after returning from an IRQ
1045 - GBA BIOS: Fix BIOS prefetch after reset
1046 - GBA BIOS: Prevent CpuSet and CpuFastSet from using BIOS addresses as a source (fixes #184)
1047 - GBA BIOS: Fix BIOS decompression routines with invalid source addresses
1048 - GBA Memory: Fix alignment of open bus 8- and 16-bit loads
1049 - GBA Memory: Fix I cycles that had been moved to ARM7 core
1050 - GBA Memory: Fix cycle counting for 32-bit load/stores
1051 - GBA RR: Fix fallthrough error when reading tags from a movie
1052 - GBA Thread: Fix possible hang when loading an archive
1053 - GBA Thread: Fix possible deadlock in video sync
1054 - Perf: Fix crash when the GBA thread fails to start
1055 - Qt: Fix crash starting a GDB stub if a game isn't loaded
1056 - Qt: Fix crash when adjusting settings after closing a game
1057 - Qt: Fix crash when starting GDB stub after closing a game
1058 - Qt: Fix patch loading while a game is running
1059 - Qt: Fix crash when loading a game after stopping GDB server
1060 - Qt: Pause game while open file dialogs are open (fixes #6 on GitHub)
1061 - Qt: Fix crash when attempting to pause if a game is not running
1062 - SDL: Properly clean up if a game doesn't launch
1063 - Util: Fix sockets on Windows
1064Misc:
1065 - All: Enable link-time optimization
1066 - Debugger: Watchpoints now work on STM/LDM instructions
1067 - Debugger: Clean up GDB stub network interfacing
1068 - Debugger: Simplify debugger state machine to play nicer with the GBA thread loop
1069 - Debugger: Merge Thumb BL instructions when disassembling
1070 - Debugger: Clean up debugger interface, removing obsolete state (fixes #67)
1071 - Debugger: Watchpoints now report address watched (fixes #68)
1072 - Debugger: Add support for soft breakpoints
1073 - Debugger: Make I/O register names be addresses instead of values
1074 - Debugger: Rename read/write commands
1075 - GBA: Improve accuracy of event timing
1076 - GBA: Add API for getting Configuration structs for overrides and input
1077 - GBA: Refactor gba-sensors and gba-gpio into gba-hardware
1078 - GBA: Refactor gba directory, dropping gba- prefix and making supervisor directory
1079 - GBA: Move A/V stream interface into core
1080 - GBA: Savestates now take into account savedata state machines (fixes #109)
1081 - GBA Audio: Change internal audio sample buffer from 32-bit to 16-bit samples
1082 - GBA Memory: Simplify memory API and use fixed bus width
1083 - GBA Thread: Make GBASyncWaitFrameStart time out
1084 - GBA Video: Start video at the last scanline instead of the first
1085 - Qt: Optimize logo drawing
1086 - Qt: Move frame upload back onto main thread
1087 - Qt: Remember window position
1088 - Qt: Double-clicking on the window toggles full screen
1089 - Util: Use proper locale for reading and writing float values
1090
10910.1.1: (2015-01-24)
1092Bugfixes:
1093 - ARM7: Fix LDM writeback to a register already written
1094 - GBA: Fix timers 2 and 3 updating incorrectly
1095 - GBA Audio: Make larger buffer sizes than 2048 actually work properly
1096 - GBA Audio: Fix GB audio channels being too quiet (fixes #159)
1097 - GBA Audio: Properly initialize audio FIFO channels
1098 - GBA BIOS: Fix HLE Lz77 and RL functions to properly account for width and invalid addresses
1099 - GBA BIOS: Fix BIOS prefetch after returning from a SWI
1100 - GBA BIOS: Fix LZ77UnCompVram to use 16-bit loads from decompressed memory
1101 - GBA BIOS: Fix HuffUnComp to work when games pass an invalid bit length
1102 - GBA BIOS: Fix GetBiosChecksum to return the value of a real GBA, regardless of used BIOS
1103 - GBA BIOS: Fix HuffUnComp boundary conditions
1104 - GBA Memory: Don't call into GPIO write calls if GPIO devices are absent
1105 - GBA Memory: Properly initialize 1 Mb flash, and add debug logging
1106 - GBA Memory: Filter out top nybble of DMA addresses
1107 - GBA Memory: Properly bounds-check VRAM accesses
1108 - GBA Memory: Fix initial DMA state
1109 - GBA Thread: Allow halted games to exit cleanly
1110 - GBA Video: Fix blend issues with obscured middle layers
1111 - GBA Video: Fix windows not disabling target 1 appropriately (fixes #161)
1112 - GBA Video: Fix sprite mis-ordering behavior in some cases (fixes #168)
1113 - GBA Video: Fix window interactions with 16-color mode 0 mosaic
1114 - GBA Video: Fix sprite boundary conditions with mosaic
1115 - GBA Video: Fix mode 0 being able to read tiles above appropriate tile range
1116 - Qt: Fix issue with set frame sizes being the wrong height
1117 - Qt: Fix emulator crashing when full screen if a game is not running
1118 - Qt: Fix window focus issues
1119 - Qt: Properly set default video recording settings
1120 - Qt: Fix a race condition when a game crashes immediately
1121 - Qt: Fix some cases where key mapping can break if focus is adjusted
1122 - Qt: Fix crash if a game pauses before any frames are shown
1123 - Debugger: Negative PC-relative loads now properly subtract the offset
1124 - Debugger: Align PC-relative loads in Thumb
1125 - Debugger: Fix watchpoints triggering too late
1126 - Debugger: Fix binary print putting spaces between digits
1127 - Video: Ensure FFmpeg encoder has audio frames
1128 - Video: Fix uncompressed PCM audio recording
1129 - Video: Fix FFmpeg crashing when the file extension is wrong
1130 - Util: Fix SOCKET_FAILED macro
1131Misc:
1132 - GBA: Exit cleanly on FATAL if the port supports it
1133 - GBA Memory: Implement 16- and 32-bit loads from SRAM
1134 - Qt: Disable sync to video by default
1135 - Qt: Handle a game crash without crashing
1136 - Qt: Set default log level to FATAL, ERROR and WARN
1137 - Qt: Clarify some phrasing in the menus
1138 - Qt: Clear active buttons when focus is lost
1139
11400.1.0: (2014-12-13)
1141 - Initial release