mirror of
https://github.com/kunkunsh/kunkun-ext-neohtop.git
synced 2025-04-04 09:46:43 +00:00
fix windows 11 vibrancy
This commit is contained in:
parent
7de952afe4
commit
b0189cefee
@ -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
2
src-tauri/Cargo.lock
generated
@ -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",
|
||||||
|
@ -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"
|
||||||
|
@ -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(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user