chore(dev): begin v0.1.40-dev

This commit is contained in:
LGUG2Z
2025-12-14 14:07:44 -08:00
parent 8f982e45d1
commit ff4187aecf
14 changed files with 20 additions and 20 deletions

14
Cargo.lock generated
View File

@@ -3123,7 +3123,7 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
[[package]] [[package]]
name = "komorebi" name = "komorebi"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"base64", "base64",
"bitflags 2.10.0", "bitflags 2.10.0",
@@ -3173,7 +3173,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebi-bar" name = "komorebi-bar"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"chrono", "chrono",
"chrono-tz", "chrono-tz",
@@ -3213,7 +3213,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebi-client" name = "komorebi-client"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"komorebi", "komorebi",
"serde_json_lenient", "serde_json_lenient",
@@ -3222,7 +3222,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebi-gui" name = "komorebi-gui"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"eframe", "eframe",
"egui_extras", "egui_extras",
@@ -3245,7 +3245,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebi-themes" name = "komorebi-themes"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"base16-egui-themes", "base16-egui-themes",
"catppuccin-egui", "catppuccin-egui",
@@ -3260,7 +3260,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebic" name = "komorebic"
version = "0.1.39" version = "0.1.40"
dependencies = [ dependencies = [
"chrono", "chrono",
"clap", "clap",
@@ -3288,7 +3288,7 @@ dependencies = [
[[package]] [[package]]
name = "komorebic-no-console" name = "komorebic-no-console"
version = "0.1.39" version = "0.1.40"
[[package]] [[package]]
name = "kqueue" name = "kqueue"

View File

@@ -1,5 +1,5 @@
{ {
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.39/schema.bar.json", "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.40/schema.bar.json",
"monitor": 0, "monitor": 0,
"font_family": "JetBrains Mono", "font_family": "JetBrains Mono",
"theme": { "theme": {

View File

@@ -1,5 +1,5 @@
{ {
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.39/schema.json", "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.40/schema.json",
"app_specific_configuration_path": "$Env:USERPROFILE/applications.json", "app_specific_configuration_path": "$Env:USERPROFILE/applications.json",
"window_hiding_behaviour": "Cloak", "window_hiding_behaviour": "Cloak",
"cross_monitor_move_behaviour": "Insert", "cross_monitor_move_behaviour": "Insert",

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebi-bar" name = "komorebi-bar"
version = "0.1.39" version = "0.1.40"
edition = "2024" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -16,7 +16,7 @@ use std::path::PathBuf;
#[derive(Clone, Debug, Serialize, Deserialize)] #[derive(Clone, Debug, Serialize, Deserialize)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
/// The `komorebi.bar.json` configuration file reference for `v0.1.39` /// The `komorebi.bar.json` configuration file reference for `v0.1.40`
pub struct KomobarConfig { pub struct KomobarConfig {
/// Bar height (default: 50) /// Bar height (default: 50)
pub height: Option<f32>, pub height: Option<f32>,

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebi-client" name = "komorebi-client"
version = "0.1.39" version = "0.1.40"
edition = "2024" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebi-gui" name = "komorebi-gui"
version = "0.1.39" version = "0.1.40"
edition = "2024" edition = "2024"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebi-themes" name = "komorebi-themes"
version = "0.1.39" version = "0.1.40"
edition = "2024" edition = "2024"
[dependencies] [dependencies]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebi" name = "komorebi"
version = "0.1.39" version = "0.1.40"
description = "A tiling window manager for Windows" description = "A tiling window manager for Windows"
repository = "https://github.com/LGUG2Z/komorebi" repository = "https://github.com/LGUG2Z/komorebi"
edition = "2024" edition = "2024"

View File

@@ -412,7 +412,7 @@ pub enum AppSpecificConfigurationPath {
#[serde_with::serde_as] #[serde_with::serde_as]
#[derive(Clone, Debug, Default, Serialize, Deserialize, PartialEq)] #[derive(Clone, Debug, Default, Serialize, Deserialize, PartialEq)]
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))] #[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
/// The `komorebi.json` static configuration file reference for `v0.1.39` /// The `komorebi.json` static configuration file reference for `v0.1.40`
pub struct StaticConfig { pub struct StaticConfig {
/// DEPRECATED from v0.1.22: no longer required /// DEPRECATED from v0.1.22: no longer required
#[serde(skip_serializing_if = "Option::is_none")] #[serde(skip_serializing_if = "Option::is_none")]

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebic-no-console" name = "komorebic-no-console"
version = "0.1.39" version = "0.1.40"
description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows" description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows"
repository = "https://github.com/LGUG2Z/komorebi" repository = "https://github.com/LGUG2Z/komorebi"
edition = "2024" edition = "2024"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "komorebic" name = "komorebic"
version = "0.1.39" version = "0.1.40"
description = "The command-line interface for Komorebi, a tiling window manager for Windows" description = "The command-line interface for Komorebi, a tiling window manager for Windows"
repository = "https://github.com/LGUG2Z/komorebi" repository = "https://github.com/LGUG2Z/komorebi"
edition = "2024" edition = "2024"

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"title": "KomobarConfig", "title": "KomobarConfig",
"description": "The `komorebi.bar.json` configuration file reference for `v0.1.39`", "description": "The `komorebi.bar.json` configuration file reference for `v0.1.40`",
"type": "object", "type": "object",
"required": [ "required": [
"left_widgets", "left_widgets",

View File

@@ -1,7 +1,7 @@
{ {
"$schema": "http://json-schema.org/draft-07/schema#", "$schema": "http://json-schema.org/draft-07/schema#",
"title": "StaticConfig", "title": "StaticConfig",
"description": "The `komorebi.json` static configuration file reference for `v0.1.39`", "description": "The `komorebi.json` static configuration file reference for `v0.1.40`",
"type": "object", "type": "object",
"properties": { "properties": {
"animation": { "animation": {