summaryrefslogtreecommitdiff
path: root/README.rst
Commit message (Collapse)AuthorAgeFilesLines
* Fix link to docs about number_of_colors methodRenato Byrro2020-10-201-1/+1
|
* Update README.rstGui Talarico2020-04-131-0/+8
| | | I had the same issue as #144 and felt really dumb after, but I think this would help other avoid the same :)
* Python 3 style printHugo2018-10-211-29/+29
|
* Restore colons and such before code snippets.Erik Rose2018-07-081-17/+17
|
* Syntax highlight code samplesAlex Willmer2018-07-041-20/+60
|
* Bump version to 1.7. Update readme.1.7Erik Rose2018-06-211-0/+4
|
* Link Travis badge to build, not imageHugo2018-01-151-1/+2
|
* Link to the latest API documentation, which has moved to readthedocs in the ↵Erik Rose2018-01-031-0/+2
| | | | wake of pythonhosted's deprecation.
* Update readme. Bump version to 1.6.1.Erik Rose2018-01-031-0/+4
|
* Link to Travis builds in readme. #60.Fred Wenzel2014-04-291-0/+4
|
* Support terminal types, such as kermit and avatar, that use bytes 127-255 in ↵1.6Erik Rose2013-11-051-0/+2
|\ | | | | | | their escape sequences. Close #47.
| * Tweak comments and update version history.Erik Rose2013-11-051-0/+2
| |
* | Update version history.Erik Rose2013-11-051-0/+2
|/
* Bring the readme up to date.Erik Rose2013-09-091-1/+3
|
* Add `fullscreen()` and `hidden_cursor()` to the auto-generated docs.Erik Rose2013-08-301-0/+1
|
* Make does_styling attr public. Bump version to 1.6.Erik Rose2013-08-301-5/+9
| | | This is more often what's intended when is_a_tty is examined. While a caller could keep track of what he's passed to the Terminal constructor, it is often more convenient to have the info available directly on the instance, which we're already passing around everywhere.
* Fix some ReST in readme.Erik Rose2013-08-301-1/+1
|
* Merge Vitja Makarov's NullCallableString tty-less parametrization fix. Close ↵Erik Rose2013-08-301-0/+2
|\ | | | | | | #31.
| * Explain the new behavior to myself. Remove 1 test assertion. No non-test ↵Erik Rose2013-08-301-0/+2
| | | | | | | | | | | | behavior changes. Bump version to 1.5.1. Remove one test assertion that already occurs almost verbatim in test_formatting_functions_without_tty().
* | Bring readme up to date.Erik Rose2013-08-301-0/+2
|/
* Update changelog with the latest.Erik Rose2013-05-151-0/+6
|
* Say why we let certain Travis build envs fail. Add Travis build badge to readme.Erik Rose2012-07-081-1/+4
|
* It's the portability that gets you; you can turn off bold on ANSI terminals ↵1.5Erik Rose2012-06-181-2/+2
| | | | with some bits in the sgr sequence.
* Provide a decent way to say "don't style". Closes #18.Erik Rose2012-06-161-2/+4
|
* Sugar full-screen capabilities. Make location() context manager slimmer. Add ↵Erik Rose2012-06-081-0/+35
| | | | hidden_cursor() context manager. Bump version to 1.5.
* Document newly-sugared capabilities, and reorganize readme as new categories ↵1.4Erik Rose2012-06-021-45/+84
| | | | emerge.
* Note setup.py test thing in readme.Erik Rose2012-06-021-0/+1
|
* Bump version to 1.4.Erik Rose2012-06-021-0/+7
| | | Tweak short description to match what a Google search suggests is more common wording.
* Document an idiom for restoring the cursor location after a series of manual ↵Erik Rose2012-02-011-4/+13
| | | | moves. Closes #17.
* Sugar cursor-visibility and single-space-movement capabilities. Closes #15.Erik Rose2011-12-191-2/+2
|
* Make 1.3's release notes past tense like the others.Erik Rose2011-12-171-6/+6
|
* Rejigger readme so code samples are at the top.1.3Erik Rose2011-12-121-19/+31
|
* Polish readme.Erik Rose2011-12-121-4/+9
|
* Make `height` and `width` examine any passed-in stream before falling back ↵Erik Rose2011-12-091-0/+3
| | | | to stdout. Make sure we can always get a height and width, even on non-tty Terminals.
* Add number_of_colors attr. Bring release notes up to date.Erik Rose2011-12-091-2/+10
|
* Correct the description of what happens when an unsupported color is used.Erik Rose2011-12-091-5/+8
|
* I've been using `height` wrong this whole time. It's 1-based.Erik Rose2011-11-301-4/+4
|
* Make `color(n)` callable to wrap a string, like the named colors can. Bump ↵Erik Rose2011-11-291-0/+8
| | | | version to 1.3. Closes #12.
* Fix an error in an example.Erik Rose2011-11-281-1/+1
|
* Note the new unicodeyness in the readme.Erik Rose2011-11-281-1/+5
|
* Change license to MIT. Closes #13.Erik Rose2011-11-281-2/+9
|
* Make all encoding explicit, and blow only raw strings to the terminal.Erik Rose2011-11-271-0/+5
| | | | Tests pass in 2.6.
* Polish readme a bit.Erik Rose2011-11-201-7/+20
|
* We don't need tigetnum in this example.Erik Rose2011-11-181-1/+1
|
* Tweak readme and a comment.Erik Rose2011-11-181-2/+6
|
* Document wrapper usage of attributes, numerical color interface, and ↵Erik Rose2011-11-161-23/+61
| | | | compound formatting.
* Make simple formatting and colors work as callable wrappers. Add crazy ↵Erik Rose2011-11-161-3/+5
| | | | | | | compound formatting. * Replaced all those generated color methods with dynamically figured out ones. * Changed "bg" to "on" for readability in compound use.
* Add reset_colors sugar. Tweak readme.Erik Rose2011-11-151-5/+11
|
* Add clear_bol and clear_eos. This concludes the likely useful string ↵Erik Rose2011-11-151-17/+20
| | | | | capabilities. Also, spruce up shopping list to be more positive.
* Let location() operate on just an x *or* y coordinate.Erik Rose2011-11-151-4/+21
| | | Use force_styling in a test so we don't have to mock things anymore.