Skip to content

Commit b32e5cb

Browse files
authored
Release FLAC 1.4.2
1 parent 2ba31ca commit b32e5cb

File tree

8 files changed

+26
-7
lines changed

8 files changed

+26
-7
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
This changelog is not exhaustive, review [the git commit log](https://github.com/xiph/flac/commits) for an exhaustive list of changes.
44

5+
## FLAC 1.4.2 (22-Oct-2022)
6+
7+
Once again, this release only has a few changes. A problem with FLAC playback in GStreamer (and possibly other libFLAC users) was the reason for the short time since the last release
8+
9+
* General
10+
* Remove xmms plugin (Martijn van Beurden, TokyoBlackHole)
11+
* Remove all pure assembler, removing build dependency on nasm
12+
* Made console output more uniform across different platforms and CPUs
13+
* Improve ability to tune compile for a certain system (for example with -march=native) when combining with --disable-asm-optimizations: plain C functions can now be better optimized
14+
* Build system
15+
* Default CFLAGS are now prepended instead of dropped when user CFLAGS are set
16+
* -msse2 is no longer added by default (was only applicable to x86)
17+
* Fix cross-compiling and out-of-tree building when pandoc and doxygen are not available
18+
* Fix issue with Clang not compiling functions with intrinsics
19+
* Fix detection of bswap intrinsics (Ozkan Sezer)
20+
* Improve search for libssp on MinGW (Ozkan Sezer, Martijn van Beurden)
21+
* libFLAC
22+
* Fix issue when the libFLAC user seeks in a file instead of libFLAC itself
23+
524
## FLAC 1.4.1 (22-Sep-2022)
625

726
This release only has a few changes. It was triggered by a problem in the 1.4.0 tarball: man pages were empty and api documentation missing

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ if(NOT (CMAKE_BUILD_TYPE OR CMAKE_CONFIGURATION_TYPES OR DEFINED ENV{CFLAGS} OR
88
set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build, options are: None Debug Release RelWithDebInfo")
99
endif()
1010

11-
project(FLAC VERSION 1.4.1) # HOMEPAGE_URL "https://www.xiph.org/flac/")
11+
project(FLAC VERSION 1.4.2) # HOMEPAGE_URL "https://www.xiph.org/flac/")
1212

1313
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
1414

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
2121

2222
AC_PREREQ(2.60)
23-
AC_INIT([flac],[1.4.1],[[email protected]],[flac],[https://www.xiph.org/flac/])
23+
AC_INIT([flac],[1.4.2],[[email protected]],[flac],[https://www.xiph.org/flac/])
2424
AC_CONFIG_HEADERS([config.h])
2525
AC_CONFIG_SRCDIR([src/flac/main.c])
2626
AC_CONFIG_MACRO_DIR([m4])

doc/Doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ PROJECT_NAME = FLAC
3232
# This could be handy for archiving the generated documentation or
3333
# if some version control system is used.
3434

35-
PROJECT_NUMBER = 1.4.1
35+
PROJECT_NUMBER = 1.4.2
3636

3737
# Using the PROJECT_BRIEF tag one can provide an optional one line description
3838
# for a project that appears at the top of each page and should give viewer

man/flac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% flac(1) Version 1.4.1 | Free Lossless Audio Codec conversion tool
1+
% flac(1) Version 1.4.2 | Free Lossless Audio Codec conversion tool
22

33
# NAME
44

man/metaflac.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% metaflac(1) Version 1.4.1 | Free Lossless Audio Codec metadata tool
1+
% metaflac(1) Version 1.4.2 | Free Lossless Audio Codec metadata tool
22

33
# NAME
44

src/libFLAC/format.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC git-" GIT_COMMIT_H
5555
#else
5656
/* PACKAGE_VERSION should come from configure */
5757
FLAC_API const char *FLAC__VERSION_STRING = PACKAGE_VERSION;
58-
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " PACKAGE_VERSION " 20220922";
58+
FLAC_API const char *FLAC__VENDOR_STRING = "reference libFLAC " PACKAGE_VERSION " 20221022";
5959
#endif
6060

6161
FLAC_API const FLAC__byte FLAC__STREAM_SYNC_STRING[4] = { 'f','L','a','C' };
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
reference libFLAC 1.4.1 20220922
1+
reference libFLAC 1.4.2 20221022
22
ARTIST=The_artist_formerly_known_as_the_artist...
33
ARTIST=Chuck_Woolery
44
ARTIST=Vern

0 commit comments

Comments
 (0)