Skip to content

Commit 7a7d7a7

Browse files
author
Chad Smith
committed
show sent commands in gdb terminal
1 parent 43c3d56 commit 7a7d7a7

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A browser-based frontend/gui for GDB
88
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
99
:target: https://travis-ci.org/cs01/gdbgui
1010

11-
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.1-blue.svg
11+
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.2-blue.svg
1212
:target: https://pypi.python.org/pypi/gdbgui/
1313

1414
.. image:: https://img.shields.io/badge/python-2.7, 3.4, 3.5, pypy-blue.svg

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Release v\ |version|
1111
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
1212
:target: https://travis-ci.org/cs01/gdbgui
1313

14-
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.1-blue.svg
14+
.. image:: https://img.shields.io/badge/pyPI-v0.7.4.2-blue.svg
1515
:target: https://pypi.python.org/pypi/gdbgui/
1616

1717
.. image:: https://img.shields.io/badge/python-2.7, 3.3, 3.4, 3.5, pypy-blue.svg

gdbgui/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.4.1
1+
0.7.4.2

gdbgui/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
__title__ = 'gdbgui'
2-
__version__ = '0.7.4.1'
2+
__version__ = '0.7.4.2'
33
__author__ = 'Chad Smith'
44
__copyright__ = 'Copyright Chad Smith'

gdbgui/static/js/gdbgui.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1671,6 +1671,7 @@ const GdbCommandInput = {
16711671
},
16721672
run_current_command: function(){
16731673
let cmd = GdbCommandInput.el.val()
1674+
GdbConsoleComponent.add_sent_commands(cmd)
16741675
GdbCommandInput.clear()
16751676
GdbApi.run_gdb_command(cmd)
16761677
},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def run(self):
2525

2626
setup(
2727
name='gdbgui',
28-
version='0.7.4.1',
28+
version='0.7.4.2',
2929
author='Chad Smith',
3030
author_email='grassfedcode@gmail.com',
3131
description=('browser-based gdb frontend using Flask and JavaScript to visually debug C, C++, Go, or Rust'),

0 commit comments

Comments
 (0)