1
0
Fork 0
Commit Graph

2354 Commits

Author SHA1 Message Date
Mr. eXoDia 85434abf8c DBG: documented value.cpp (also fixed various small things in the code) 2014-12-26 12:17:20 +01:00
Mr. eXoDia 6163355db7 DBG: removed all auto-generated documentation 2014-12-25 11:18:28 +01:00
Mr. eXoDia 55d784fc73 DBG: more documentation updates 2014-12-24 15:46:12 +01:00
Mr. eXoDia 58973dd2a1 DBG: added documentation for plugin_loader.cpp 2014-12-24 15:07:32 +01:00
Mr. eXoDia 387815d1a4 DBG: documented math.cpp 2014-12-24 14:47:43 +01:00
Mr. eXoDia 98198815a4 Merge branch 'master' into doxygen 2014-12-23 14:00:37 +01:00
Mr. eXoDia 3378918d13 DBG: resolved issue #224 (print debug strings twice) + StringUtils::Escape function instead of separate code everywhere 2014-12-23 00:49:04 +01:00
Mr. eXoDia 620fa50ae9 DBG: fixed some stuff with the CriticalSectionLocker 2014-12-23 00:31:02 +01:00
Mr. eXoDia d89228bf74 PROJECT: updated readme 2014-12-21 13:22:58 +01:00
mrexodia 1aa12aa529 Merged in Nukem9/x64_dbg (pull request #39)
Bugfix
2014-12-21 13:12:32 +01:00
Nukem 6f781e0d0d CriticalSectionLocker unlock bug 2014-12-20 23:13:53 -05:00
Nukem9 f35bc34506 Merged mrexodia/x64_dbg into master 2014-12-20 23:06:50 -05:00
Mr. eXoDia f62d0705ef GUI: faster mouse wheel scrolling + more responsive GUI (hopefully without other things breaking) 2014-12-20 19:42:01 +01:00
Mr. eXoDia 5e97d06a8e removed auto documentation from x64_dbg_dbg\Core 2014-12-19 14:04:53 +01:00
Mr. eXoDia fc47caf0e0 Merge branch 'master' into doxygen
Conflicts:
	x64_dbg_dbg/_dbgfunctions.cpp
	x64_dbg_dbg/addrinfo.cpp
	x64_dbg_dbg/debugger_commands.cpp
	x64_dbg_dbg/value.cpp
	x64_dbg_launcher/x64_dbg_launcher.cpp
2014-12-19 13:49:36 +01:00
Mr. eXoDia 5230ba3543 DBG: some small code fixes 2014-12-18 12:37:48 +01:00
Mr. eXoDia 54fbc038df resolved issue #213 (mov dest,#DATA#) 2014-12-17 19:27:18 +01:00
Mr. eXoDia c3bb3581fd GUI: added "skip next instruction" menu item/hotkey + fixed some small bugs with the hotkey descriptions 2014-12-14 03:18:07 +01:00
Mr. eXoDia 3b755c9279 DBG: resolved issue #211 (added a 'skip' command to skip the next instruction) 2014-12-14 03:07:45 +01:00
Mr. eXoDia 8fa51b470e HELP: cleaned up a lot of useless SPAN stuff in the help files 2014-12-14 02:34:49 +01:00
Mr. eXoDia 7434a8741b DBG: resolved issue #49 (module RVA + file offset conversion notation). Implemented as "[module]:$[rva]" and "[module]:#[offset]" 2014-12-14 02:12:25 +01:00
Mr. eXoDia e8f4cd2ddf DBG: moved some functions to different files 2014-12-14 01:58:17 +01:00
Mr. eXoDia b29695b8ab DBG: changed mulhi operator symbol 2014-12-14 01:52:27 +01:00
Mr. eXoDia 388d5a0afe DBG: resolved issue #194 (very stupid stack overflow in _dbg_addrinfoget) 2014-12-14 00:46:29 +01:00
mrexodia 6b67cde4d4 Merged in SmilingWolf/x64_dbg/loadlib_asm (pull request #38)
Added loadlib (following plan B)
2014-12-12 21:57:47 +01:00
SmilingWolf 072f18b3c1 Threads problem: FIXED 2014-12-12 21:53:43 +01:00
SmilingWolf df4159720f Merge remote-tracking branch 'remotes/mrexodia/x64_dbg/master' into loadlib_asm 2014-12-12 21:49:48 +01:00
SmilingWolf 5fe328e73c Implemented (almost) all of the suggested fixes 2014-12-12 20:06:22 +01:00
Mr. eXoDia 208e216a35 LAUNCHER: resolve .lnk shortcuts 2014-12-12 16:56:01 +01:00
Mr. eXoDia 94fad3a0c4 GUI: do not check file extensions (for dragging & dropping .lnk or other files) 2014-12-12 15:46:17 +01:00
Mr. eXoDia 24ca2b4af3 DBG: resolve shortcut files 2014-12-12 15:45:38 +01:00
Mr. eXoDia 90c7c2393a DBG: added suspend/resume all threads 2014-12-11 17:49:36 +01:00
Mr. eXoDia 9243512e03 DBG: documented console.cpp 2014-12-10 23:10:17 +01:00
Mr. eXoDia b989c0b4c5 Merge branch 'master' into doxygen
Conflicts:
	x64_dbg_dbg/console.cpp
2014-12-10 23:07:42 +01:00
Mr. eXoDia 11bc98c371 DBG+GUI: (hopefully) fixed some random bugs with the status label 2014-12-10 23:07:18 +01:00
Mr. eXoDia d60f1aa6e1 Merge branch 'master' into doxygen 2014-12-10 22:55:30 +01:00
Mr. eXoDia efb5a02fa0 DBG: command.cpp documentation 2014-12-10 22:55:23 +01:00
Mr. eXoDia 541fbf44f8 DBG: argument.cpp documentation 2014-12-10 22:08:21 +01:00
Mr. eXoDia 8aa848b467 DBG: StringList typedef 2014-12-10 21:59:01 +01:00
Mr. eXoDia d13579e781 DBG: Started with new documentation, see https://pad.nopcode.org/p/x64dbg_doxygen for more information 2014-12-10 21:58:34 +01:00
SmilingWolf bc3e529a10 Merged mrexodia/x64_dbg/master into loadlib_asm 2014-12-09 18:30:31 +01:00
Mr. eXoDia f4a9591103 Merge branch 'master' into capstone
Conflicts:
	x64_dbg_dbg/x64_dbg_dbg.vcxproj.filters
2014-12-09 11:14:42 +01:00
Mr. eXoDia fde43663fd Merge branch 'master' into doxygen
Conflicts:
	x64_dbg_dbg/_dbgfunctions.cpp
	x64_dbg_dbg/_exports.cpp
	x64_dbg_dbg/_global.cpp
	x64_dbg_dbg/instruction.cpp
	x64_dbg_dbg/patches.cpp
	x64_dbg_dbg/value.cpp
	x64_dbg_dbg/variable.cpp
2014-12-09 11:12:40 +01:00
Mr. eXoDia 52512b8af5 DBG: removed some useless functions 2014-12-09 11:02:14 +01:00
Mr. eXoDia 5a78857ab8 GUI: build date in about dialog 2014-12-09 01:30:28 +01:00
Mr. eXoDia a883544e52 DBG: resolved issue #221 (crashes because of race conditions) 2014-12-09 01:29:08 +01:00
Mr. eXoDia 4d469f3742 GUI: YMM registers inside the FPU section 2014-12-08 22:22:38 +01:00
SmilingWolf bacc720d74 Merged mrexodia/x64_dbg/master into loadlib_asm 2014-12-08 21:49:13 +01:00
Mr. eXoDia 67b7fcb79f DBG: updated TitanEngine + fixed a warning in _dbgfunctions.cpp 2014-12-08 16:37:52 +01:00
SmilingWolf 2ea09c39bd Clear the trap flag 2014-12-08 15:48:18 +01:00