summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | Updated Sphinx docs about helpTodd Leonhardt2020-02-091-11/+61
|/ /
| * Merge branch 'api_docs' of https://github.com/python-cmd2/cmd2 into api_docskotfu2020-02-103-20/+51
| |\
| | * Merge branch 'master' into api_docsTodd Leonhardt2020-02-083-20/+51
| | |\ | |_|/ |/| |
* | | Merge pull request #879 from python-cmd2/prompt_docsTodd Leonhardt2020-02-083-20/+51
|\ \ \ | | | | | | | | Updated Sphinx documentation related to prompt
| * | | Updated Sphinx documentation related to promptTodd Leonhardt2020-02-083-20/+51
|/ / /
| * | Begin process of combining utils api docs into a single documentkotfu2020-02-104-66/+6
| | |
| * | Add example to with_argument_list docstringkotfu2020-02-101-3/+13
| | |
| * | Title decorator documentation by package namekotfu2020-02-092-4/+4
| |/
| * Show autodoc members in the same order as the source codekotfu2020-02-081-0/+5
| |
| * All public api functions now documentedkotfu2020-02-081-3/+45
|/
* Ran into an issue attempting to publish a release 1.0.0-rc1 to test.pypi.org0.10.0Todd Leonhardt2020-02-071-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 candidateTodd Leonhardt2020-02-074-4/+8
| | | | | Also: - Updated some very outdated comments in transcript files
* Merge pull request #877 from python-cmd2/changelog_fixTodd Leonhardt2020-02-077-100/+128
|\ | | | | Changelog fix for removed ansi.FG_COLORS and ansi.BG_COLORS
| * Fixed docs errorKevin Van Brunt2020-02-071-1/+2
| |
| * Updated change logKevin Van Brunt2020-02-071-0/+3
| |
| * Added unit test for ColorBase.colors()Kevin Van Brunt2020-02-071-0/+7
| |
| * Updated plumbum exampleKevin Van Brunt2020-02-072-41/+43
| |
| * Added __str__() back to ColorBase for more flexibility in its usageKevin Van Brunt2020-02-072-10/+36
| | | | | | | | Updated documentation and added unit tests
| * Simplified ColorBase.__add__()Kevin Van Brunt2020-02-071-6/+0
| |
| * Corrected docstringKevin Van Brunt2020-02-071-1/+1
| |
| * Support using fg and bg enum in + operations to build color stringsKevin Van Brunt2020-02-071-16/+33
| |
| * Removed unnecessary methods from fg and bg color enumsTodd Leonhardt2020-02-072-32/+8
| |
| * Simplified fg's and bg's get_value()Kevin Van Brunt2020-02-071-2/+2
| |
| * Removed repeated Pycharm warning suppressionKevin Van Brunt2020-02-071-1/+1
| |
| * The fact that the set command now supports tab-completion of values is an ↵Todd Leonhardt2020-02-071-1/+1
| | | | | | | | enhancement, not a breaking change
| * Updated changelog to address removal of ansi.FG_COLORS and ansi.BG_COLORS ↵Todd Leonhardt2020-02-073-9/+11
|/ | | | | | | and mention their replacement by ansi.fg and ansi.bg enums Also: - Use ansi.fg in async_printing.py and README.md
* Merge pull request #876 from python-cmd2/color_autocompleteTodd Leonhardt2020-02-069-79/+142
|\ | | | | Added convenience enums of fg and bg colors
| * Merge branch 'master' into color_autocompleteTodd Leonhardt2020-02-0619-87/+68
| |\ | |/ |/|
* | Merge pull request #875 from python-cmd2/doc_streamlineTodd Leonhardt2020-02-0619-87/+68
|\ \ | | | | | | Doc streamline
| * | EmbeddedConsoleExit should not be part of the public apikotfu2020-02-061-2/+0
| | |
| * | Fix redundant declaration of cmd2.Cmd.__init__ methodkotfu2020-02-061-3/+1
| | |
| * | Add documentation of __init__ methodkotfu2020-02-061-0/+2
| | |
| * | Merge branch 'doc_streamline' of https://github.com/python-cmd2/cmd2 into ↵kotfu2020-02-061-4/+3
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | doc_streamline # Conflicts: # docs/features/settings.rst
| | * \ Merge branch 'master' into doc_streamlineTodd Leonhardt2020-02-0634-292/+422
| | |\ \ | |_|/ / |/| | | | | | | | | | | # Conflicts: # docs/features/settings.rst
| * | | Merge branch 'master' into doc_streamlinekotfu2020-02-0634-291/+422
| |\ \ \ | |/ / / |/| / / | |/ / | | | # Conflicts: # docs/features/settings.rst
| * | Clean up class and method referenceskotfu2020-02-0519-80/+64
| | | | | | | | | | | | | | | - In docs/api/cmd.rst, the `cmd2.Cmd` class was defined as `cmd2.cmd2.Cmd`, which required the extraneous `cmd2` every time we referenced it. This extra `cmd2` is no longer required. - always refer to a bare cmd2 using ``cmd2`` per our documentation conventions
| | * Renamed argument from color to name for fg.get_value() and bg.get_value()Todd Leonhardt2020-02-061-4/+4
| | |
| | * Suppressed bogus PyCharm warnings and improved error message for invalid ↵Todd Leonhardt2020-02-061-2/+6
| | | | | | | | | | | | colors passed to style
| | * Having two parallel datastructures each for foreground and background colors ↵Todd Leonhardt2020-02-066-65/+46
| | | | | | | | | | | | | | | | | | felt really clunky - now we just have one The Enum classes are now smart and deal with it all.
| | * Added convenience `ansi.fg` and `ansi.bg` enums of foreground and background ↵Todd Leonhardt2020-02-065-15/+93
| |/ |/| | | | | | | | | colors which style() can now optionally use This is to make it easier to autocomplete color names in an IDE
* | Merge pull request #873 from python-cmd2/set_updateTodd Leonhardt2020-02-0634-295/+426
|\ \ | |/ |/| Updated set command to support tab completion of values
| * Fixed example codeKevin Van Brunt2020-02-061-1/+1
| |
| * Fix flake8 errors in doc configTodd Leonhardt2020-02-051-3/+0
| |
| * Documentation updateskotfu2020-02-055-24/+38
| |
| * Updated documentationKevin Van Brunt2020-02-051-1/+1
| |
| * Updated change logKevin Van Brunt2020-02-051-0/+1
| |
| * No longer displaying list of subcommands in usage text of alias and macroKevin Van Brunt2020-02-052-4/+4
| |
| * Fixing tab-completion hints when completing the value field of setKevin Van Brunt2020-02-051-1/+5
| |
| * Added more to Settable docstringKevin Van Brunt2020-02-051-2/+9
| |
| * Added more to onchange_cb documentationKevin Van Brunt2020-02-051-3/+7
| |