Skip to content

Commit

Permalink
Bump version to 3.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
complexlogic committed Nov 16, 2024
1 parent 46fbc37 commit 1393f16
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
v3.5.3 (2024-11-16)
- Fix preserve file modification time feature for Opus files

v3.5.2 (2024-08-07)
- In Easy Mode, ignore macOS AppleDouble files (beginning with ._)
- Disable error messages while a multithreaded scan is in-progress (errors will be reported at end of scan only)
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.2
VERSION 3.5.3
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.2 \
ARG VERSION=3.5.3 \
ARCH=amd64

RUN apt-get update && \
Expand Down
16 changes: 10 additions & 6 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.2 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-win64.zip)
- [rsgain v3.5.3 portable ZIP (x64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.3/rsgain-3.5.3-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,8 +56,8 @@ 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.2 portable ZIP (Apple Silicon)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-macOS-arm64.zip)
- [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)
- [rsgain v3.5.3 portable ZIP (Apple Silicon)](https://github.com/complexlogic/rsgain/releases/download/v3.5.3/rsgain-3.5.3-macOS-arm64.zip)
- [rsgain v3.5.3 portable ZIP (Intel)](https://github.com/complexlogic/rsgain/releases/download/v3.5.3/rsgain-3.5.3-macOS-x86_64.zip)

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:

Expand All @@ -67,6 +67,10 @@ xattr -d com.apple.quarantine /path/to/rsgain

Substitute `/path/to/rsgain` with the actual path on your system.

#### Package Managers

rsgain can also be installed through [Homebrew](https://formulae.brew.sh/formula/rsgain) and [MacPorts](https://ports.macports.org/port/rsgain/details/).

### Linux

#### Debian/Ubuntu
Expand All @@ -80,8 +84,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.2/rsgain_3.5.2-1_amd64.deb
sudo apt install ./rsgain_3.5.2-1_amd64.deb
wget https://github.com/complexlogic/rsgain/releases/download/v3.5.3/rsgain_3.5.3-1_amd64.deb
sudo apt install ./rsgain_3.5.3-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 +125,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.2 portable TAR (x86_64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.2/rsgain-3.5.2-Linux.tar.xz)
- [rsgain v3.5.3 portable TAR (x86_64)](https://github.com/complexlogic/rsgain/releases/download/v3.5.3/rsgain-3.5.3-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.2
pkgver=3.5.3
pkgrel=1
epoch=
pkgdesc="ReplayGain 2.0 loudness normalizer"
Expand Down

0 comments on commit 1393f16

Please sign in to comment.