Skip to content

Commit 30b6be5

Browse files
committed
Bump version to 3.5.2
1 parent bd6754e commit 30b6be5

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

.github/workflows/build.yml

-3
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,6 @@ jobs:
128128
if [[ "${{matrix.config.name}}" == "Debian" ]]; then
129129
apt update && apt install -y curl zip unzip gzip tar build-essential git cmake pkg-config libavcodec-dev libavformat-dev libavutil-dev libswresample-dev libebur128-dev libinih-dev binutils
130130
fi
131-
if [[ "${{matrix.config.name}}" == "Fedora" ]]; then
132-
dnf install -y curl zip unzip gzip tar git make pkg-config gcc-c++ fedora-packager rpmdevtools cmake libavcodec-free-devel libavformat-free-devel libswresample-free-devel libavutil-free-devel libebur128-devel inih-devel
133-
fi
134131
if [[ "${{matrix.config.name}}" == "Static" ]]; then
135132
apt update && apt install -y curl zip unzip tar build-essential git cmake pkg-config python3 nasm binutils
136133
fi

CHANGELOG

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
v3.5.2 (2024-08-07)
2+
- In Easy Mode, ignore macOS AppleDouble files (beginning with ._)
3+
- Disable error messages while a multithreaded scan is in-progress (errors will be reported at end of scan only)
4+
- Windows: Fix resource conflict issue when writing to Opus header
5+
- Unix: Fully support C++23 replacement of fmt dependency
6+
17
v3.5.1 (2024-06-08)
28
- Fix header gain calculation for multichannel Opus files
39
- Static builds: Upgrade to FFmpeg 7

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if (VCPKG)
1111
endif ()
1212

1313
project(rsgain
14-
VERSION 3.5.1
14+
VERSION 3.5.2
1515
DESCRIPTION "ReplayGain 2.0 loudness normalizer"
1616
HOMEPAGE_URL "https://github.com/complexlogic/rsgain"
1717
LANGUAGES CXX

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:bookworm
22

3-
ARG VERSION=3.5.1 \
3+
ARG VERSION=3.5.2 \
44
ARCH=amd64
55

66
RUN apt-get update && \

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Binary packages are available on the [Release Page](https://github.com/complexlo
3333
### Windows
3434

3535
Download the ZIP file from the link below and extract its contents to a folder of your choice:
36-
- [rsgain v3.5.1 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain-3.5.1-win64.zip)
36+
- [rsgain v3.5.2 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-win64.zip)
3737

3838
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.
3939

@@ -56,8 +56,8 @@ scoop install extras/rsgain
5656
### macOS
5757

5858
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:
59-
- [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)
60-
- [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)
59+
- [rsgain v3.5.2 portable ZIP (Apple Silicon)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-macOS-arm64.zip)
60+
- [rsgain v3.5.2 portable ZIP (Intel)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-macOS-x86_64.zip)
6161

6262
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:
6363

@@ -80,8 +80,8 @@ sudo apt install rsgain
8080
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:
8181

8282
```bash
83-
wget https://github.com/complexlogic/rsgain/releases/download/v3.5.1/rsgain_3.5.1-1_amd64.deb
84-
sudo apt install ./rsgain_3.5.1-1_amd64.deb
83+
wget https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain_3.5.2-1_amd64.deb
84+
sudo apt install ./rsgain_3.5.2-1_amd64.deb
8585
```
8686
The above package won't work on recent Ubuntu releases due to an FFmpeg ABI break.
8787

@@ -121,7 +121,7 @@ sudo dnf install rsgain
121121
#### Static Build
122122

123123
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:
124-
- [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)
124+
- [rsgain v3.5.2 portable TAR (x86_64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-Linux.tar.xz)
125125

126126
### FreeBSD
127127

config/PKGBUILD

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pkgname=rsgain
2-
pkgver=3.5.1
2+
pkgver=3.5.2
33
pkgrel=1
44
epoch=
55
pkgdesc="ReplayGain 2.0 loudness normalizer"

0 commit comments

Comments
 (0)