Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
MoAlyousef committed Mar 26, 2024
1 parent ca7a47d commit e86fd9a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fltk-egui"
version = "0.15.0"
version = "0.16.0"
edition = "2021"
authors = ["MoAlyousef <[email protected]>", "Adia Robbie <[email protected]>"]
description = "FLTK backend for egui"
Expand All @@ -13,14 +13,14 @@ license = "MIT"
rust-version = "1.72"

[dependencies]
egui = { version = "0.26" }
egui_glow = { version = "0.26", default-features = false }
egui = { version = "0.27" }
egui_glow = { version = "0.27", default-features = false }
arboard = { version = "3.3" }
fltk = { version = "1.4.12", features = ["enable-glwindow"] }

# for the demo_windows example
[dev-dependencies]
egui_demo_lib = { version = "0.26" }
egui_demo_lib = { version = "0.27" }

[features]
wayland = ["fltk/use-wayland"]
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ Add to your Cargo.toml:

```toml
[dependencies]
fltk-egui = "0.8" # targets egui 0.24
egui_glow = "0.24"
egui = "0.24"
fltk-egui = "0.16" # targets egui 0.27
egui_glow = "0.27"
egui = "0.27"
```

On wayland desktop enable feature:

```toml
[dependencies]
fltk-egui = { version = "0.8", features = ["wayland"] }
egui_glow = "0.24"
egui = "0.24"
fltk-egui = { version = "0.16", features = ["wayland"] }
egui_glow = "0.27"
egui = "0.27"
```

Note: on xwayland based desktop (like gnome 41+) doesn't require to enable the
Expand Down

0 comments on commit e86fd9a

Please sign in to comment.