Skip to content
This repository was archived by the owner on Jun 16, 2020. It is now read-only.

Commit ad59126

Browse files
committed
Release version 0.6.0
1 parent 68e072e commit ad59126

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Changelog
2+
3+
## Version 0.6.0 (2018-11-04)
4+
5+
* Add base16-default-dark color theme ([pull request #57](https://github.com/nbedos/termtosvg/pull/57))
6+
* Add manual pages in groff format ([issue #53](https://github.com/nbedos/termtosvg/issues/53))
7+
* Add support for italic, underscore and strikethrough style attributes (pull requests
8+
[#60](https://github.com/nbedos/termtosvg/pull/60) and [#62](https://github.com/nbedos/termtosvg/pull/62))
9+
* Add --min-frame-duration command line option ([issue #33](https://github.com/nbedos/termtosvg/issues/33))
10+
* Add --max-frame-duration command line option
11+
* Remove unused --verbose command line option
12+
* Reduce file size by optimizing the use of SVG attributes
13+
14+
15+
## Version 0.5.0 (2018-08-05)
16+
17+
* Add support for hidden cursors
18+
* Add support for SVG templates (custom color themes, terminal UI, animation controls...) as
19+
discussed in [issue #53](https://github.com/nbedos/termtosvg/issues/53)
20+
* Remove --font and --theme options, as well as the termtosvg.ini configuration file
21+
* Fix select() deadlock on BSD and Mac OS ([issue #18](https://github.com/nbedos/termtosvg/issues/18))
22+
23+
24+
## Version 0.4.0 (2018-07-08)
25+
26+
* Add support for rendering recordings in asciicast v1 format ([issue #15](https://github.com/nbedos/termtosvg/issues/15))
27+
* Add support for bold text rendering ([pull request #35](https://github.com/nbedos/termtosvg/pull/35))
28+
* Use temporary file for logging ([issue #12](https://github.com/nbedos/termtosvg/issues/12))
29+
30+
31+
## Version 0.3.0 (2018-07-02)
32+
33+
* Add support for a font option ([pull request #3](https://github.com/nbedos/termtosvg/pull/3))
34+
* Drop support for color information gathering from Xresources (fixes [issues #5](https://github.com/nbedos/termtosvg/issues/5) and [#6](https://github.com/nbedos/termtosvg/issues/6))
35+
* Add configuration file in INI format for defining preferred font and color theme, and for adding or modifying color themes
36+
37+
38+
## Version 0.2.2 (2018-06-25)
39+
40+
* Prevent crash when no Xresources string can be retrieved from the Xserver ([issue #2](https://github.com/nbedos/termtosvg/issues/2))
41+
42+
43+
## Version 0.2.1 (2018-06-25)
44+
45+
* Fallback to non bright colors when using an 8 color palette ([issue #1](https://github.com/nbedos/termtosvg/issues/1))
46+
47+
48+
## Version 0.2.0 (2018-06-24)
49+
50+
* Add support for the asciicast v2 recording format
51+
* Add subcommands for independently recording the terminal session and rendering the SVG animations
52+
53+
54+
## Version 0.1.0 (2018-06-16)
55+
Initial release!

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ usage:
1414
@echo " make build # Build source distribution archives"
1515
@echo " make deploy_prod # Upload source distribution archives to pypi.org"
1616
@echo " make deploy_test # Upload source distribution archives to test.pypi.org"
17-
@echo " make man # Build manual pages"
17+
@echo " make man # Build manual pages"
1818
@echo " make static # Render examples of SVG animations"
1919
@echo " make tests # Run unit tests"
2020

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='termtosvg',
7-
version='0.5.0',
7+
version='0.6.0',
88
license='BSD 3-clause license',
99
author='Nicolas Bedos',
1010
author_email='nicolas.bedos@gmail.com',

0 commit comments

Comments
 (0)