Skip to content

Commit e86fd9a

Browse files
committed
update
1 parent ca7a47d commit e86fd9a

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fltk-egui"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = "2021"
55
authors = ["MoAlyousef <[email protected]>", "Adia Robbie <[email protected]>"]
66
description = "FLTK backend for egui"
@@ -13,14 +13,14 @@ license = "MIT"
1313
rust-version = "1.72"
1414

1515
[dependencies]
16-
egui = { version = "0.26" }
17-
egui_glow = { version = "0.26", default-features = false }
16+
egui = { version = "0.27" }
17+
egui_glow = { version = "0.27", default-features = false }
1818
arboard = { version = "3.3" }
1919
fltk = { version = "1.4.12", features = ["enable-glwindow"] }
2020

2121
# for the demo_windows example
2222
[dev-dependencies]
23-
egui_demo_lib = { version = "0.26" }
23+
egui_demo_lib = { version = "0.27" }
2424

2525
[features]
2626
wayland = ["fltk/use-wayland"]

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,18 @@ Add to your Cargo.toml:
2222

2323
```toml
2424
[dependencies]
25-
fltk-egui = "0.8" # targets egui 0.24
26-
egui_glow = "0.24"
27-
egui = "0.24"
25+
fltk-egui = "0.16" # targets egui 0.27
26+
egui_glow = "0.27"
27+
egui = "0.27"
2828
```
2929

3030
On wayland desktop enable feature:
3131

3232
```toml
3333
[dependencies]
34-
fltk-egui = { version = "0.8", features = ["wayland"] }
35-
egui_glow = "0.24"
36-
egui = "0.24"
34+
fltk-egui = { version = "0.16", features = ["wayland"] }
35+
egui_glow = "0.27"
36+
egui = "0.27"
3737
```
3838

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

0 commit comments

Comments
 (0)