Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | do_shell() now saves the return code of the command it runs in ↵ | Kevin Van Brunt | 2020-03-20 | 1 | -0/+4 | |
| | | | | self.last_result for use in pyscripts | |||||
* | Updating change log for release1.0.1 | Kevin Van Brunt | 2020-03-13 | 1 | -1/+1 | |
| | ||||||
* | Updated change log | Kevin Van Brunt | 2020-03-12 | 1 | -1/+1 | |
| | ||||||
* | Updated change log | Kevin Van Brunt | 2020-03-05 | 1 | -0/+4 | |
| | ||||||
* | Added info to changelog in preparation for 1.0.0 release1.0.0 | Todd Leonhardt | 2020-03-01 | 1 | -0/+8 | |
| | ||||||
* | Formatting update in change log | Kevin Van Brunt | 2020-02-19 | 1 | -2/+2 | |
| | ||||||
* | Updated change log for release | Kevin Van Brunt | 2020-02-19 | 1 | -1/+5 | |
| | ||||||
* | Updated CHANGELOG | Todd Leonhardt | 2020-02-18 | 1 | -1/+2 | |
| | ||||||
* | Updated change log and comment | Kevin Van Brunt | 2020-02-18 | 1 | -0/+2 | |
| | ||||||
* | Made CompletionError exception available to non-argparse tab completion | Kevin Van Brunt | 2020-02-17 | 1 | -0/+1 | |
| | ||||||
* | Renamed AutoCompleter to ArgparseCompleter for clarity | Kevin Van Brunt | 2020-02-17 | 1 | -0/+1 | |
| | ||||||
* | Only tab complete after redirection tokens if redirection is allowed | Kevin Van Brunt | 2020-02-17 | 1 | -0/+1 | |
| | ||||||
* | Updated documentation and tests | Kevin Van Brunt | 2020-02-17 | 1 | -0/+2 | |
| | ||||||
* | Updated change log | Kevin Van Brunt | 2020-02-14 | 1 | -1/+1 | |
| | ||||||
* | Fixed bug where pyscripts could edit cmd2.Cmd.py_locals dictionary. | Kevin Van Brunt | 2020-02-14 | 1 | -0/+7 | |
| | | | | | | | | | Fixed bug where cmd2 set sys.path[0] for a pyscript to its cwd instead of the script's directory. Fixed bug where sys.path was not being restored after a pyscript ran. Setting the following pyscript variables: __name__: __main__ __file__: script path (as typed) Removed do_py.run() function since it didn't handle arguments and offered no benefit over run_pyscript. | |||||
* | Removed dash from 'tab complete' string | Kevin Van Brunt | 2020-02-13 | 1 | -14/+14 | |
| | ||||||
* | Fixed bug where ANSI style sequences were not correctly handled in ↵ | Kevin Van Brunt | 2020-02-11 | 1 | -0/+1 | |
| | | | | utils.truncate_line() | |||||
* | Renamed set command's -l/--long flag to -v/--verbose for consistency with ↵ | Kevin Van Brunt | 2020-02-10 | 1 | -0/+2 | |
| | | | | help and history commands | |||||
* | Corrected issue where the actual new value was not always being printed in ↵ | Kevin Van Brunt | 2020-02-10 | 1 | -0/+5 | |
| | | | | | | | | do_set. Fixed do_set unit test. Made allow_ansi setter error message consistent with str_to_bool. Updated a docstring | |||||
* | Ran into an issue attempting to publish a release 1.0.0-rc1 to test.pypi.org0.10.0 | Todd Leonhardt | 2020-02-07 | 1 | -3/+4 | |
| | | | | | | I'm not sure if the problem is specific to the test version of PyPI or if it is related to limitations in setuptools_scm. But to keep things simple I just changed the version to 0.10.0 and updated the CHANGELOG accordingly | |||||
* | Updated release data for 1.0.0-rc1 in preparation for a release candidate | Todd Leonhardt | 2020-02-07 | 1 | -1/+4 | |
| | | | | | Also: - Updated some very outdated comments in transcript files | |||||
* | Updated change log | Kevin Van Brunt | 2020-02-07 | 1 | -0/+3 | |
| | ||||||
* | The fact that the set command now supports tab-completion of values is an ↵ | Todd Leonhardt | 2020-02-07 | 1 | -1/+1 | |
| | | | | enhancement, not a breaking change | |||||
* | Updated changelog to address removal of ansi.FG_COLORS and ansi.BG_COLORS ↵ | Todd Leonhardt | 2020-02-07 | 1 | -0/+2 | |
| | | | | | | | and mention their replacement by ansi.fg and ansi.bg enums Also: - Use ansi.fg in async_printing.py and README.md | |||||
* | Added convenience `ansi.fg` and `ansi.bg` enums of foreground and background ↵ | Todd Leonhardt | 2020-02-06 | 1 | -0/+4 | |
| | | | | | | colors which style() can now optionally use This is to make it easier to autocomplete color names in an IDE | |||||
* | Documentation updates | kotfu | 2020-02-05 | 1 | -9/+11 | |
| | ||||||
* | Updated change log | Kevin Van Brunt | 2020-02-05 | 1 | -0/+1 | |
| | ||||||
* | Updated CHANGELOG and made a few minor tweaks | Todd Leonhardt | 2020-02-04 | 1 | -0/+4 | |
| | ||||||
* | Merge branch 'master' into changelog_clarification | Todd Leonhardt | 2020-01-29 | 1 | -0/+2 | |
|\ | ||||||
| * | Updated CHANGELOG | Todd Leonhardt | 2020-01-29 | 1 | -0/+2 | |
| | | ||||||
* | | Clarify changes related to removal of attributes from being runtime settable ↵ | Todd Leonhardt | 2020-01-29 | 1 | -1/+1 | |
|/ | | | | by default | |||||
* | Addressed PR comments | Todd Leonhardt | 2020-01-27 | 1 | -1/+1 | |
| | ||||||
* | Renamed locals_in_py to self_in_py | Todd Leonhardt | 2020-01-27 | 1 | -1/+2 | |
| | | | | This more accurately reflects what it controls | |||||
* | Made three public attributes of cmd2.Cmd no longer settable at runtime by ↵ | Todd Leonhardt | 2020-01-27 | 1 | -0/+7 | |
| | | | | | | | | | end users The 3 attributes are: - continuation_prompt - locals_in_py - prompt | |||||
* | Updating release date in CHANGELOG0.9.25 | Todd Leonhardt | 2020-01-26 | 1 | -1/+1 | |
| | ||||||
* | Updated CHANGELOG | Todd Leonhardt | 2020-01-26 | 1 | -0/+4 | |
| | ||||||
* | Update release date in CHANGELOG0.9.24 | Todd Leonhardt | 2020-01-23 | 1 | -1/+1 | |
| | ||||||
* | Update CHANGELOG and setup.py | Todd Leonhardt | 2020-01-22 | 1 | -0/+1 | |
| | ||||||
* | Updating unit tests and docs | Kevin Van Brunt | 2020-01-20 | 1 | -0/+3 | |
| | ||||||
* | Improved responsiveness when setting windows title and printing alerts | Kevin Van Brunt | 2020-01-17 | 1 | -0/+5 | |
| | ||||||
* | Updated CHANGELOG for a release0.9.23 | Todd Leonhardt | 2020-01-09 | 1 | -1/+1 | |
| | ||||||
* | Added dim text style support | Kevin Van Brunt | 2020-01-07 | 1 | -0/+5 | |
| | ||||||
* | Merge branch 'master' into ansi_to_style | Kevin Van Brunt | 2020-01-07 | 1 | -0/+1 | |
|\ | ||||||
| * | Updated CHANGELOG | Todd Leonhardt | 2020-01-05 | 1 | -0/+1 | |
| | | ||||||
* | | Renamed ansi_safe_wcswidth() to style_aware_wcswidth() | Kevin Van Brunt | 2019-12-19 | 1 | -0/+5 | |
|/ | | | | Renamed ansi_aware_write() to style_aware_write() | |||||
* | Fixed bug where startup script containing a single quote in its file name ↵ | Kevin Van Brunt | 2019-12-17 | 1 | -0/+4 | |
| | | | | was incorrectly quoted | |||||
* | Fixed doc generation errors | Kevin Van Brunt | 2019-12-09 | 1 | -1/+2 | |
| | ||||||
* | Renamed functions based on code review comments. Fixed Python warnings. | Kevin Van Brunt | 2019-12-09 | 1 | -3/+3 | |
| | ||||||
* | Updated change log for release | Kevin Van Brunt | 2019-12-09 | 1 | -1/+1 | |
| | ||||||
* | Updated change log | Kevin Van Brunt | 2019-12-09 | 1 | -0/+2 | |
| |