Skip to content

Commit 6acdd58

Browse files
committed
Version 1.5
1 parent 7cd3e08 commit 6acdd58

File tree

3 files changed

+23
-15
lines changed

3 files changed

+23
-15
lines changed

NEWS.adoc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
1.5 (2017-08-16)
2+
----------------
3+
4+
* reflac has learned to preserve an embedded image in FLAC files.
5+
Limited to just one image for now, but should cover the most
6+
common case.
7+
8+
19
1.4 (2016-09-16)
210
----------------
311

reflac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33
IFS=$'\n\t'
44

5-
VERSION=1.4
5+
VERSION=1.5
66

77
VERBOSE=0
88
RECURSIVE=0

reflac.adoc

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ SYNOPSIS
1313

1414
DESCRIPTION
1515
-----------
16-
reflac recompresses FLAC files while preserving all of their tags. It
17-
should always be safe to run, it handles cases of special file names
18-
well, allowing odd characters such as *, ?, |, and so on. To use on a
19-
directory that itself begins with a hyphen, you should use the '--'
20-
argument, it will terminate the options list and intepret all further
21-
arguments as directory names.
16+
reflac recompresses FLAC files while preserving all of their tags, and
17+
one embedded image. It should always be safe to run, it handles cases
18+
of special file names well, allowing odd characters such as *, ?, |,
19+
and so on. To use on a directory that itself begins with a hyphen,
20+
you should use the '--' argument, it will terminate the options list
21+
and intepret all further arguments as directory names.
2222
2323
*-h*, *--help*::
2424
Displays a usage summary and brief help descriptions.
@@ -28,8 +28,8 @@ Displays reflac's version.
2828

2929
*-v*, *--verbose*::
3030
reflac will keep quiet in normal operation, keeping to the Rule of
31-
Silence. Specifying this option once will display the directory names
32-
it enters and each file name processed. Specifying this option twice
31+
Silence. Specifying this option once will display the directory names
32+
it enters and each file name processed. Specifying this option twice
3333
will display the entire output of *flac*, including the progress of
3434
each individual file.
3535

@@ -53,23 +53,23 @@ return to prompt faster, but introduces a chance to lose files or have
5353
incomplete files after a system crash.
5454

5555
*-0*, *--fast*::
56-
Passes *-0* onto the *flac* command. This is the least attainable
56+
Passes *-0* onto the *flac* command. This is the least attainable
5757
compression possible, and it is also the least CPU-intensive for both
5858
encoding and decoding.
5959

6060
*-1*, *-2*, *-3*, *-4*, *-5*, *-6*, *-7*::
6161
Passes the selected compression level to FLAC, higher numbers being
62-
more compressed but also more CPU-intensive on encoding and
63-
decoding. The default for reflac is *-5*, the same as *flac* itself.
62+
more compressed but also more CPU-intensive on encoding and decoding.
63+
The default for reflac is *-5*, the same as *flac* itself.
6464

6565
*-8*, *--best*::
66-
Passes *-8* onto the *flac* command. This is the highest attainable
66+
Passes *-8* onto the *flac* command. This is the highest attainable
6767
compression possible, and it is also the most CPU-intensive for both
68-
encoding and decoding. Real-time playback may not be possible on some
68+
encoding and decoding. Real-time playback may not be possible on some
6969
embedded-type systems, such as Blu-ray players or portable music
7070
players.
7171

7272
COPYRIGHT
7373
---------
7474
reflac is licensed under a very permissive ISC license, the same
75-
prefered by OpenBSD. See *COPYING* in the distribution for details.
75+
prefered by OpenBSD. See *COPYING* in the distribution for details.

0 commit comments

Comments
 (0)