Skip to content

Commit 510367a

Browse files
committed
Update DearImGui to 1.92.1. Bump to 0.16.
This is the big scaling font version, many changes in the public API.
1 parent 1fcb0d8 commit 510367a

File tree

8 files changed

+19
-19
lines changed

8 files changed

+19
-19
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![build](https://github.com/rodrigorc/easy-imgui-rs/actions/workflows/build.yaml/badge.svg?branch=main)](https://github.com/rodrigorc/easy-imgui-rs/actions/workflows/build.yaml)
44

5-
Build full GUI applications with Rust and [Dear ImGui][dearimgui]. It currently uses version v1.91.9b.
5+
Build full GUI applications with Rust and [Dear ImGui][dearimgui]. It currently uses version v1.92.1.
66

77
There are several crates in this repository:
88
* [`easy-imgui-sys`](https://crates.io/crates/easy-imgui-sys): This is the direct binding of the C++ Dear ImGui library.

easy-imgui-filechooser/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-filechooser"
3-
version = "0.2.5"
3+
version = "0.3.0"
44
edition = "2024"
55
description = "File-chooser widget for easy-imgui"
66
license = "MIT"
@@ -14,7 +14,7 @@ default = []
1414
tr = ["dep:tr", "dep:include-po"]
1515

1616
[dependencies]
17-
easy-imgui = { version = "0.15.0", path = "../easy-imgui" }
17+
easy-imgui = { version = "0.16.0", path = "../easy-imgui" }
1818
image = "0.25"
1919
glob = "0.3"
2020
time = { version = "0.3", features = ["macros", "formatting"] }
@@ -26,7 +26,7 @@ tr = { version = "0.1.10", default-features = false, optional = true }
2626
windows = { version = "0.61", features = ["Win32_Storage_FileSystem"] }
2727

2828
[dev-dependencies]
29-
easy-imgui-window = { version = "0.15.0", path = "../easy-imgui-window" }
29+
easy-imgui-window = { version = "0.16.0", path = "../easy-imgui-window" }
3030
sys-locale = "0.3"
3131

3232
[build-dependencies]

easy-imgui-renderer/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-renderer"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = "2024"
55
description = "Default renderer for the easy-imgui crate, using OpenGl via glow"
66
license = "MIT"
@@ -12,8 +12,8 @@ keywords = ["imgui", "ui", "graphics"]
1212
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1313

1414
[dependencies]
15-
easy-imgui-sys = { version = "=0.15.0", path = "../easy-imgui-sys" }
16-
easy-imgui = { version = "=0.15.0", path = "../easy-imgui" }
15+
easy-imgui-sys = { version = "=0.16.0", path = "../easy-imgui-sys" }
16+
easy-imgui = { version = "=0.16.0", path = "../easy-imgui" }
1717
easy-imgui-opengl = { version = "0.1", path = "../easy-imgui-opengl" }
1818

1919
anyhow = "1"

easy-imgui-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-sys"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = "2024"
55
build = "build.rs"
66
links = "imgui"

easy-imgui-window/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui-window"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = "2024"
55
description = "Default windowing for the easy-imgui crate using winit and easy-imgui-renderer"
66
license = "MIT"
@@ -16,9 +16,9 @@ freetype = ["easy-imgui/freetype"]
1616
main-window = ["dep:glutin-winit"]
1717

1818
[dependencies]
19-
easy-imgui-sys = { version = "=0.15.0", path = "../easy-imgui-sys" }
20-
easy-imgui = { version = "=0.15.0", path = "../easy-imgui" }
21-
easy-imgui-renderer = { version = "=0.15.0", path = "../easy-imgui-renderer" }
19+
easy-imgui-sys = { version = "=0.16.0", path = "../easy-imgui-sys" }
20+
easy-imgui = { version = "=0.16.0", path = "../easy-imgui" }
21+
easy-imgui-renderer = { version = "=0.16.0", path = "../easy-imgui-renderer" }
2222

2323
log ="0.4"
2424
anyhow = "1"

easy-imgui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "easy-imgui"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = "2024"
55
description = "Rust wrapper for the Dear ImGui library"
66
license = "MIT"
@@ -10,7 +10,7 @@ categories = ["gui"]
1010
keywords = ["imgui", "ui", "graphics"]
1111

1212
[dependencies]
13-
easy-imgui-sys = { version = "=0.15.0", path = "../easy-imgui-sys" }
13+
easy-imgui-sys = { version = "=0.16.0", path = "../easy-imgui-sys" }
1414
paste = "1"
1515
bitflags = "2"
1616
mint = "0.5"

0 commit comments

Comments
 (0)