| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-05-25 | Set copyright year to when a file was created | Tillmann Karras | |
| 2015-05-25 | Update license headers to GPLv2+ | Tillmann Karras | |
| 2015-05-08 | DolphinWX: Remove unnecessary includes | Lioncash | |
| 2015-03-07 | Added the ability to split the Debugger window horizontally and vertically ↵ | skidau | |
| via the Add Panes menu. | |||
| 2015-02-25 | DolphinWX: Relocate the address search into the code window | Lioncash | |
| It's only function is in this pane. Leaving it on the main application toolbar not only looks gross, but subverts what a user might think it applies to. | |||
| 2015-02-24 | DolphinWX: Use AUI in the code window. | Lioncash | |
| Allows for resizing of the callstack, function call/callers windows etc. First step in slightly improving the code window. | |||
| 2015-02-19 | PowerPC: Get rid of magic numbers related to interp/JIT initialization. | Lioncash | |
| 2015-02-11 | Make address translation respect the CPU translation mode. | magumagu | |
| The PowerPC CPU has bits in MSR (DR and IR) which control whether addresses are translated. We should respect these instead of mixing physical addresses and translated addresses into the same address space. This is mostly mass-renaming calls to memory accesses APIs from places which expect address translation to use a different version from those which do not expect address translation. This does very little on its own, but it's the first step to a correct BAT implementation. | |||
| 2014-12-20 | DolphinWX/Globals: Variable naming consistency | Stevoisiak | |
| 2014-12-17 | Add "Load bad map file" option for map files on disc that don't quite match. | CarlKenner | |
| Currently it is very simple and naive, but filters out most of the bad matches. | |||
| 2014-12-17 | Fix many bugs with the Symbols menu (when run with -d argument). | CarlKenner | |
| The Symbols menu is now fully useable. | |||
| 2014-11-05 | DolphinWX: Eliminate most usages of event tables in the debugger. | Lioncash | |
| Moves things over to Bind. | |||
| 2014-10-28 | DolphinWX: Remove unused variable. | Rohit Nirmal | |
| 2014-10-26 | Fixed a crash that would occur if a new watch were added by entering a watch ↵ | skidau | |
| name. Code style updates. | |||
| 2014-10-26 | Disable block linking while debugger stepping or if there are breakpoints | skidau | |
| 2014-10-26 | Added a RAM Watch window to the debugger | skidau | |
| Conflicts: Source/Core/Core/HW/Memmap.cpp Source/Core/Core/HW/Memmap.h Source/Core/DolphinWX/Debugger/CodeWindow.h | |||
| 2014-10-26 | Changed the step over routine to a single stepping version that steps until ↵ | skidau | |
| a blr is encountered. Cleared out all temporary breakpoints on each step to prevent phantom breakpoints from stopping the debugger. | |||
| 2014-10-26 | Added a "Step Out" (aka "Step return") function to the debugger. | skidau | |
| Conflicts: Source/Core/DolphinWX/Debugger/CodeWindow.h | |||
| 2014-10-13 | Core: Use an enum for indicating CPU cores | Lioncash | |
| 2014-10-08 | Debug: fix disable block linking option | Fiora | |
| Previously it did the opposite of what it was supposed to; when checked, it'd turn block linking on, and when unchecked, it'd turn it off. Also update JITIL's block linking disabling in debug mode to match the behavior of the regular JIT. | |||
| 2014-09-30 | JIT: properly remove FIFO write addresses when code is invalidated | Fiora | |
| Fixes a bug caused by interaction with carry optimizations; might fix other issues too. | |||
| 2014-09-18 | Debugger: make opcode search a bit better | Fiora | |
| Search a wider range (not all games fit in the originally searched range). Print a notice if the opcode isn't found, instead of silently failing. | |||
| 2014-09-10 | Merge pull request #1027 from rohit-n/change-include | Ryan Houdek | |
| Include CommonTypes.h instead of Common.h. | |||
| 2014-09-09 | Kill Core::g_CoreStartupParameter. | Rachel Bryk | |
| 2014-09-08 | Include CommonTypes.h instead of Common.h. | Rohit Nirmal | |
| 2014-08-17 | Wx: further cleanup to toolbar creation process | archshift | |
| 2014-08-17 | Fixed toolbar's disabled button color. | archshift | |
| 2014-08-15 | Core: Kill off Host_ShowJitResults | Lioncash | |
| Another host function that can be killed off by simple wx event handling | |||
| 2014-08-11 | Merge pull request #761 from archshift/better-toolbar | shuffle2 | |
| Changed main toolbar to be flush with the rest of the window. | |||
| 2014-08-09 | Removed TBDebug, using TBMain instead. Fixed debugger assert. | archshift | |
| 2014-08-09 | Removed AuiTB, moved functions to menubar (Debug->Perspectives) | archshift | |
| 2014-08-08 | Core: Kill off Host_UpdateLogDisplay() | Lioncash | |
| This was actually never used as far as I can tell. There was no wx event handling done whatsoever for the global ID, So this is basically a dead function. | |||
| 2014-08-08 | Included toolbar headers, preventing forward-decl errors | archshift | |
| 2014-08-08 | Changed toolbar to be static, increasing UI integration | archshift | |
| 2014-07-13 | DolphinWX: Remove the use of some wx 1.0 compatibility functions. | Lioncash | |
| Uses the recommended replacements. | |||
| 2014-07-11 | DolphinWX: Allow short-hand searching in the code window | Lioncash | |
| Lessens the restrictions on the searching in the code view. Now typing out the full 8 digit hex number isn't needed. For example, you don't need to type 000000FF to go to FF, you just literally type FF. Also makes JumpToAddress a boolean function to remain consistent with the DSP code view. This will also change the address search box to have a red background if either an invalid hex number is given, or if it's longer than 8 characters | |||
| 2014-07-10 | DolphinWX: Remove unnecessary true within event Skip calls | Lioncash | |
| 2014-07-10 | DolphinWX: Get rid of an unneccessary cast in CodeWindow | Lioncash | |
| CFrame inherits from CRenderFrame which inherits from wxFrame which eventually inherits from wxWindow, so this cast is not required. | |||
| 2014-07-07 | Revert "Don't add segfault handler in interpreter mode" | Pierre Bourdon | |
| 2014-07-05 | CoreParameter: add enum CPUBackend | Tillmann Karras | |
| 2014-05-18 | Remove an unnecessary null check in CodeWindow.cpp. | Lioncash | |
| The validity of ToolBar is checked at the beginning of the function | |||
| 2014-05-17 | Kill off _T and wxT macros | Lioncash | |
| Minor other alterations that relate to above as well. Also added the PanicAlertT version of alerts for some error messages that use PanicAlert. We want the user to actually understand why the error occurred. | |||
| 2014-03-09 | clang-modernize -use-nullptr | Tillmann Karras | |
| and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine | |||
| 2014-02-23 | Make DolphinWX/ mostly IWYU clean. | Pierre Bourdon | |
| 2014-02-20 | Fix more header sorting issues in DolphinWX/ (now check-includes clean). | Pierre Bourdon | |
| 2014-02-18 | Convert all includes to relative paths. | Lioncash | |
| 2014-02-17 | Second and final pass of clearing out tabs. | Lioncash | |
| 2013-12-31 | Remove unnecessary Src/ folders | Jasper St. Pierre | |
