mirror of
https://github.com/cs01/gdbgui
synced 2024-11-16 07:47:46 +01:00
update version and readme
This commit is contained in:
parent
09d85a2042
commit
5b15358e8c
5 changed files with 12 additions and 7 deletions
|
@ -3,9 +3,13 @@
|
|||
## dev
|
||||
Changes that are in master but have not yet been pushed to PyPI.
|
||||
|
||||
## 0.9.1.0
|
||||
* Lazily load files (issue #131)
|
||||
* Update setup.py to build wheels
|
||||
|
||||
## 0.9.0.1
|
||||
* Reupload to fix setup.cfg PyPI bug
|
||||
|
||||
## 0.9.0.0
|
||||
* Compress responses from server (massive bandwidth improvement)
|
||||
* Add button to toggle assembly flavors (issue #110)
|
||||
|
|
|
@ -7,7 +7,7 @@ A browser-based frontend for GDB
|
|||
.. image:: https://travis-ci.org/cs01/gdbgui.svg?branch=master
|
||||
:target: https://travis-ci.org/cs01/gdbgui
|
||||
|
||||
.. image:: https://img.shields.io/badge/pypi-0.9.0.1-blue.svg
|
||||
.. image:: https://img.shields.io/badge/pypi-0.9.1.0-blue.svg
|
||||
:target: https://pypi.python.org/pypi/gdbgui/
|
||||
|
||||
.. image:: https://img.shields.io/badge/python-2.7,3.4,3.5,3.6,pypy-blue.svg
|
||||
|
@ -36,6 +36,7 @@ Features
|
|||
- Show assembly next to source code, highlighting current instruction. Can also step through instructions.
|
||||
- Assembly is displayed if source code cannot be found
|
||||
- Fully functional console with autocomplete functionality to fallback to if necessary
|
||||
- Lazy load files that so extremely large files (1 Million+ LOC) load and render as fast as small files
|
||||
- Notifications when new gdbgui updates are available
|
||||
- Optional password protection when serving from a publicly accessible machine
|
||||
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.9.0.1
|
||||
0.9.1.0
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
__title__ = 'gdbgui'
|
||||
__version__ = '0.9.0.1'
|
||||
__version__ = '0.9.1.0'
|
||||
__author__ = 'Chad Smith'
|
||||
__copyright__ = 'Copyright Chad Smith'
|
||||
|
|
8
setup.py
8
setup.py
|
@ -24,7 +24,8 @@ REQUIRED = [
|
|||
'Flask-Compress>=1.4.0', # to compress flask responses
|
||||
]
|
||||
|
||||
README = io.open('README.rst', 'r', encoding="utf-8").read()
|
||||
README = io.open(os.path.join(CURDIR, 'README.rst'), 'r', encoding="utf-8").read()
|
||||
VERSION = io.open(os.path.join(CURDIR, 'gdbgui/VERSION.txt'), 'r', encoding="utf-8").read().strip()
|
||||
|
||||
|
||||
class TestCommand (Command):
|
||||
|
@ -79,7 +80,7 @@ class UploadCommand(Command):
|
|||
|
||||
setup(
|
||||
name='gdbgui',
|
||||
version='0.9.0.1',
|
||||
version=VERSION,
|
||||
author='Chad Smith',
|
||||
author_email='grassfedcode@gmail.com',
|
||||
description='browser-based gdb frontend using Flask and JavaScript to visually debug C, C++, Go, or Rust',
|
||||
|
@ -106,7 +107,7 @@ setup(
|
|||
classifiers=[
|
||||
'Intended Audience :: Developers',
|
||||
'Operating System :: OS Independent',
|
||||
'License :: OSI Approved :: GNU GPLv3',
|
||||
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
|
@ -115,6 +116,5 @@ setup(
|
|||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: Implementation :: PyPy'
|
||||
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue