Skip to content

Tags: cyrus-and/gdb-dashboard

Tags

v0.17.4

Fix GDB tab completion issue

So it seems that importing readline causes issue with the GDB prompt, in fact
GDB already tries (failing) to avoid that. The issue manifests when debugging a
program with the source code available, e.g., C, and IPython is available in the
system.

Fixes #325 and closes #326 by providing a better solution.

v0.17.3

Use .group(0) instead of [0] for regex matches

The latter was added in Python version 3.6.

Close #323

v0.17.2

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Discard dot files in the init dirs

Co-authored-by: jl <jl@poltergeist>
Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>

v0.17.1

Fix code typo

v0.17.0

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add a way to provide a complete method to a gdb.Command

v0.16.1

Handle the empty register list

Close #277

v0.16.0

Avoid errors in older GDB versions where BP_CATCHPOINT is not there

Related to #270.

v0.15.1

Do not replace tabs in assembly output

Before this, the alignment was broken.

v0.15.0

Save the dashboard instance as a global variable

This allows custom commands to make use of the dashboard instance, see:

https://github.com/cyrus-and/gdb-dashboard/wiki/Develop-custom-commands

This should ease the adoption of custom dashboard Python commands like the one
suggested in #257.

v0.14.0

Re-add 'highlight-line' option to "Source" and "Assembly" module

This allows to set the background color for Pygments text.

This was originally added in 4328974
then reverted in 0736cf3. Here is the
reason:

#116 (comment)

Close #252