Skip to content

CoolerDash v3.0.5.1

Choose a tag to compare

@github-actions github-actions released this 08 Apr 21:48
· 19 commits to master since this release
1615484

Changes:

  • Version updated to 3.0.5.1

Summary

Major circle mode enhancements, resolution-aware layout refactoring, improved device detection, authentication cleanup, and sensor data improvements.

Breaking Changes

  • Slot rename
  • Removed: Cookie-based password authentication
  • Default mode changed to circle

New Features

  • Circle mode extra sensor info: Displays CPU/GPU frequency (MHz/GHz), wattage, and fan/pump RPM below the label in circle mode
  • Dynamic device name labels: Labels now show the CoolerControl device name (first two words) instead of fixed "CPU"/"GPU"/"LIQ" strings (e.g., "AMD Ryzen", "NVIDIA GeForce", "NZXT Kraken")
  • LCD device detection: New device_detection_mode, device_detection_allowlist, and device_detection_blocklist config options for flexible LCD device matching
    Improvements
  • Resolution-aware layout: Complete refactoring of circle and dual mode rendering with dynamic scaling based on actual LCD dimensions
  • UI: Checkbox for circle_show_extra_info, updated factory defaults, slot 2 auto-restore to "liquid" on circle mode switch

⚠️ Manual Action Required ⚠️

Due to significant configuration changes in this release, the existing config.json must be manually deleted before upgrading. The daemon will regenerate a fresh config with updated defaults on next startup.

Steps:

# 1. Stop the daemon
sudo systemctl stop cc-plugin-coolerdash.service

# 2. Delete the old configuration
sudo rm /etc/coolercontrol/plugins/coolerdash/config.json

# 3. Install the new CoolerDASH 3.0.3 version

# 4. Regenerate your CoolerControl access token and copy the token string into the 
#    Open CoolerControl UI → Settings → Plugin (beta) → coolerdash → "Access Token" field
#    Click Save and run: sudo systemctl restart cc-plugin-coolerdash.service
---

## AUR Package

[![AUR](https://img.shields.io/aur/version/coolerdash-git?color=blue&label=AUR)](https://aur.archlinux.org/packages/coolerdash-git)

### Installation:
```bash
# Using an AUR helper
yay -S coolerdash-git
# OR any other AUR helper

Binary Packages

Ubuntu / Debian

Debian/Ubuntu

wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/coolerdash_3.0.5.1_amd64.deb
sudo apt install ./coolerdash_3.0.5.1_amd64.deb

Fedora

Fedora

wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/coolerdash-3.0.5.1-1.fedora.x86_64.rpm
sudo dnf install ./coolerdash-3.0.5.1-1.fedora.x86_64.rpm

CentOS / RHEL

CentOS/RHEL

wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/coolerdash-3.0.5.1-1.centos.x86_64.rpm
sudo dnf install ./coolerdash-3.0.5.1-1.centos.x86_64.rpm

openSUSE

openSUSE

wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/coolerdash-3.0.5.1-1.opensuse.x86_64.rpm
sudo zypper install ./coolerdash-3.0.5.1-1.opensuse.x86_64.rpm

Manual Installation

# STEP 1: Clone repository
git clone https://github.com/damachine/coolerdash.git
cd coolerdash

# STEP 2: Build and install (auto-detects Linux distribution and installs dependencies)
make install

GPG Verification (optional):

# Download checksums and signature
wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/SHA256SUMS
wget https://github.com/damachine/coolerdash/releases/download/v3.0.5.1/SHA256SUMS.asc

# Verify GPG signature
gpg --verify SHA256SUMS.asc SHA256SUMS

# Verify package checksum
sha256sum -c SHA256SUMS --ignore-missing

Full Changelog: v3.0.4...v3.0.5.1