forked from emilk/egui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.20.0 - AccessKit, prettier text, overlapping widgets
- Loading branch information
Showing
22 changed files
with
77 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "ecolor" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = [ | ||
"Emil Ernerfeldt <[email protected]>", | ||
"Andreas Reich <[email protected]>", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "eframe" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "egui framework - write GUI apps that compiles to web and/or natively" | ||
edition = "2021" | ||
|
@@ -65,7 +65,7 @@ wgpu = ["dep:wgpu", "dep:egui-wgpu"] | |
|
||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [ | ||
egui = { version = "0.20.0", path = "../egui", default-features = false, features = [ | ||
"bytemuck", | ||
"tracing", | ||
] } | ||
|
@@ -75,15 +75,15 @@ tracing = { version = "0.1", default-features = false, features = ["std"] } | |
## Enable this when generating docs. | ||
document-features = { version = "0.2", optional = true } | ||
|
||
egui_glow = { version = "0.19.0", path = "../egui_glow", optional = true, default-features = false } | ||
egui_glow = { version = "0.20.0", path = "../egui_glow", optional = true, default-features = false } | ||
glow = { version = "0.11", optional = true } | ||
ron = { version = "0.8", optional = true, features = ["integer128"] } | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
|
||
# ------------------------------------------- | ||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
egui-winit = { version = "0.19.0", path = "../egui-winit", default-features = false, features = [ | ||
egui-winit = { version = "0.20.0", path = "../egui-winit", default-features = false, features = [ | ||
"clipboard", | ||
"links", | ||
] } | ||
|
@@ -93,7 +93,7 @@ winit = "0.27.2" | |
# optional native: | ||
dark-light = { version = "0.2.1", optional = true } | ||
directories-next = { version = "2", optional = true } | ||
egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true, features = [ | ||
egui-wgpu = { version = "0.20.0", path = "../egui-wgpu", optional = true, features = [ | ||
"winit", | ||
] } # if wgpu is used, use it with winit | ||
|
||
|
@@ -165,6 +165,6 @@ web-sys = { version = "0.3.58", features = [ | |
] } | ||
|
||
# optional web: | ||
egui-wgpu = { version = "0.19.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit | ||
egui-wgpu = { version = "0.20.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit | ||
tts = { version = "0.24", optional = true } | ||
wgpu = { version = "0.14", optional = true, features = ["webgl"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui-wgpu" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
description = "Bindings for using egui natively using the wgpu library" | ||
authors = [ | ||
"Nils Hasenbanck <[email protected]>", | ||
|
@@ -36,7 +36,7 @@ winit = ["dep:pollster", "dep:winit"] | |
|
||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [ | ||
egui = { version = "0.20.0", path = "../egui", default-features = false, features = [ | ||
"bytemuck", | ||
] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui-winit" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui with winit" | ||
edition = "2021" | ||
|
@@ -46,7 +46,7 @@ serde = ["egui/serde", "dep:serde"] | |
wayland = ["winit/wayland"] | ||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [ | ||
egui = { version = "0.20.0", path = "../egui", default-features = false, features = [ | ||
"tracing", | ||
] } | ||
instant = { version = "0.1", features = [ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "An easy-to-use immediate mode GUI that runs on both web and native" | ||
edition = "2021" | ||
|
@@ -55,7 +55,7 @@ persistence = ["serde", "epaint/serde", "ron"] | |
serde = ["dep:serde", "epaint/serde", "accesskit?/serde"] | ||
|
||
[dependencies] | ||
epaint = { version = "0.19.0", path = "../epaint", default-features = false } | ||
epaint = { version = "0.20.0", path = "../epaint", default-features = false } | ||
|
||
ahash = { version = "0.8.1", default-features = false, features = [ | ||
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui_demo_app" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2021" | ||
|
@@ -30,19 +30,19 @@ wgpu = ["eframe/wgpu", "bytemuck"] | |
|
||
[dependencies] | ||
chrono = { version = "0.4", features = ["js-sys", "wasmbind"] } | ||
eframe = { version = "0.19.0", path = "../eframe", default-features = false } | ||
egui = { version = "0.19.0", path = "../egui", features = [ | ||
eframe = { version = "0.20.0", path = "../eframe", default-features = false } | ||
egui = { version = "0.20.0", path = "../egui", features = [ | ||
"extra_debug_asserts", | ||
] } | ||
egui_demo_lib = { version = "0.19.0", path = "../egui_demo_lib", features = [ | ||
egui_demo_lib = { version = "0.20.0", path = "../egui_demo_lib", features = [ | ||
"chrono", | ||
] } | ||
tracing = "0.1" | ||
|
||
# Optional dependencies: | ||
|
||
bytemuck = { version = "1.7.1", optional = true } | ||
egui_extras = { version = "0.19.0", optional = true, path = "../egui_extras" } | ||
egui_extras = { version = "0.20.0", optional = true, path = "../egui_extras" } | ||
|
||
# feature "http": | ||
ehttp = { version = "0.2.0", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui_demo_lib" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Example library for egui" | ||
edition = "2021" | ||
|
@@ -30,8 +30,8 @@ syntax_highlighting = ["syntect"] | |
|
||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false } | ||
egui_extras = { version = "0.19.0", path = "../egui_extras" } | ||
egui = { version = "0.20.0", path = "../egui", default-features = false } | ||
egui_extras = { version = "0.20.0", path = "../egui_extras" } | ||
enum-map = { version = "2", features = ["serde"] } | ||
tracing = { version = "0.1", default-features = false, features = ["std"] } | ||
unicode_names2 = { version = "0.6.0", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui_extras" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = [ | ||
"Dominik Rössler <[email protected]>", | ||
"Emil Ernerfeldt <[email protected]>", | ||
|
@@ -37,7 +37,7 @@ tracing = ["dep:tracing", "egui/tracing"] | |
|
||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false } | ||
egui = { version = "0.20.0", path = "../egui", default-features = false } | ||
|
||
serde = { version = "1", features = ["derive"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "egui_glium" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui natively using the glium library" | ||
edition = "2021" | ||
|
@@ -39,10 +39,10 @@ screen_reader = ["egui-winit/screen_reader"] | |
|
||
|
||
[dependencies] | ||
egui = { version = "0.19.0", path = "../egui", default-features = false, features = [ | ||
egui = { version = "0.20.0", path = "../egui", default-features = false, features = [ | ||
"bytemuck", | ||
] } | ||
egui-winit = { version = "0.19.0", path = "../egui-winit", default-features = false } | ||
egui-winit = { version = "0.20.0", path = "../egui-winit", default-features = false } | ||
|
||
ahash = { version = "0.8.1", default-features = false, features = [ | ||
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead | ||
|
@@ -57,5 +57,5 @@ document-features = { version = "0.2", optional = true } | |
|
||
|
||
[dev-dependencies] | ||
egui_demo_lib = { version = "0.19.0", path = "../egui_demo_lib", default-features = false } | ||
egui_demo_lib = { version = "0.20.0", path = "../egui_demo_lib", default-features = false } | ||
image = { version = "0.24", default-features = false, features = ["png"] } |
Oops, something went wrong.