summaryrefslogtreecommitdiff
path: root/README.md
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a bunch of examples which were broken due to moving DEFAULT_SHORTCUTS ↵Todd Leonhardt2019-06-161-1/+1
| | | | from cmd2.py to constants.py
* Updated various documentation and tests to not use loadTodd Leonhardt2019-06-151-3/+3
|
* Print warnings at end of load or pyscript instead of beginningTodd Leonhardt2019-06-151-1/+1
| | | | This is in case the user runs a long script - I don't want the warning to quickly scroll off the screen where they then never see it.
* Updated documentationKevin Van Brunt2019-06-151-3/+3
|
* Deprecate support for Python 3.4 and begin testing with Python 3.8 betaTodd Leonhardt2019-06-141-2/+2
|
* Updated README to include links to more and a wider variety of open-source ↵Todd Leonhardt2019-06-101-4/+12
| | | | projects based on cmd2
* Refactor exit_code implementationTodd Leonhardt2019-05-201-2/+3
| | | | | | | | | | | | cmd2.Cmd.cmdloop() now returns self.exit_code which should be an integer Also: - Refactored examples to call sys.exit(app.cmdloop()) in their __main__ - Running transcript tests now sets the exit_code accordingly based on success/failure - Updated CHANGELOG - Updated README - Updated Sphinx docs - Added unit test for case when transcript test fails
* Minor update to README.md directly on master branch to evaluate if Windows ↵Todd Leonhardt2019-05-131-1/+1
| | | | unit tests are working correctly on AppVeyor
* Updated docs to reflect that shortcuts are now passed into the super class ↵Todd Leonhardt2019-03-141-4/+3
| | | | initializer
* First stage of attribute refactoringTodd Leonhardt2019-03-131-5/+4
| | | | | | | | | | The following are now arguments to cmd2.Cmd.__init__() instead of class attributes: * allow_redirection * multiline_commands * terminators * shortcuts Added a couple read-only properties for convenience of cmd2.Cmd accessing immutable members from self.statement_parser
* Fixed spellingKevin Van Brunt2019-03-011-1/+1
|
* Updated macro documentation0.9.9Kevin Van Brunt2019-02-211-1/+1
|
* Changed examples to reflect that settable doesn't need to be updated before ↵Kevin Van Brunt2019-02-201-2/+4
| | | | calling init()
* Added blank lines between code blocks in code examplesigorzakhar2019-01-041-0/+3
|
* Added info on asynchronous alerting capabilities to the READMETodd Leonhardt2018-10-261-0/+10
|
* Update README.mdkmvanbrunt2018-10-261-1/+1
| | | Co-Authored-By: tleonhardt <todd.leonhardt@gmail.com>
* Clarified role of ACArgumentParser and removed redundant description of ↵Todd Leonhardt2018-10-261-3/+5
| | | | basic_complete
* Made significant updates to README.mdTodd Leonhardt2018-10-261-24/+102
| | | | The initial goal was to improve documentation of tab-completion capabilities. But the README got updates in several areas.
* Documentation updatesKevin Van Brunt2018-10-121-6/+1
|
* Using wcwidth to calculate display width of promptKevin Van Brunt2018-10-111-5/+4
|
* Documented macrosKevin Van Brunt2018-09-271-0/+1
|
* Added documentationKevin Van Brunt2018-09-251-0/+1
|
* Minor whitespace updateTodd Leonhardt2018-09-241-2/+1
|
* Updated video linkTodd Leonhardt2018-09-241-1/+2
|
* Fixed spelling of tracebackTodd Leonhardt2018-09-211-1/+1
|
* Made various fixes and improvements to contributor's guideTodd Leonhardt2018-09-201-0/+12
| | | | | | | | | | | Including: - Fixed broken link - Added missing section to TOC - Updated prerequisites - Updated instructions for publishing a release Also: - Added section to end of Readme.md giving users instructions on what to do if they find a bug
* Updated Azure DevOps build badge since name of pipeline changedTodd Leonhardt2018-09-121-1/+1
|
* Updated CHANGELOG with bug fix comment for associated PRTodd Leonhardt2018-09-041-2/+2
| | | | | Also - Updated README to change wording about Python 2.7 being EOL since final date for supporting bug fixes has passed
* Updated docs and unit testsKevin Van Brunt2018-08-021-2/+1
|
* Fix documentation in regards to requirements on Python 3.4Todd Leonhardt2018-07-171-1/+2
| | | | Added typing backport dependency for Python 3.4
* Add VSTS build badge to READMETodd Leonhardt2018-07-171-0/+1
| | | | | Currently this represents VSTS Hosted Linux builds - But it is a placeholder for eventual VSTS Hosted macOS builds
* Started updating CHANGELOGTodd Leonhardt2018-07-161-1/+2
| | | | | | Also: - Bumped version to 0.9.4 - Updated info in Readme and Sphinx docs to reflect new dependency on attrs
* Really get rid of the inputFrom stuff, including documentationkotfu2018-04-291-1/+1
|
* multilineCommands -> multiline_commandskotfu2018-04-291-2/+2
|
* Removed pyparsing from setup.py as a dependencyTodd Leonhardt2018-04-281-1/+1
| | | | | | Also: - updated README.md to correctly state 3rd-party dependencies - Updated docs/requirements.txt to no longer include pyparsing for ReadTheDocs build
* Minor cleanup of example code in README.mdTodd Leonhardt2018-04-151-9/+6
|
* Started removing dependency on sixTodd Leonhardt2018-04-151-2/+1
| | | | | | | Removed all dependency on six other than for six.moves.input Also: - Started removing code branches which were for Python 2 support
* Removed reference to Python 2 and 2.7 in some sections of the documentationTodd Leonhardt2018-04-151-5/+4
|
* No longer try to test on Python 2.7 on either TravisCI or AppVeyorTodd Leonhardt2018-04-151-6/+5
|
* Moved up date we plan to discontinue support for Python 2 on.Todd Leonhardt2018-04-111-1/+1
|
* Corrected docsKevin Van Brunt2018-04-061-1/+1
|
* Updated documentationKevin Van Brunt2018-03-311-1/+2
|
* Merge branch 'master' into new_quoted_completionKevin Van Brunt2018-03-251-1/+1
|\
| * Added link to video of Florida Pycon 2017 presentation on cmd2Todd Leonhardt2018-03-231-1/+1
| | | | | | | | Link added to both README and Resources section of Sphinx docs.
* | Renamed exclude_from_help to hidden_commandsKevin Van Brunt2018-03-221-2/+2
|/ | | | | Renamed excludeFromHistory to exclude_from_history No longer tab completing hidden commands
* Clarify alias and startup script languagekotfu2018-03-171-1/+2
|
* Added a tiny bit of documentationTodd Leonhardt2018-03-171-1/+1
|
* Added documentationKevin Van Brunt2018-03-161-0/+1
|
* Refactored the Windows vs macOS/Linux conditional in ppaged()Todd Leonhardt2018-03-071-0/+1
| | | | | | | Aslo: - Added some documentation for ppaged() - Updated CHANGELOG - Added line about ppaged() in README
* Removed support for case-insensitive command parsingTodd Leonhardt2018-03-021-5/+1
|