aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
blob: 79212c6e1b4ed408ba0d4942e52b6376d49218ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Changelog

## Unreleased

### Changed

* Watch clients now receive resize events (although the terminal watch client
  just ignores them)

### Fixed

* Streaming while using a terminal of size other than 80x24 works properly
  again.
* Fixed a few more terminal parsing/drawing bugs.

## [0.2.0] - 2019-11-14

### Added

* `tt play` now supports hiding the pause ui.

### Fixed

* Bump `vt100` dep to fix a bunch of parsing bugs.
* Now uses `vt100` to buffer data, removing the need for the `buffer_size`
  option, using less data overall, and hopefully fixing the inconsistencies
  when watching someone stream from a different terminal type.

## [0.1.6] - 2019-11-07

### Added

* `tt play` now has key commands for seeking to the start or end of the file.
* `tt play` now allows searching for frames whose contents match a regex.

## [0.1.5] - 2019-11-06

### Fixed

* Fix clearing the screen in `tt watch`.

## [0.1.4] - 2019-11-06

### Added

* `tt play` now supports seeking back and forth as well as pausing, adjusting
  the playback speed, and limiting the max amount of time each frame can take.

### Changed

* Moved quite a lot of functionality out to separate crates - see
  `component-future`, `tokio-pty-process-stream`, `tokio-terminal-resize`,
  `ttyrec`

### Fixed

* Ttyrecs with frame timestamps not starting at 0 can now be played properly.

## [0.1.3] - 2019-10-23

### Fixed

* if a system user defines a home directory of `/`, treat it as not having a
  home directory

## [0.1.2] - 2019-10-23

### Fixed

* set both the real and effective uid and gid instead of just effective when
  dropping privileges

## [0.1.1] - 2019-10-23

### Fixed

* wait to drop privileges (via the `uid` and `gid` options until after we have
  read the `tls_identity_file`)

## [0.1.0] - 2019-10-23

### Added

* Initial release