chore: bump version to 0.2.1 and update related files
Some checks failed
CI / clippy (push) Has been cancelled
CI / fmt (push) Has been cancelled
CI / test (push) Has been cancelled
Release / build (push) Failing after 5m11s

This commit is contained in:
2026-07-24 13:54:32 +02:00
parent fa5d38107a
commit 0fc21ede97
20 changed files with 79 additions and 41 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "k-launcher-config"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
[lib]

View File

@@ -93,7 +93,10 @@ pub struct AppearanceCfg {
pub row_radius: f32,
pub placeholder: String,
pub selected_row_rgba: Rgba,
pub selected_text_rgba: Rgba,
pub selected_description_rgba: Rgba,
pub unselected_row_rgba: Rgba,
pub text_rgba: Rgba,
pub description_rgba: Rgba,
pub no_results_rgba: Rgba,
pub error_rgba: Rgba,
@@ -113,7 +116,10 @@ impl Default for AppearanceCfg {
row_radius: 4.0,
placeholder: "Search apps, type > for commands, = for math".to_string(),
selected_row_rgba: Rgba::new(229.0, 125.0, 33.0, 1.0),
selected_text_rgba: Rgba::new(255.0, 255.0, 255.0, 1.0),
selected_description_rgba: Rgba::new(240.0, 240.0, 240.0, 0.9),
unselected_row_rgba: Rgba::new(255.0, 255.0, 255.0, 0.07),
text_rgba: Rgba::new(255.0, 255.0, 255.0, 1.0),
description_rgba: Rgba::new(210.0, 215.0, 230.0, 1.0),
no_results_rgba: Rgba::new(180.0, 180.0, 200.0, 0.5),
error_rgba: Rgba::new(255.0, 80.0, 80.0, 1.0),