From 4900a28d0ef723b8fca1c57a4d78d479b2c4ff8e Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Wed, 29 Nov 2017 10:17:20 +0100 Subject: [PATCH] Update changelog for 2.0 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 44e6396..9982197 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # asciinema changelog +## 2.0 (develop branch) + +* new [asciicast v2 file format](doc/asciicast-v2.md) +* recording and playback of arbitrarily long session with minimal memory usage +* ability to live-stream via UNIX pipe: `asciinema rec unix.pipe` + `asciinema play unix.pipe` in second terminal tab/window +* optional stdin recording (`asciinema rec --stdin`) +* appending to existing recording (`asciinema rec --append `) +* raw recording mode, storing only stdout bytes (`asciinema rec --raw `) +* environment variable white-listing (`asciinema rec --env="VAR1,VAR2..."`) +* toggling pause in `asciinema play` by Space +* stepping through a recording one frame at a time with . (when playback paused) +* new `asciinema cat ` command to dump full output of the recording + ## 1.4.0 (2017-04-11) * Dropped distutils fallback in setup.py - setuptools required now (thanks Jakub "@jakubjedelsky" Jedelsky!)