mirror of
https://github.com/eliasstepanik/imgui-rs.git
synced 2026-01-11 13:38:35 +00:00
Release: 0.4.0
This commit is contained in:
parent
d72134e759
commit
bcf7669ae3
@ -2,6 +2,8 @@
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [0.4.0] - 2020-05-27
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- WebAssembly FFI shells
|
- WebAssembly FFI shells
|
||||||
@ -554,7 +556,8 @@ by setting the environment variable `WINIT_HIDPI_FACTOR=1` if you use X11.
|
|||||||
|
|
||||||
- Initial release with cimgui/imgui 1.44, glium 0.9
|
- Initial release with cimgui/imgui 1.44, glium 0.9
|
||||||
|
|
||||||
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...HEAD
|
[Unreleased]: https://github.com/Gekkio/imgui-rs/compare/v0.4.0...HEAD
|
||||||
|
[0.4.0]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.4.0
|
||||||
[0.3.1]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.3.1
|
[0.3.1]: https://github.com/Gekkio/imgui-rs/compare/v0.3.0...v0.3.1
|
||||||
[0.3.0]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.3.0
|
[0.3.0]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.3.0
|
||||||
[0.2.1]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.2.1
|
[0.2.1]: https://github.com/Gekkio/imgui-rs/compare/v0.2.0...v0.2.1
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "imgui"
|
name = "imgui"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||||
description = "High-level Rust bindings to dear imgui"
|
description = "High-level Rust bindings to dear imgui"
|
||||||
@ -18,7 +18,7 @@ exclude = [
|
|||||||
bitflags = "1.0"
|
bitflags = "1.0"
|
||||||
glium = { version = "0.27", default-features = false, optional = true }
|
glium = { version = "0.27", default-features = false, optional = true }
|
||||||
gfx = { version = "0.18", optional = true }
|
gfx = { version = "0.18", optional = true }
|
||||||
imgui-sys = { version = "0.4.0-pre", path = "imgui-sys" }
|
imgui-sys = { version = "0.4.0", path = "imgui-sys" }
|
||||||
lazy_static = "1.1"
|
lazy_static = "1.1"
|
||||||
parking_lot = "0.10"
|
parking_lot = "0.10"
|
||||||
|
|
||||||
|
|||||||
20
imgui-examples/Cargo.lock
generated
20
imgui-examples/Cargo.lock
generated
@ -445,11 +445,11 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui"
|
name = "imgui"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui-sys 0.4.0-pre",
|
"imgui-sys 0.4.0",
|
||||||
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
@ -461,31 +461,31 @@ dependencies = [
|
|||||||
"clipboard 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"clipboard 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"image 0.23.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"image 0.23.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
"imgui-glium-renderer 0.4.0-pre",
|
"imgui-glium-renderer 0.4.0",
|
||||||
"imgui-winit-support 0.4.0-pre",
|
"imgui-winit-support 0.4.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-glium-renderer"
|
name = "imgui-glium-renderer"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glium 0.27.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-sys"
|
name = "imgui-sys"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-winit-support"
|
name = "imgui-winit-support"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
"winit 0.22.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"winit 0.22.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
20
imgui-gfx-examples/Cargo.lock
generated
20
imgui-gfx-examples/Cargo.lock
generated
@ -450,11 +450,11 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui"
|
name = "imgui"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"gfx 0.18.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"gfx 0.18.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui-sys 0.4.0-pre",
|
"imgui-sys 0.4.0",
|
||||||
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"parking_lot 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
@ -470,32 +470,32 @@ dependencies = [
|
|||||||
"gfx_window_glutin 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"gfx_window_glutin 0.31.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"glutin 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"glutin 0.21.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"image 0.23.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"image 0.23.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
"imgui-gfx-renderer 0.4.0-pre",
|
"imgui-gfx-renderer 0.4.0",
|
||||||
"imgui-winit-support 0.4.0-pre",
|
"imgui-winit-support 0.4.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-gfx-renderer"
|
name = "imgui-gfx-renderer"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"gfx 0.18.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
"gfx 0.18.2 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
"winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-sys"
|
name = "imgui-sys"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
|
"cc 1.0.50 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "imgui-winit-support"
|
name = "imgui-winit-support"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"imgui 0.4.0-pre",
|
"imgui 0.4.0",
|
||||||
"winit 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
"winit 0.19.5 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "imgui-gfx-renderer"
|
name = "imgui-gfx-renderer"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||||
description = "gfx renderer for the imgui crate"
|
description = "gfx renderer for the imgui crate"
|
||||||
@ -16,7 +16,7 @@ default = ["opengl"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gfx = "0.18"
|
gfx = "0.18"
|
||||||
imgui = { version = "0.4.0-pre", path = "../", features = ["gfx"] }
|
imgui = { version = "0.4.0", path = "../", features = ["gfx"] }
|
||||||
|
|
||||||
[target.'cfg(windows)'.build-dependencies]
|
[target.'cfg(windows)'.build-dependencies]
|
||||||
winapi = { version = "0.3", features = ["d3dcompiler"] }
|
winapi = { version = "0.3", features = ["d3dcompiler"] }
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "imgui-glium-renderer"
|
name = "imgui-glium-renderer"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||||
description = "Glium renderer for the imgui crate"
|
description = "Glium renderer for the imgui crate"
|
||||||
@ -11,4 +11,4 @@ categories = ["gui", "rendering"]
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
glium = { version = "0.27", default-features = false }
|
glium = { version = "0.27", default-features = false }
|
||||||
imgui = { version = "0.4.0-pre", path = "../", features = ["glium"] }
|
imgui = { version = "0.4.0", path = "../", features = ["glium"] }
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "imgui-sys"
|
name = "imgui-sys"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||||
description = "Raw FFI bindings to dear imgui"
|
description = "Raw FFI bindings to dear imgui"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "imgui-winit-support"
|
name = "imgui-winit-support"
|
||||||
version = "0.4.0-pre"
|
version = "0.4.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
authors = ["Joonas Javanainen <joonas.javanainen@gmail.com>", "imgui-rs contributors"]
|
||||||
description = "winit support code for the imgui crate"
|
description = "winit support code for the imgui crate"
|
||||||
@ -10,7 +10,7 @@ license = "MIT/Apache-2.0"
|
|||||||
categories = ["gui"]
|
categories = ["gui"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
imgui = { version = "0.4.0-pre", path = "../" }
|
imgui = { version = "0.4.0", path = "../" }
|
||||||
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
|
winit-19 = { version = ">= 0.16, <= 0.19", package = "winit", optional = true }
|
||||||
winit-20 = { version = ">= 0.20, <= 0.21", package = "winit", optional = true }
|
winit-20 = { version = ">= 0.20, <= 0.21", package = "winit", optional = true }
|
||||||
winit-22 = { version = "0.22", package = "winit", optional = true }
|
winit-22 = { version = "0.22", package = "winit", optional = true }
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user