Skip to content

Commit 242b3d9

Browse files
committed
Update to Dear ImGui 1.92.2b. Bump to 0.17.1.
1 parent 090130e commit 242b3d9

File tree

7 files changed

+32
-32
lines changed

7 files changed

+32
-32
lines changed

Cargo.lock

Lines changed: 20 additions & 20 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.92.2.
5+
Build full GUI applications with Rust and [Dear ImGui][dearimgui]. It currently uses version v1.92.2b.
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-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.17.0"
3+
version = "0.17.1"
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.17.0", path = "../easy-imgui-sys" }
16-
easy-imgui = { version = "=0.17.0", path = "../easy-imgui" }
15+
easy-imgui-sys = { version = "=0.17.1", path = "../easy-imgui-sys" }
16+
easy-imgui = { version = "=0.17.1", path = "../easy-imgui" }
1717
easy-imgui-opengl = { version = "0.2", 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.17.0"
3+
version = "0.17.1"
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.17.0"
3+
version = "0.17.1"
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.17.0", path = "../easy-imgui-sys" }
20-
easy-imgui = { version = "=0.17.0", path = "../easy-imgui" }
21-
easy-imgui-renderer = { version = "=0.17.0", path = "../easy-imgui-renderer" }
19+
easy-imgui-sys = { version = "=0.17.1", path = "../easy-imgui-sys" }
20+
easy-imgui = { version = "=0.17.1", path = "../easy-imgui" }
21+
easy-imgui-renderer = { version = "=0.17.1", 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.17.0"
3+
version = "0.17.1"
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.17.0", path = "../easy-imgui-sys" }
13+
easy-imgui-sys = { version = "=0.17.1", path = "../easy-imgui-sys" }
1414
paste = "1"
1515
bitflags = "2"
1616
mint = "0.5"

0 commit comments

Comments
 (0)