-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
129 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,98 @@ | ||
language: c | ||
addons: | ||
apt: | ||
packages: | ||
- help2man | ||
compiler: | ||
- clang | ||
- gcc | ||
matrix: | ||
include: | ||
- os: osx | ||
osx_image: xcode10.2 | ||
|
||
- os: osx | ||
osx_image: xcode9.4 | ||
|
||
- os: osx | ||
osx_image: xcode8.3 | ||
|
||
- os: osx | ||
osx_image: xcode7.3 | ||
|
||
- os: osx | ||
osx_image: xcode6.4 | ||
|
||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-4.4 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-4.4" | ||
|
||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-4.9 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-4.9" | ||
|
||
# works on Precise and Trusty | ||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-5 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-5" | ||
|
||
# works on Precise and Trusty | ||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-6 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-6" | ||
|
||
# works on Precise and Trusty | ||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-7 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-7" | ||
|
||
# works on Precise and Trusty | ||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-7 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-8" | ||
|
||
# works on Precise and Trusty | ||
- os: linux | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- gcc-7 | ||
env: | ||
- MATRIX_EVAL="CC=gcc-9" | ||
|
||
before_install: | ||
- eval "${MATRIX_EVAL}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
ovh-ttyrec (1.1.6.0) master; urgency=medium | ||
|
||
* feat: added generic fread/fwrite/fclose wrappers as a framework to support several (de)compression algorithms | ||
* feat: add zstd support to ttyrec and ttyplay | ||
ttyrec: add -Z option to enable on-the-fly compression if available | ||
ttyrec: add --zstd to force on-the-fly zstd compression | ||
ttyrec: add -l option to fine-tune the zstd compression ratio (between 1 and 19, default 3) | ||
ttyrec: add --max-flush-time to specify a number of seconds after which we force zstd to flush | ||
its output buffers to ensure somewhat idle sessions still get flushed to disk regularly | ||
ttyplay: zstd decompression is automatically enabled if the file suffix is ".zst" | ||
ttyplay: add -Z option to force on-the-fly zstd decompression regardless of the file suffix | ||
ttytime: add a warning if timing a .zst file is attempted (not supported) | ||
* feat: implement long-options parsing for ttyrec | ||
* feat: add --name-format (-F) to specify a custom file name compatible with strftime() | ||
* feat: add --warn-before-lock and --warn-before-kill options | ||
* fix: abort if doinput() can't write to master | ||
* chore: nicify termios debug output | ||
* chore: get rid of help2man requirement | ||
* chore: portability fixes, tested under Linux, FreeBSD, NetBSD, OpenBSD, DragonFlyBSD, Darwin, Haiku, OmniOS | ||
|
||
-- Stéphane Lesimple (deb packages) <[email protected]> Tue, 04 Jun 2019 10:17:11 +0200 | ||
|
||
ovh-ttyrec (1.1.5.0) master; urgency=medium | ||
|
||
* First public release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters