fix windows 11 vibrancy

This commit is contained in:
Abdenasser 2024-11-13 21:20:14 +01:00
parent 7de952afe4
commit b0189cefee
5 changed files with 6 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "neohtop", "name": "neohtop",
"version": "1.1.0", "version": "1.1.1",
"description": "", "description": "",
"type": "module", "type": "module",
"scripts": { "scripts": {

2
src-tauri/Cargo.lock generated
View File

@ -1784,7 +1784,7 @@ dependencies = [
[[package]] [[package]]
name = "neohtop" name = "neohtop"
version = "1.1.0" version = "1.1.1"
dependencies = [ dependencies = [
"serde", "serde",
"serde_json", "serde_json",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "neohtop" name = "neohtop"
version = "1.1.0" version = "1.1.1"
description = "A cross-platform system monitor" description = "A cross-platform system monitor"
authors = ["you"] authors = ["you"]
edition = "2021" edition = "2021"

View File

@ -5,14 +5,14 @@
use tauri::WebviewWindow; use tauri::WebviewWindow;
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]
use window_vibrancy::apply_blur; use window_vibrancy::apply_acrylic;
#[cfg(target_os = "macos")] #[cfg(target_os = "macos")]
use window_vibrancy::{apply_vibrancy, NSVisualEffectMaterial, NSVisualEffectState}; use window_vibrancy::{apply_vibrancy, NSVisualEffectMaterial, NSVisualEffectState};
/// Applies Windows-specific window effects /// Applies Windows-specific window effects
#[cfg(target_os = "windows")] #[cfg(target_os = "windows")]
pub fn setup_window_effects(window: &WebviewWindow) -> Result<(), Box<dyn std::error::Error>> { pub fn setup_window_effects(window: &WebviewWindow) -> Result<(), Box<dyn std::error::Error>> {
apply_blur(window, Some((0, 0, 25, 125)))?; apply_acrylic(window, Some((0, 0, 25, 125)))?;
Ok(()) Ok(())
} }

View File

@ -27,7 +27,7 @@
}, },
"productName": "NeoHtop", "productName": "NeoHtop",
"mainBinaryName": "NeoHtop", "mainBinaryName": "NeoHtop",
"version": "1.1.0", "version": "1.1.1",
"identifier": "com.neohtop.dev", "identifier": "com.neohtop.dev",
"plugins": { "plugins": {
"os": { "os": {