Skip to content

Commit

Permalink
chore(release): v0.1.27
Browse files Browse the repository at this point in the history
  • Loading branch information
LGUG2Z committed Jun 19, 2024
1 parent 83cc7bf commit a511cbd
Show file tree
Hide file tree
Showing 16 changed files with 98 additions and 16 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/cli/ahk-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
```
Generate a library of AutoHotKey helper functions
Usage: komorebic.exe ahk-library
Usage: komorebic.exe komorebic.exe ahk-library
Options:
-h, --help
Expand Down
12 changes: 12 additions & 0 deletions docs/cli/monitor-information.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# monitor-information

```
Show information about connected monitors
Usage: komorebic.exe monitor-information
Options:
-h, --help
Print help
```
12 changes: 12 additions & 0 deletions docs/cli/stack-all.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# stack-all

```
Stack all windows on the focused workspace
Usage: komorebic.exe stack-all
Options:
-h, --help
Print help
```
16 changes: 16 additions & 0 deletions docs/cli/transparency-alpha.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# transparency-alpha

```
Set the alpha value for unfocused window transparency
Usage: komorebic.exe transparency-alpha <ALPHA>
Arguments:
<ALPHA>
Alpha
Options:
-h, --help
Print help
```
16 changes: 16 additions & 0 deletions docs/cli/transparency.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# transparency

```
Enable or disable transparency for unfocused windows
Usage: komorebic.exe transparency <BOOLEAN_STATE>
Arguments:
<BOOLEAN_STATE>
[possible values: enable, disable]
Options:
-h, --help
Print help
```
12 changes: 12 additions & 0 deletions docs/cli/unstack-all.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# unstack-all

```
Unstack all windows in the focused container
Usage: komorebic.exe unstack-all
Options:
-h, --help
Print help
```
2 changes: 1 addition & 1 deletion komorebi-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebi-client"
version = "0.1.27-dev.0"
version = "0.1.27"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion komorebi-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebi-core"
version = "0.1.27-dev.0"
version = "0.1.27"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion komorebi-gui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebi-gui"
version = "0.1.27-dev.0"
version = "0.1.27"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion komorebi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebi"
version = "0.1.27-dev.0"
version = "0.1.27"
authors = ["Jade Iqbal <[email protected]>"]
description = "A tiling window manager for Windows"
categories = ["tiling-window-manager", "windows"]
Expand Down
2 changes: 1 addition & 1 deletion komorebi/src/static_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ impl From<&Monitor> for MonitorConfig {
}

#[derive(Debug, Serialize, Deserialize, JsonSchema)]
/// The `komorebi.json` static configuration file reference for `v0.1.26`
/// The `komorebi.json` static configuration file reference for `v0.1.27`
pub struct StaticConfig {
/// DEPRECATED from v0.1.22: no longer required
#[serde(skip_serializing_if = "Option::is_none")]
Expand Down
2 changes: 1 addition & 1 deletion komorebic-no-console/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebic-no-console"
version = "0.1.27-dev.0"
version = "0.1.27"
authors = ["Jade Iqbal <[email protected]>"]
description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows"
categories = ["cli", "tiling-window-manager", "windows"]
Expand Down
2 changes: 1 addition & 1 deletion komorebic/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "komorebic"
version = "0.1.27-dev.0"
version = "0.1.27"
authors = ["Jade Iqbal <[email protected]>"]
description = "The command-line interface for Komorebi, a tiling window manager for Windows"
categories = ["cli", "tiling-window-manager", "windows"]
Expand Down
6 changes: 5 additions & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ nav:
- cli/global-state.md
- cli/gui.md
- cli/visible-windows.md
- cli/monitor-information.md
- cli/query.md
- cli/subscribe-socket.md
- cli/unsubscribe-socket.md
Expand All @@ -101,6 +102,8 @@ nav:
- cli/cycle-focus.md
- cli/cycle-move.md
- cli/stack.md
- cli/stack-all.md
- cli/unstack-all.md
- cli/resize-edge.md
- cli/resize-axis.md
- cli/unstack.md
Expand Down Expand Up @@ -197,11 +200,12 @@ nav:
- cli/border-colour.md
- cli/border-width.md
- cli/border-offset.md
- cli/transparency.md
- cli/transparency-alpha.md
- cli/focus-follows-mouse.md
- cli/toggle-focus-follows-mouse.md
- cli/mouse-follows-focus.md
- cli/toggle-mouse-follows-focus.md
- cli/ahk-library.md
- cli/ahk-app-specific-configuration.md
- cli/pwsh-app-specific-configuration.md
- cli/format-app-specific-configuration.md
Expand Down
12 changes: 11 additions & 1 deletion schema.json
Original file line number Diff line number Diff line change
@@ -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.26`",
"description": "The `komorebi.json` static configuration file reference for `v0.1.27`",
"type": "object",
"properties": {
"app_specific_configuration_path": {
Expand Down Expand Up @@ -1183,6 +1183,16 @@
}
}
},
"transparency": {
"description": "Add transparency to unfocused windows (default: false)",
"type": "boolean"
},
"transparency_alpha": {
"description": "Alpha value for unfocused window transparency [[0-255]] (default: 200)",
"type": "integer",
"format": "uint8",
"minimum": 0.0
},
"tray_and_multi_window_applications": {
"description": "Identify tray and multi-window applications",
"type": "array",
Expand Down

0 comments on commit a511cbd

Please sign in to comment.