diff --git a/Cargo.toml b/Cargo.toml index 1f19118..cbe3386 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui-aesthetix" -version = "0.2.3" +version = "0.2.4" authors = ["Matt Williams "] description = "A Uniform and programmatic approach to theming Egui applications" edition = "2021" diff --git a/README.md b/README.md index 7c35723..df5f631 100644 --- a/README.md +++ b/README.md @@ -85,37 +85,37 @@ The library is very flexible and doesn't force you to include themes you don't w > the StandardDark and StandardLight themes ```toml -egui-aesthetix = "0.2.3" +egui-aesthetix = "0.2.4" ``` > Only includes the Aesthetix trait, no themes will be included ```toml -egui-aesthetix = { version = "0.2.3", default-features = false } +egui-aesthetix = { version = "0.2.4", default-features = false } ``` > Include all the themes ```toml -egui-aesthetix = { version = "0.2.3", features = ["all_themes"] } +egui-aesthetix = { version = "0.2.4", features = ["all_themes"] } ``` > Only include standard themes and a specified theme (here carl is used as the specified theme) ```toml -egui-aesthetix = { version = "0.2.3", features = ["standard", "carl" ] } +egui-aesthetix = { version = "0.2.4", features = ["standard", "carl" ] } ``` > Only include nord themes ```toml -egui-aesthetix = { version = "0.2.3", features = ["nord"] } +egui-aesthetix = { version = "0.2.4", features = ["nord"] } ``` > Only include tokyo night themes ```toml -egui-aesthetix = { version = "0.2.3", features = ["tokyo_night"] } +egui-aesthetix = { version = "0.2.4", features = ["tokyo_night"] } ``` ## Usage