Skip to content

Commit

Permalink
chore: bump to 0.9.0-beta1
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Oct 6, 2024
1 parent 1a61a63 commit 47cfc06
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 24 deletions.
30 changes: 15 additions & 15 deletions Cargo.lock

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

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,22 @@ authors = [
"Aakash Sen Sharma <[email protected]>",
]
edition = "2021"
version = "0.8.2"
version = "0.9.0-beta1"
license = "MIT"
repository = "https://github.com/waycrate/exwlshelleventloop"
description = "Wayland extra shell lib"
keywords = ["wayland", "wlroots"]
readme = "README.md"

[workspace.dependencies]
layershellev = { version = "0.8.2", path = "./layershellev" }
sessionlockev = { version = "0.8.2", path = "./sessionlockev" }

iced_layershell = { version = "0.8.2", path = "./iced_layershell" }
iced_layershell_macros = { version = "0.8.2", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.8.2", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.8.2", path = "./iced_sessionlock_macros" }
waycrate_xkbkeycode = { version = "0.8.2", path = "./waycrate_xkbkeycode" }
layershellev = { version = "0.9.0-beta1", path = "./layershellev" }
sessionlockev = { version = "0.9.0-beta1", path = "./sessionlockev" }

iced_layershell = { version = "0.9.0-beta1", path = "./iced_layershell" }
iced_layershell_macros = { version = "0.9.0-beta1", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.9.0-beta1", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.9.0-beta1", path = "./iced_sessionlock_macros" }
waycrate_xkbkeycode = { version = "0.9.0-beta1", path = "./waycrate_xkbkeycode" }

tempfile = "3.13.0"
thiserror = "1.0.63"
Expand Down
5 changes: 5 additions & 0 deletions layershellev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -678,12 +678,17 @@ pub struct WindowWrapper {
wl_surface: WlSurface,
}

/// Define the way layershell program is start
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub enum StartMode {
/// default is use the activated display, in layershell, the param is `None`
#[default]
Active,
/// be started as background program, be used with some programs like xdg-desktop-portal
Background,
/// listen on the create event of display, always shown on all screens
AllScreens,
/// only shown on target screen
TargetScreen(String),
}

Expand Down

0 comments on commit 47cfc06

Please sign in to comment.