Skip to content

Commit

Permalink
Update version and docs for release
Browse files Browse the repository at this point in the history
  • Loading branch information
thebashpotato committed Aug 7, 2024
1 parent 2e77464 commit 1e22daf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui-aesthetix"
version = "0.2.3"
version = "0.2.4"
authors = ["Matt Williams <matt.k.williams@protonmail.com>"]
description = "A Uniform and programmatic approach to theming Egui applications"
edition = "2021"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1e22daf

Please sign in to comment.