Skip to content

Commit

Permalink
Release 0.24.0 - Multi-viewport
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Nov 23, 2023
1 parent 56a74a5 commit bd087ff
Show file tree
Hide file tree
Showing 12 changed files with 35 additions and 35 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -20,7 +20,7 @@ members = [
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.72"
version = "0.23.0"
version = "0.24.0"


[profile.release]
Expand Down
10 changes: 5 additions & 5 deletions crates/eframe/Cargo.toml
Expand Up @@ -98,7 +98,7 @@ x11 = ["egui-winit/x11"]
__screenshot = []

[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false, features = [
egui = { version = "0.24.0", path = "../egui", default-features = false, features = [
"bytemuck",
"log",
] }
Expand All @@ -111,15 +111,15 @@ thiserror.workspace = true
## Enable this when generating docs.
document-features = { version = "0.2", optional = true }

egui_glow = { version = "0.23.0", path = "../egui_glow", optional = true, default-features = false }
egui_glow = { version = "0.24.0", path = "../egui_glow", optional = true, default-features = false }
glow = { version = "0.12", 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.23.0", path = "../egui-winit", default-features = false, features = [
egui-winit = { version = "0.24.0", path = "../egui-winit", default-features = false, features = [
"clipboard",
"links",
] }
Expand All @@ -131,7 +131,7 @@ winit = { version = "0.28.1", default-features = false }

# optional native:
directories-next = { version = "2", optional = true }
egui-wgpu = { version = "0.23.0", path = "../egui-wgpu", optional = true, features = [
egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true, features = [
"winit",
] } # if wgpu is used, use it with winit
pollster = { version = "0.3", optional = true } # needed for wgpu
Expand Down Expand Up @@ -205,7 +205,7 @@ web-sys = { version = "0.3.58", features = [
] }

# optional web:
egui-wgpu = { version = "0.23.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
egui-wgpu = { version = "0.24.0", path = "../egui-wgpu", optional = true } # if wgpu is used, use it without (!) winit
raw-window-handle = { workspace = true, optional = true }
tts = { version = "0.25", optional = true, default-features = false }
wgpu = { workspace = true, optional = true }
4 changes: 2 additions & 2 deletions crates/egui-wgpu/Cargo.toml
Expand Up @@ -36,8 +36,8 @@ winit = ["dep:winit"]


[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false }
epaint = { version = "0.23.0", path = "../epaint", default-features = false, features = [
egui = { version = "0.24.0", path = "../egui", default-features = false }
epaint = { version = "0.24.0", path = "../epaint", default-features = false, features = [
"bytemuck",
] }

Expand Down
2 changes: 1 addition & 1 deletion crates/egui-winit/Cargo.toml
Expand Up @@ -55,7 +55,7 @@ wayland = ["winit/wayland", "bytemuck"]
x11 = ["winit/x11", "bytemuck"]

[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false, features = [
egui = { version = "0.24.0", path = "../egui", default-features = false, features = [
"log",
] }
log = { version = "0.4", features = ["std"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/egui/Cargo.toml
Expand Up @@ -76,7 +76,7 @@ unity = ["epaint/unity"]


[dependencies]
epaint = { version = "0.23.0", path = "../epaint", default-features = false }
epaint = { version = "0.24.0", path = "../epaint", default-features = false }

ahash = { version = "0.8.6", default-features = false, features = [
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead
Expand Down
8 changes: 4 additions & 4 deletions crates/egui_demo_app/Cargo.toml
Expand Up @@ -37,16 +37,16 @@ chrono = { version = "0.4", default-features = false, features = [
"js-sys",
"wasmbind",
] }
eframe = { version = "0.23.0", path = "../eframe", default-features = false }
egui = { version = "0.23.0", path = "../egui", features = [
eframe = { version = "0.24.0", path = "../eframe", default-features = false }
egui = { version = "0.24.0", path = "../egui", features = [
"callstack",
"extra_debug_asserts",
"log",
] }
egui_demo_lib = { version = "0.23.0", path = "../egui_demo_lib", features = [
egui_demo_lib = { version = "0.24.0", path = "../egui_demo_lib", features = [
"chrono",
] }
egui_extras = { version = "0.23.0", path = "../egui_extras", features = [
egui_extras = { version = "0.24.0", path = "../egui_extras", features = [
"image",
] }
log = { version = "0.4", features = ["std"] }
Expand Down
6 changes: 3 additions & 3 deletions crates/egui_demo_lib/Cargo.toml
Expand Up @@ -38,9 +38,9 @@ syntect = ["egui_extras/syntect"]


[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false }
egui_extras = { version = "0.23.0", path = "../egui_extras" }
egui_plot = { version = "0.23.0", path = "../egui_plot" }
egui = { version = "0.24.0", path = "../egui", default-features = false }
egui_extras = { version = "0.24.0", path = "../egui_extras" }
egui_plot = { version = "0.24.0", path = "../egui_plot" }
log = { version = "0.4", features = ["std"] }
unicode_names2 = { version = "0.6.0", default-features = false } # this old version has fewer dependencies

Expand Down
2 changes: 1 addition & 1 deletion crates/egui_extras/Cargo.toml
Expand Up @@ -60,7 +60,7 @@ syntect = ["dep:syntect"]


[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false, features = [
egui = { version = "0.24.0", path = "../egui", default-features = false, features = [
"serde",
] }
enum-map = { version = "2", features = ["serde"] }
Expand Down
4 changes: 2 additions & 2 deletions crates/egui_glow/Cargo.toml
Expand Up @@ -44,7 +44,7 @@ winit = ["egui-winit"]


[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false, features = [
egui = { version = "0.24.0", path = "../egui", default-features = false, features = [
"bytemuck",
] }

Expand All @@ -59,7 +59,7 @@ document-features = { version = "0.2", optional = true }

# Native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui-winit = { version = "0.23.0", path = "../egui-winit", optional = true, default-features = false }
egui-winit = { version = "0.24.0", path = "../egui-winit", optional = true, default-features = false }
puffin = { workspace = true, optional = true }

# Web:
Expand Down
2 changes: 1 addition & 1 deletion crates/egui_plot/Cargo.toml
Expand Up @@ -28,7 +28,7 @@ serde = ["dep:serde", "egui/serde"]


[dependencies]
egui = { version = "0.23.0", path = "../egui", default-features = false }
egui = { version = "0.24.0", path = "../egui", default-features = false }


#! ### Optional dependencies
Expand Down
4 changes: 2 additions & 2 deletions crates/epaint/Cargo.toml
Expand Up @@ -70,8 +70,8 @@ serde = ["dep:serde", "ahash/serde", "emath/serde", "ecolor/serde"]
unity = []

[dependencies]
emath = { version = "0.23.0", path = "../emath" }
ecolor = { version = "0.23.0", path = "../ecolor" }
emath = { version = "0.24.0", path = "../emath" }
ecolor = { version = "0.24.0", path = "../ecolor" }

ab_glyph = "0.2.11"
ahash = { version = "0.8.1", default-features = false, features = [
Expand Down

0 comments on commit bd087ff

Please sign in to comment.