diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml index 912c2006..47700fab 100644 --- a/.github/workflows/windows.yaml +++ b/.github/workflows/windows.yaml @@ -105,7 +105,7 @@ jobs: - name: Check GoReleaser uses: goreleaser/goreleaser-action@v3 env: - GORELEASER_CURRENT_TAG: v0.1.28 + GORELEASER_CURRENT_TAG: v0.1.29 with: version: latest args: build --skip=validate --clean diff --git a/README.md b/README.md index 1fe65ad1..f941c32e 100644 --- a/README.md +++ b/README.md @@ -359,7 +359,7 @@ every `WindowManagerEvent` and `SocketMessage` handled by `komorebi` in a Rust c Below is a simple example of how to use `komorebi-client` in a basic Rust application. ```rust -// komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.28"} +// komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.29"} use anyhow::Result; use komorebi_client::Notification; diff --git a/docs/komorebi.bar.example.json b/docs/komorebi.bar.example.json index fd071328..7ce3f1da 100644 --- a/docs/komorebi.bar.example.json +++ b/docs/komorebi.bar.example.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/master/schema.bar.json", + "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.29/schema.bar.json", "monitor": { "index": 0, "work_area_offset": { diff --git a/docs/komorebi.example.json b/docs/komorebi.example.json index 2a43c7ca..ba538a03 100644 --- a/docs/komorebi.example.json +++ b/docs/komorebi.example.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.28/schema.json", + "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.29/schema.json", "app_specific_configuration_path": "$Env:USERPROFILE/applications.yaml", "window_hiding_behaviour": "Cloak", "cross_monitor_move_behaviour": "Insert", diff --git a/komorebi-bar/src/config.rs b/komorebi-bar/src/config.rs index 20d11a06..f287002b 100644 --- a/komorebi-bar/src/config.rs +++ b/komorebi-bar/src/config.rs @@ -10,6 +10,7 @@ use serde::Serialize; use std::path::PathBuf; #[derive(Clone, Debug, Serialize, Deserialize, JsonSchema)] +/// The `komorebi.bar.json` configuration file reference for `v0.1.29` pub struct KomobarConfig { /// Viewport options (see: https://docs.rs/egui/latest/egui/viewport/struct.ViewportBuilder.html) pub viewport: Option, diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index e02082c2..35b400d7 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -246,7 +246,7 @@ impl From<&Monitor> for MonitorConfig { } #[derive(Debug, Serialize, Deserialize, JsonSchema)] -/// The `komorebi.json` static configuration file reference for `v0.1.28` +/// The `komorebi.json` static configuration file reference for `v0.1.29` pub struct StaticConfig { /// DEPRECATED from v0.1.22: no longer required #[serde(skip_serializing_if = "Option::is_none")] diff --git a/komorebic/src/main.rs b/komorebic/src/main.rs index 1cb24a50..d1d5b8c1 100644 --- a/komorebic/src/main.rs +++ b/komorebic/src/main.rs @@ -1416,7 +1416,7 @@ fn main() -> Result<()> { std::fs::write(WHKD_CONFIG_DIR.join("whkdrc"), whkdrc)?; println!("Example komorebi.json, komorebi.bar.json, whkdrc and latest applications.yaml files created"); - println!("You can now run komorebic start --whkd"); + println!("You can now run komorebic start --whkd --bar"); } SubCommand::EnableAutostart(args) => { let mut current_exe = std::env::current_exe().expect("unable to get exec path"); diff --git a/schema.bar.json b/schema.bar.json index a591e5ad..0632005e 100644 --- a/schema.bar.json +++ b/schema.bar.json @@ -1,6 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "title": "KomobarConfig", + "description": "The `komorebi.bar.json` configuration file reference for `v0.1.29`", "type": "object", "required": [ "left_widgets", diff --git a/schema.json b/schema.json index 20f81f59..4bf677a6 100644 --- a/schema.json +++ b/schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema#", "title": "StaticConfig", - "description": "The `komorebi.json` static configuration file reference for `v0.1.28`", + "description": "The `komorebi.json` static configuration file reference for `v0.1.29`", "type": "object", "properties": { "animation": {