Skip to content

Commit

Permalink
Bump version to 3.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
complexlogic committed Jun 8, 2024
1 parent 76ef985 commit 96f153d
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:bookworm

ARG VERSION=3.5 \
ARG VERSION=3.5.1 \
ARCH=amd64

RUN apt-get update && \
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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.
Expand All @@ -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.

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion config/PKGBUILD
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pkgname=rsgain
pkgver=3.5
pkgver=3.5.1
pkgrel=1
epoch=
pkgdesc="ReplayGain 2.0 loudness normalizer"
Expand Down

0 comments on commit 96f153d

Please sign in to comment.