diff --git a/CHANGELOG.md b/CHANGELOG.md
index afb7c9d2..00f6d97c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,33 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+## [1.33.0] - 2026-04-06
+
+### Added
+
+- **Norwegian (Bokmål) translation** *(PR [#101](https://github.com/Psychotoxical/psysonic/pull/101) by [@zz5zz](https://github.com/zz5zz))*: Psysonic is now fully translated into Norwegian Bokmål — selectable in Settings → Appearance.
+- **Configurable next-track preload** *(Issue [#102](https://github.com/Psychotoxical/psysonic/issues/102))*: A new setting in Settings → Playback controls when Psysonic starts buffering the next track. Three modes available:
+ - **Balanced** (default) — begins buffering 30 s before the end of the current track (previous behaviour).
+ - **Early** — begins buffering after just 5 s of playback, maximising reliability on slow connections.
+ - **Custom** — set the exact threshold (5 – 120 s before the end) via a slider.
+- **Tray icon visibility toggle**: A new toggle in Settings → App Behavior lets you show or hide the system tray icon. When disabled, the icon is fully removed from the notification area / menu bar.
+
+### Changed
+
+- **Fullscreen Player — complete redesign**: The Ambient Stage has been rebuilt from the ground up.
+ - **Animated mesh background**: A GPU-only animated dark gradient mesh replaces the static blurred cover art background — smooth, performant, no layout repaints.
+ - **Artist portrait**: The right half of the screen now shows the artist's image (loaded from the server), crossfading smoothly on every track change. Falls back to the album cover if no artist image is available.
+ - **Bottom seekbar**: The seekbar is now pinned to the very bottom edge, spanning the full width, with elapsed and remaining timestamps above it.
+ - **Heart button**: You can now star/unstar the currently playing track directly from the Fullscreen Player without leaving the view.
+ - Removed the marquee-scrolling title in favour of a large, wrapping typographic layout.
+- **Star buttons** — all star/favourite buttons across the app (Player Bar, Album Header, Album Tracklist, Queue Panel) now use the CSS class `.is-starred` instead of inline color overrides, making them trivially themeable.
+
+### Fixed
+
+- **macOS — HTTP audio streams**: Added `NSAppTransportSecurity` / `NSAllowsArbitraryLoads` to `Info.plist`. Without this, App Transport Security silently blocked HTTP radio streams and non-HTTPS Navidrome servers from loading audio in WKWebView on macOS.
+
+---
+
## [1.32.0] - 2026-04-05 — *The Big Easter Update* 🐣
### Added
diff --git a/README.md b/README.md
index 96ffa938..e63e0d4d 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
-
+
Psysonic
A modern, gorgeous, and blazing fast desktop client for Subsonic API compatible music servers (Navidrome, Gonic, etc.).
@@ -80,10 +80,29 @@ Designed specifically for users hosting their own music via Navidrome or other S
Navigate to the [Releases](https://github.com/Psychotoxical/psysonic/releases) page and download the installer for your operating system.
-- **Windows**: `.exe` (NSIS installer)
+### 🐧 Linux
+
+- **Ubuntu / Debian**: `.deb` from GitHub Releases
+- **Fedora / RHEL**: `.rpm` from GitHub Releases
+
+### 🍎 macOS
+
- **macOS**: `.dmg` (Universal or Apple Silicon)
-- **Linux (Ubuntu/Debian)**: `.deb` from GitHub Releases
-- **Linux (Fedora/RHEL)**: `.rpm` from GitHub Releases
+
+> [!WARNING]
+> **Gatekeeper Note:**
+> Since the app is released without an Apple Developer certificate, macOS will block it by default. To bypass this, run the following command in the Terminal after moving the app to the Applications folder:
+> ```sh
+> xattr -cr /Applications/Psysonic.app
+> ```
+
+### 🪟 Windows
+
+- **Windows**: `.exe` (NSIS installer)
+
+> [!WARNING]
+> **SmartScreen Note:**
+> Windows SmartScreen might show a warning because the installer isn't signed with an expensive developer certificate. Click on **"More info"** and then **"Run anyway"**.
## 📦 Installation (Arch Linux / AUR)
diff --git a/package.json b/package.json
index 95fb5617..90a2da82 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "psysonic",
- "version": "1.32.0",
+ "version": "1.33.0",
"private": true,
"scripts": {
"dev": "vite",
diff --git a/packages/aur/PKGBUILD b/packages/aur/PKGBUILD
index 9d930278..53af4b8d 100644
--- a/packages/aur/PKGBUILD
+++ b/packages/aur/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Psychotoxic
pkgname=psysonic
-pkgver=1.31.0
+pkgver=1.33.0
pkgrel=1
pkgdesc="Desktop music player for Subsonic API-compatible servers (Navidrome, Gonic, etc.)"
arch=('x86_64')
diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock
index b5ccba4a..cfe1fb74 100644
--- a/src-tauri/Cargo.lock
+++ b/src-tauri/Cargo.lock
@@ -3493,7 +3493,7 @@ dependencies = [
[[package]]
name = "psysonic"
-version = "1.32.0"
+version = "1.33.0"
dependencies = [
"biquad",
"discord-rich-presence",
diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml
index 03b39eba..96eae087 100644
--- a/src-tauri/Cargo.toml
+++ b/src-tauri/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "psysonic"
-version = "1.32.0"
+version = "1.33.0"
description = "Psysonic Desktop Music Player"
authors = []
license = ""
diff --git a/src-tauri/Info.plist b/src-tauri/Info.plist
index 5bd183a1..7b541e8b 100644
--- a/src-tauri/Info.plist
+++ b/src-tauri/Info.plist
@@ -7,5 +7,14 @@
(triggered by CoreAudio enumerating input devices during init). -->
NSMicrophoneUsageDescriptionPsysonic does not use the microphone. This prompt is triggered by the audio subsystem initializing output devices.
+
+
+ NSAppTransportSecurity
+
+ NSAllowsArbitraryLoads
+
+
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs
index 1b403763..5212bdf1 100644
--- a/src-tauri/src/lib.rs
+++ b/src-tauri/src/lib.rs
@@ -6,10 +6,11 @@ mod discord;
use std::collections::HashMap;
use std::sync::Mutex;
+use std::sync::atomic::Ordering;
use tauri::{
menu::{MenuBuilder, MenuItemBuilder, PredefinedMenuItem},
- tray::{MouseButton, MouseButtonState, TrayIconBuilder, TrayIconEvent},
+ tray::{MouseButton, MouseButtonState, TrayIcon, TrayIconBuilder, TrayIconEvent},
Emitter, Manager,
};
@@ -17,6 +18,10 @@ use tauri::{
/// Prevents on_shortcut() accumulating duplicate handlers across JS reloads (HMR / StrictMode).
type ShortcutMap = Mutex>;
+/// Holds the live system-tray icon handle. `None` means the tray is currently hidden/removed.
+/// Dropping the inner `TrayIcon` fully removes it from the OS notification area on all platforms.
+type TrayState = Mutex