Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | Try only building for Python 3.7 on Windows | Todd Leonhardt | 2019-10-17 | 1 | -5/+0 | |
| | | ||||||
| * | Don't try to build for Python 3.5 due to issue installing required mock ↵ | Todd Leonhardt | 2019-10-17 | 1 | -6/+1 | |
| | | | | | | | | dependency | |||||
| * | Fix environment variable name | Todd Leonhardt | 2019-10-17 | 1 | -1/+1 | |
| | | ||||||
| * | Experimenting with a very different AppVeyor configuration to try to fix ↵ | Todd Leonhardt | 2019-10-17 | 1 | -17/+30 | |
|/ | | | | Windows builds and make them more reliable | |||||
* | Updated change log for a release0.9.19 | Kevin Van Brunt | 2019-10-14 | 1 | -1/+3 | |
| | ||||||
* | Merge pull request #787 from python-cmd2/indent_error | Todd Leonhardt | 2019-10-09 | 1 | -1/+5 | |
|\ | | | | | Improved displaying multiline CompletionErrors | |||||
| * | Improved displaying multiline CompletionErrors | Kevin Van Brunt | 2019-10-09 | 1 | -1/+5 | |
|/ | ||||||
* | Merge pull request #786 from python-cmd2/history_error | Todd Leonhardt | 2019-10-08 | 2 | -2/+7 | |
|\ | | | | | Fixed ValueError exception when opening old history file | |||||
| * | Fixed a comment | Todd Leonhardt | 2019-10-08 | 1 | -1/+1 | |
| | | ||||||
| * | Fixed ValueError exception which can occur when opening an old format ↵ | Todd Leonhardt | 2019-10-07 | 2 | -1/+6 | |
|/ | | | | persistent history file with a new version of cmd2 | |||||
* | Updated change log for release0.9.18 | Kevin Van Brunt | 2019-10-01 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #784 from python-cmd2/mutually_exclusive_groups | Kevin Van Brunt | 2019-10-01 | 4 | -96/+170 | |
|\ | | | | | Mutually exclusive groups | |||||
| * | Updated change log | Kevin Van Brunt | 2019-09-30 | 1 | -0/+2 | |
| | | ||||||
| * | Added comment | Kevin Van Brunt | 2019-09-30 | 1 | -1/+1 | |
| | | ||||||
| * | Wrote unit tests | Kevin Van Brunt | 2019-09-30 | 1 | -9/+72 | |
| | | ||||||
| * | Respecting user's allow_ansi value when printing hints and errors in ↵ | Kevin Van Brunt | 2019-09-30 | 1 | -8/+6 | |
| | | | | | | | | | | | | AutoCompleter Simplified printing of CompletionErrors | |||||
| * | Simplifying tab completion message printing | Kevin Van Brunt | 2019-09-30 | 2 | -61/+20 | |
| | | ||||||
| * | Changed some logic and added comment why | Kevin Van Brunt | 2019-09-27 | 1 | -2/+3 | |
| | | ||||||
| * | Allowing flag in mutex group to appear more than once | Kevin Van Brunt | 2019-09-27 | 1 | -1/+8 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2019-09-27 | 1 | -1/+5 | |
| | | ||||||
| * | Remove unneeded variable | Kevin Van Brunt | 2019-09-27 | 1 | -2/+1 | |
| | | ||||||
| * | AutoCompleter now handles mutually exclusive groups | Kevin Van Brunt | 2019-09-27 | 2 | -6/+47 | |
| | | ||||||
| * | Initial steps to support mutually exclusive groups in AutoCompleter | Kevin Van Brunt | 2019-09-26 | 1 | -22/+22 | |
|/ | ||||||
* | Merge pull request #783 from python-cmd2/help_fix | Kevin Van Brunt | 2019-09-24 | 3 | -16/+39 | |
|\ | | | | | Help fix | |||||
| * | Added unit tests | Kevin Van Brunt | 2019-09-24 | 1 | -0/+25 | |
| | | ||||||
| * | Updated change log | Kevin Van Brunt | 2019-09-24 | 1 | -0/+5 | |
| | | ||||||
| * | Fixed bug introduced by get_names() looking at self instead of self.__class__. | Kevin Van Brunt | 2019-09-24 | 1 | -16/+9 | |
|/ | | | | Help functions for hidden and disabled commands were not being filtered out as help topics. | |||||
* | Updated change log for release0.9.17 | Kevin Van Brunt | 2019-09-23 | 1 | -1/+1 | |
| | ||||||
* | Merge pull request #782 from python-cmd2/in_script | Todd Leonhardt | 2019-09-23 | 3 | -8/+37 | |
|\ | | | | | Added in_script() and in_pyscript() to cmd2.Cmd class | |||||
| * | Added in_script() and in_pyscript() to cmd2.Cmd class | Kevin Van Brunt | 2019-09-23 | 3 | -8/+37 | |
|/ | ||||||
* | Merge pull request #781 from python-cmd2/CompletionError | Kevin Van Brunt | 2019-09-23 | 6 | -35/+126 | |
|\ | | | | | CompletionError class | |||||
| * | Merge branch 'master' into CompletionError | Kevin Van Brunt | 2019-09-23 | 6 | -35/+277 | |
| |\ | |/ |/| | ||||||
* | | Merge pull request #780 from python-cmd2/doc_additions | Todd Leonhardt | 2019-09-21 | 6 | -35/+277 | |
|\ \ | | | | | | | Doc additions | |||||
| * | | Minor spelling and grammar fixes | Todd Leonhardt | 2019-09-21 | 2 | -9/+9 | |
| | | | ||||||
| * | | Merge branch 'master' into doc_additions | Todd Leonhardt | 2019-09-17 | 9 | -248/+314 | |
| |\ \ | |/ / |/| | | ||||||
| * | | Merge branch 'master' into doc_additions | kotfu | 2019-09-07 | 4 | -3/+5 | |
| |\ \ | ||||||
| * | | | Document hiding and disabling commands | kotfu | 2019-08-25 | 5 | -52/+116 | |
| | | | | | | | | | | | | | | | | For #765 | |||||
| * | | | Add documentation and example for removing built-in commands | kotfu | 2019-08-23 | 5 | -10/+52 | |
| | | | | | | | | | | | | | | | | For #765 | |||||
| * | | | command documentation for #765 | kotfu | 2019-08-23 | 1 | -22/+158 | |
| | | | | ||||||
| | | * | Updated change log | Kevin Van Brunt | 2019-09-23 | 1 | -0/+1 | |
| | | | | ||||||
| | | * | Added unit tests for CompletionError | Kevin Van Brunt | 2019-09-23 | 2 | -4/+51 | |
| | | | | ||||||
| | | * | Finished implementation of CompletionError | Kevin Van Brunt | 2019-09-23 | 1 | -30/+62 | |
| | | | | ||||||
| | | * | Gave startup_script a default of '' instead of None | Kevin Van Brunt | 2019-09-20 | 1 | -2/+2 | |
| | | | | ||||||
| | | * | Added CompletionError exception class | Kevin Van Brunt | 2019-09-20 | 2 | -1/+12 | |
| |_|/ |/| | | ||||||
* | | | Merge pull request #776 from python-cmd2/required_subcmd | Todd Leonhardt | 2019-09-17 | 4 | -28/+24 | |
|\ \ \ | | | | | | | | | Missing subcommand no longer prints all help text | |||||
| * | | | No longer printing all help text for alias and macro when the subcommand is ↵ | Kevin Van Brunt | 2019-09-17 | 4 | -28/+24 | |
|/ / / | | | | | | | | | | omitted. Instead allow argparse to handle the error. | |||||
* | | | Merge pull request #774 from python-cmd2/completion_state | Todd Leonhardt | 2019-09-16 | 6 | -224/+258 | |
|\ \ \ | | | | | | | | | Completion state | |||||
| * | | | Fixed unit tests on Python versions older than 3.7 | Kevin Van Brunt | 2019-09-16 | 1 | -3/+3 | |
| | | | | ||||||
| * | | | Added unit test to override a parameter in a parent parser | Kevin Van Brunt | 2019-09-16 | 1 | -0/+6 | |
| | | | | ||||||
| * | | | Updated arg_tokens unit tests | Kevin Van Brunt | 2019-09-16 | 1 | -50/+15 | |
| | | | |