summaryrefslogtreecommitdiff
path: root/CHANGES.md
Commit message (Collapse)AuthorAgeFilesLines
* Renamed CHANGES.md to CHANGELOG.mdTodd Leonhardt2017-08-091-176/+0
| | | | Just to make it that much more obvious what exactly it is ;-)
* Fixed unit test error on combination of Python 2.7 and WindowsTodd Leonhardt2017-08-071-0/+1
|
* Updated CHANGES and bumped version in preparation for 0.7.6 releaseTodd Leonhardt2017-08-021-1/+2
|
* Added remove_unused.py example to demonstrate how to remove unused commandsTodd Leonhardt2017-07-311-1/+2
|
* Fixed a Markdown formatting error in CHANGES.mdTodd Leonhardt2017-07-141-3/+3
|
* Added support for case-insensitive tab-completion of cmd2 command namesTodd Leonhardt2017-07-131-0/+2
|
* Fixed a unit testTodd Leonhardt2017-07-121-2/+4
| | | | | | Also: - Added a couple unit tests related to case-sensitive vs case-insensitive parsing - Updated CHANGES.md
* Fixed a comment and updated CHANGESTodd Leonhardt2017-07-101-0/+1
|
* Updated CHANGES.mdTodd Leonhardt2017-07-091-0/+2
|
* Bump version to 0.7.6a (from 0.7.5)Todd Leonhardt2017-07-081-0/+6
|
* Added a unit test for custom intro when calling cmdloop()Todd Leonhardt2017-07-081-1/+2
| | | | Also updated CHANGES.md
* Fix a bug in a unit test which can happen in atypical circumstancesTodd Leonhardt2017-07-051-1/+2
|
* Minor tweak to CHANGESTodd Leonhardt2017-07-031-1/+2
|
* Updated CHANGESTodd Leonhardt2017-07-031-5/+3
|
* Fixed a few bugs and examplesTodd Leonhardt2017-07-031-0/+11
| | | | | | | | | | | | | | Bug fixes: - case_insensitive is no longer a runtime-settable parameter, but it was still listed as such - Fixed a recursive loop bug when abbreviated commands are enabled and it could get stuck in the editor forever - Added additional command abbreviations to the "exclude from history" list - Fixed argparse_example.py and pirate.py examples Other changes: - Organized all attributes used to configure the ParserManager into a single location - Set the default value of "abbrev" to False (which controls whether or not abbreviated commands are allowed) - With good tab-completion of command names, using abbreviated commands isn't a particularly useful feature - And it can create problems
* Bump version to 0.7.5aTodd Leonhardt2017-07-031-0/+6
|
* Updated CHANGES0.7.4Todd Leonhardt2017-07-031-2/+4
|
* Removed unnecessary try/except in do_shellTodd Leonhardt2017-07-021-0/+1
| | | | Since in the subprocess.Popen() call, shell=True and stderr=sys.stderr, errors get printed on stderr. There is no need to catch an exception.
* Stopped skipping a unit test on Windows which should pass nowTodd Leonhardt2017-07-011-0/+1
|
* Added more unit tests for py and pyscript commandsTodd Leonhardt2017-07-011-3/+5
|
* Replaced clipboard copy and paste custom code with pyperclipTodd Leonhardt2017-06-301-1/+3
| | | | | | - Added a 3rd-party dependency on the pyperclip module TODO: Rigorous test on all OSes, particularly Linux systems without xclip
* Bumped version to 0.7.4 and updated CHANGES fileTodd Leonhardt2017-06-291-0/+1
|
* Updated CHANGES fileTodd Leonhardt2017-06-281-0/+7
|
* Updated CHANGES.mdTodd Leonhardt2017-06-251-0/+10
|
* Added release date for 0.7.3 releaseTodd Leonhardt2017-06-231-1/+1
|
* Trivial typo fixTodd Leonhardt2017-06-151-1/+1
|
* Fixed tab completion of command and shell commandsTodd Leonhardt2017-06-151-1/+2
| | | | We now more closely emulate how Bash does or does not append a space.
* Minor clarification in CHANGES.mdTodd Leonhardt2017-06-141-1/+1
|
* Updated CHANGES.md fileTodd Leonhardt2017-06-141-0/+3
|
* Updated CHANGES.md file and bumped version to 0.7.3Todd Leonhardt2017-06-141-3/+8
| | | | Bumped version in preparation for 0.7.3 release probably within the next couple weeks.
* Added new pyscript commandTodd Leonhardt2017-06-131-0/+1
| | | | | | | | This command is explicitly for running Python script files within an embedded Python interpreter. The advantages over the py command with "run" are: - Tab-completion of file system paths is supported - Command-line arguments can be passed to the Python script
* Updated CHANGES.mdTodd Leonhardt2017-06-031-0/+11
|
* Bumping version to 0.7.20.7.2Todd Leonhardt2017-05-221-1/+8
|
* Added a unit test and updated changesTodd Leonhardt2017-05-211-0/+1
|
* Updated an example, features, and changes based on new support for path and ↵Todd Leonhardt2017-05-171-0/+1
| | | | command completion
* Renamed CHANGES.rst to CHANGES.mdTodd Leonhardt2017-05-161-0/+86
Converted from reStructuredText to Markdown and updated for recent changes