From 5b6fab004422fb626991365df384dfef6d7bb96c Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Fri, 20 Feb 2026 16:56:51 -0800 Subject: [PATCH] chore(dev): begin v0.1.41-dev --- Cargo.lock | 16 ++++++++-------- docs/komorebi.bar.example.json | 2 +- docs/komorebi.example.json | 2 +- komorebi-bar/Cargo.toml | 2 +- komorebi-bar/src/config.rs | 2 +- komorebi-client/Cargo.toml | 2 +- komorebi-gui/Cargo.toml | 2 +- komorebi-layouts/Cargo.toml | 2 +- komorebi-themes/Cargo.toml | 2 +- komorebi/Cargo.toml | 2 +- komorebi/src/static_config.rs | 2 +- komorebic-no-console/Cargo.toml | 2 +- komorebic/Cargo.toml | 2 +- 13 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 970de0a1..9c95e70e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3140,7 +3140,7 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" [[package]] name = "komorebi" -version = "0.1.40" +version = "0.1.41" dependencies = [ "base64", "bitflags 2.11.0", @@ -3191,7 +3191,7 @@ dependencies = [ [[package]] name = "komorebi-bar" -version = "0.1.40" +version = "0.1.41" dependencies = [ "chrono", "chrono-tz", @@ -3231,7 +3231,7 @@ dependencies = [ [[package]] name = "komorebi-client" -version = "0.1.40" +version = "0.1.41" dependencies = [ "komorebi", "serde_json_lenient", @@ -3240,7 +3240,7 @@ dependencies = [ [[package]] name = "komorebi-gui" -version = "0.1.40" +version = "0.1.41" dependencies = [ "eframe", "egui_extras", @@ -3253,7 +3253,7 @@ dependencies = [ [[package]] name = "komorebi-layouts" -version = "0.1.40" +version = "0.1.41" dependencies = [ "clap", "color-eyre", @@ -3279,7 +3279,7 @@ dependencies = [ [[package]] name = "komorebi-themes" -version = "0.1.40" +version = "0.1.41" dependencies = [ "base16-egui-themes", "catppuccin-egui", @@ -3294,7 +3294,7 @@ dependencies = [ [[package]] name = "komorebic" -version = "0.1.40" +version = "0.1.41" dependencies = [ "chrono", "clap", @@ -3322,7 +3322,7 @@ dependencies = [ [[package]] name = "komorebic-no-console" -version = "0.1.40" +version = "0.1.41" [[package]] name = "kqueue" diff --git a/docs/komorebi.bar.example.json b/docs/komorebi.bar.example.json index 49f05779..0889571a 100644 --- a/docs/komorebi.bar.example.json +++ b/docs/komorebi.bar.example.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.40/schema.bar.json", + "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.41/schema.bar.json", "font_family": "JetBrains Mono", "theme": { "palette": "Base16", diff --git a/docs/komorebi.example.json b/docs/komorebi.example.json index d4295a8b..bfb62d59 100644 --- a/docs/komorebi.example.json +++ b/docs/komorebi.example.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.40/schema.json", + "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.41/schema.json", "app_specific_configuration_path": "$Env:USERPROFILE/applications.json", "window_hiding_behaviour": "Cloak", "cross_monitor_move_behaviour": "Insert", diff --git a/komorebi-bar/Cargo.toml b/komorebi-bar/Cargo.toml index 313d79e9..be2b1443 100644 --- a/komorebi-bar/Cargo.toml +++ b/komorebi-bar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-bar" -version = "0.1.40" +version = "0.1.41" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-bar/src/config.rs b/komorebi-bar/src/config.rs index 8216441b..beb02493 100644 --- a/komorebi-bar/src/config.rs +++ b/komorebi-bar/src/config.rs @@ -15,7 +15,7 @@ use std::path::PathBuf; #[derive(Clone, Debug, Serialize, Deserialize)] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] -/// The `komorebi.bar.json` configuration file reference for `v0.1.40` +/// The `komorebi.bar.json` configuration file reference for `v0.1.41` pub struct KomobarConfig { /// Bar height #[cfg_attr(feature = "schemars", schemars(extend("default" = 50)))] diff --git a/komorebi-client/Cargo.toml b/komorebi-client/Cargo.toml index 8a53e077..d720312e 100644 --- a/komorebi-client/Cargo.toml +++ b/komorebi-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-client" -version = "0.1.40" +version = "0.1.41" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-gui/Cargo.toml b/komorebi-gui/Cargo.toml index e51042fb..133036fa 100644 --- a/komorebi-gui/Cargo.toml +++ b/komorebi-gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-gui" -version = "0.1.40" +version = "0.1.41" edition = "2024" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-layouts/Cargo.toml b/komorebi-layouts/Cargo.toml index 4e4e5eb8..ce56675b 100644 --- a/komorebi-layouts/Cargo.toml +++ b/komorebi-layouts/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-layouts" -version = "0.1.40" +version = "0.1.41" edition = "2024" [dependencies] diff --git a/komorebi-themes/Cargo.toml b/komorebi-themes/Cargo.toml index 078d4cc3..60089bc2 100644 --- a/komorebi-themes/Cargo.toml +++ b/komorebi-themes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-themes" -version = "0.1.40" +version = "0.1.41" edition = "2024" [dependencies] diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index 7102f3d8..45f6bb5a 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi" -version = "0.1.40" +version = "0.1.41" description = "A tiling window manager for Windows" repository = "https://github.com/LGUG2Z/komorebi" edition = "2024" diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index 37f2c5ec..9383e125 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -451,7 +451,7 @@ pub enum AppSpecificConfigurationPath { #[serde_with::serde_as] #[derive(Clone, Debug, Default, Serialize, Deserialize, PartialEq)] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] -/// The `komorebi.json` static configuration file reference for `v0.1.40` +/// The `komorebi.json` static configuration file reference for `v0.1.41` pub struct StaticConfig { /// DEPRECATED from v0.1.22: no longer required #[deprecated(note = "No longer required")] diff --git a/komorebic-no-console/Cargo.toml b/komorebic-no-console/Cargo.toml index e01db53b..a87a2da5 100644 --- a/komorebic-no-console/Cargo.toml +++ b/komorebic-no-console/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic-no-console" -version = "0.1.40" +version = "0.1.41" description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows" repository = "https://github.com/LGUG2Z/komorebi" edition = "2024" diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index 345b2e3b..f4cb73dd 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic" -version = "0.1.40" +version = "0.1.41" description = "The command-line interface for Komorebi, a tiling window manager for Windows" repository = "https://github.com/LGUG2Z/komorebi" edition = "2024"