Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,27 @@ All notable changes to DLSSync are documented here.
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.6.4] - 2026-06-02

A visual overhaul. The game detail panel, the library filters, and the About, Settings, and Backups pages were rebuilt, the whole app reads correctly in light mode, and notifications stop repeating themselves and start telling you something worth reading.

### Added

- A "DLL updates ready" notification that sums up what is waiting — "8 updates ready in 3 games" — and opens the Library when you click it, so you are not counting per game.

### Changed

- The game detail panel is part of the window now, not a card floating beside it. The title bar runs the full width with minimize, maximize, and close in the corner where they belong, the whole top edge drags the window, and the panel keeps a fixed header and footer so the cover, the anti-cheat warning, and the Apply button stay put while the rest scrolls. The thin line above the cover takes its color from the game's art.
- Library filters went from two rows of scattered pills to two compact menus, Launcher and Status, that never wrap; sort, view, and density sit together on the right.
- About, Settings, and Backups were redesigned for clearer hierarchy and tidier stat cards, and every tab shows one title instead of two.
- Notifications carry the vendor's logo — NVIDIA, AMD, Intel, Microsoft — in place of a generic glyph.

### Fixed

- Light mode is legible everywhere. White text over a bright cover no longer washes out, and the version picker, command palette, and notifications no longer bleed the blurred cover art into a reddish smear behind the content.
- The same "new driver available" alert was re-posted on every launch; identical notifications collapse to one now.
- The command palette search box dropped its boxy focus outline, and the page title no longer appears twice at the top of every tab.

## [1.6.3] - 2026-06-01

DLSSync speaks your language now, and it stops standing between you and the DLSS Enabler.
Expand Down Expand Up @@ -94,6 +115,7 @@ of the Arc desktop package, and install progress no longer breaks when you switc
- AMD opens its official download page instead of a constructed installer URL. The direct `.exe` is gated behind a license prompt and its filename changes per release, so a fabricated link was unreliable; version and changelog detection are unchanged.
- Vendor installer exit codes are reported with a readable message. Intel's "no compatible device" (exit code 8) now explains the GPU may be OEM-locked or need a different driver branch, pointing to the manufacturer or Windows Update.

[1.6.4]: https://github.com/xt0n1-t3ch/DLSSync/releases/tag/v1.6.4
[1.6.3]: https://github.com/xt0n1-t3ch/DLSSync/releases/tag/v1.6.3
[1.6.2]: https://github.com/xt0n1-t3ch/DLSSync/releases/tag/v1.6.2
[1.6.1]: https://github.com/xt0n1-t3ch/DLSSync/releases/tag/v1.6.1
Expand Down
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resolver = "2"
members = ["src-tauri", "crates/*"]

[workspace.package]
version = "1.6.3"
version = "1.6.4"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/xt0n1-t3ch/DLSSync"
Expand Down
4 changes: 4 additions & 0 deletions crates/notifications-store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ pub enum NotificationKind {
CatalogUpdateAvailable,
DriverUpdateAvailable,
SystemDriverUpdateAvailable,
DllUpdatesAvailable,
BackupRestored,
ScanFailed,
CatalogRefreshFailed,
Expand All @@ -40,6 +41,7 @@ impl NotificationKind {
Self::CatalogUpdateAvailable => "catalog_update_available",
Self::DriverUpdateAvailable => "driver_update_available",
Self::SystemDriverUpdateAvailable => "system_driver_update_available",
Self::DllUpdatesAvailable => "dll_updates_available",
Self::BackupRestored => "backup_restored",
Self::ScanFailed => "scan_failed",
Self::CatalogRefreshFailed => "catalog_refresh_failed",
Expand All @@ -55,6 +57,7 @@ impl NotificationKind {
"catalog_update_available" => Ok(Self::CatalogUpdateAvailable),
"driver_update_available" => Ok(Self::DriverUpdateAvailable),
"system_driver_update_available" => Ok(Self::SystemDriverUpdateAvailable),
"dll_updates_available" => Ok(Self::DllUpdatesAvailable),
"backup_restored" => Ok(Self::BackupRestored),
"scan_failed" => Ok(Self::ScanFailed),
"catalog_refresh_failed" => Ok(Self::CatalogRefreshFailed),
Expand Down Expand Up @@ -384,6 +387,7 @@ mod tests {
NotificationKind::CatalogUpdateAvailable,
NotificationKind::DriverUpdateAvailable,
NotificationKind::SystemDriverUpdateAvailable,
NotificationKind::DllUpdatesAvailable,
NotificationKind::BackupRestored,
NotificationKind::ScanFailed,
NotificationKind::CatalogRefreshFailed,
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dlssync-frontend",
"private": true,
"version": "1.6.3",
"version": "1.6.4",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
Loading
Loading