Skip to content

Commit

Permalink
chore: bump to 0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Decodetalkers committed Dec 4, 2024
1 parent 28c7f07 commit 8e5bc54
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 27 deletions.
36 changes: 18 additions & 18 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.11.0-rc5"
version = "0.11.0"
license = "MIT"
repository = "https://github.com/waycrate/exwlshelleventloop"
description = "Wayland extra shell lib"
keywords = ["wayland", "wlroots"]
readme = "README.md"

[workspace.dependencies]
layershellev = { version = "0.11.0-rc5", path = "./layershellev" }
sessionlockev = { version = "0.11.0-rc5", path = "./sessionlockev" }

iced_layershell = { version = "0.11.0-rc5", path = "./iced_layershell" }
iced_layershell_macros = { version = "0.11.0-rc5", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.11.0-rc5", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.11.0-rc5", path = "./iced_sessionlock_macros" }
waycrate_xkbkeycode = { version = "0.11.0-rc5", path = "./waycrate_xkbkeycode" }
layershellev = { version = "0.11.0", path = "./layershellev" }
sessionlockev = { version = "0.11.0", path = "./sessionlockev" }

iced_layershell = { version = "0.11.0", path = "./iced_layershell" }
iced_layershell_macros = { version = "0.11.0", path = "./iced_layershell_macros" }
iced_sessionlock = { version = "0.11.0", path = "./iced_sessionlock" }
iced_sessionlock_macros = { version = "0.11.0", path = "./iced_sessionlock_macros" }
waycrate_xkbkeycode = { version = "0.11.0", path = "./waycrate_xkbkeycode" }

tempfile = "3.14.0"
thiserror = "1.0.69"
Expand Down
11 changes: 11 additions & 0 deletions iced_layershell/src/build_pattern/application.rs
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,17 @@ impl<P: Program> SingleApplication<P> {
self
}

/// set the default_text_size
pub fn default_text_size(self, default_text_size: iced::Pixels) -> Self {
Self {
settings: MainSettings {
default_text_size,
..self.settings
},
..self
}
}

pub fn namespace(
self,
namespace: impl NameSpace<P::State>,
Expand Down
11 changes: 11 additions & 0 deletions iced_layershell/src/build_pattern/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,6 +1018,17 @@ impl<P: Program> Daemon<P> {
self
}

/// set the default_text_size
pub fn default_text_size(self, default_text_size: iced::Pixels) -> Self {
Self {
settings: MainSettings {
default_text_size,
..self.settings
},
..self
}
}

pub fn namespace(
self,
namespace: impl NameSpace<P::State>,
Expand Down
11 changes: 11 additions & 0 deletions iced_sessionlock/src/build_pattern.rs
Original file line number Diff line number Diff line change
Expand Up @@ -736,6 +736,17 @@ mod pattern {
self
}

/// set the default_text_size
pub fn default_text_size(self, default_text_size: iced::Pixels) -> Self {
Self {
settings: MainSettings {
default_text_size,
..self.settings
},
..self
}
}

/// Sets the style logic of the [`Application`].
pub fn style(
self,
Expand Down

0 comments on commit 8e5bc54

Please sign in to comment.