From 96f153da0df93f7ee8733377001d8a27b4f83f72 Mon Sep 17 00:00:00 2001 From: complexlogic Date: Fri, 7 Jun 2024 20:57:22 -0700 Subject: [PATCH] Bump version to 3.5.1 --- CHANGELOG | 4 ++++ CMakeLists.txt | 2 +- Dockerfile | 2 +- README.md | 16 ++++++++-------- config/PKGBUILD | 2 +- 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3a67f40..73e1f0f 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v3.5.1 (2024-06-08) +- Fix header gain calculation for multichannel Opus files +- Static builds: Upgrade to FFmpeg 7 + v3.5 (2024-02-25) - Add -p option to preserve file modification times - In Custom Mode, immediately fail if any file in the list does not exist or is of unsupported type diff --git a/CMakeLists.txt b/CMakeLists.txt index ae7275b..1bc4153 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ if (VCPKG) endif () project(rsgain - VERSION 3.5 + VERSION 3.5.1 DESCRIPTION "ReplayGain 2.0 loudness normalizer" HOMEPAGE_URL "https://github.com/complexlogic/rsgain" LANGUAGES CXX diff --git a/Dockerfile b/Dockerfile index 0e73f10..2998e0a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM debian:bookworm -ARG VERSION=3.5 \ +ARG VERSION=3.5.1 \ ARCH=amd64 RUN apt-get update && \ diff --git a/README.md b/README.md index a89b219..652ac59 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Binary packages are available on the [Release Page](https://github.com/complexlo ### Windows Download the ZIP file from the link below and extract its contents to a folder of your choice: -- [rsgain v3.5 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5/rsgain-3.5-win64.zip) +- [rsgain v3.5.1 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain-3.5.1-win64.zip) rsgain should be run on Windows 10 or later for full compatibility, but it can run on Windows versions as early as Vista with some caveats. See [Windows Notes](#windows-notes) for more information. @@ -56,13 +56,13 @@ scoop install extras/rsgain ### macOS Separate builds are available for Apple Silicon and Intel based Macs. Both require macOS 12 (Monterey) or later. Download and extract the correct version according to your hardware: -- [rsgain v3.5 portable ZIP (Apple Silicon)](https://github.com/complexlogic/rsgain/releases/download/v3.5/rsgain-3.5-macOS-arm64.zip) -- [rsgain v3.5 portable ZIP (Intel)](https://github.com/complexlogic/rsgain/releases/download/v3.5/rsgain-3.5-macOS-x86_64.zip) +- [rsgain v3.5.1 portable ZIP (Apple Silicon)](https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain-3.5.1-macOS-arm64.zip) +- [rsgain v3.5.1 portable ZIP (Intel)](https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain-3.5.1-macOS-x86_64.zip) -These builds are not digitally signed, and the macOS Gatekeeper will most likely block execution. To work around this, you can remove the quarantine bit using the command below: +These builds are not codesigned, and the macOS Gatekeeper will most likely block execution. To work around this, you can remove the quarantine bit using the command below: ```bash -xattr -d com.apple.quarantine /path/to/rsgain` +xattr -d com.apple.quarantine /path/to/rsgain ``` Substitute `/path/to/rsgain` with the actual path on your system. @@ -80,8 +80,8 @@ sudo apt install rsgain There is also a .deb package for Debian Bookworm available on the [release page](https://github.com/complexlogic/rsgain/releases/latest). Use the following commands to install: ```bash -wget https://github.com/complexlogic/rsgain/releases/download/v3.5/rsgain_3.5-1_amd64.deb -sudo apt install ./rsgain_3.5-1_amd64.deb +wget https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain_3.5.1-1_amd64.deb +sudo apt install ./rsgain_3.5.1-1_amd64.deb ``` The above package won't work on recent Ubuntu releases due to an FFmpeg ABI break. @@ -121,7 +121,7 @@ sudo dnf install rsgain #### Static Build An x86_64 static build is available that should run on recent releases of most GNU-based Linux distros (any distro shipping GCC 10 or later). Download the archive below and extract it to a directory of your choice: -- [rsgain v3.5 portable TAR (x86_64)](https://github.com/complexlogic/rsgain/releases/download/v3.5/rsgain-3.5-Linux.tar.xz) +- [rsgain v3.5.1 portable TAR (x86_64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain-3.5.1-Linux.tar.xz) ### FreeBSD diff --git a/config/PKGBUILD b/config/PKGBUILD index 9218924..405d618 100644 --- a/config/PKGBUILD +++ b/config/PKGBUILD @@ -1,5 +1,5 @@ pkgname=rsgain -pkgver=3.5 +pkgver=3.5.1 pkgrel=1 epoch= pkgdesc="ReplayGain 2.0 loudness normalizer"