forked from imgui-rs/imgui-rs
-
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.
- Loading branch information
Showing
6 changed files
with
16 additions
and
14 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,8 @@ | |
|
||
## [Unreleased] | ||
|
||
## [0.0.17] - 2017-11-07 | ||
|
||
### Added | ||
|
||
- Namespaced flags (e.g. `ImGuiWindowFlags`) | ||
|
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 = "imgui" | ||
version = "0.0.17-pre" | ||
version = "0.0.17" | ||
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"] | ||
description = "High-level Rust bindings to dear imgui" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
|
@@ -13,7 +13,7 @@ readme = "README.markdown" | |
travis-ci = { repository = "Gekkio/imgui-rs" } | ||
|
||
[dependencies] | ||
imgui-sys = { version = "0.0.17-pre", path = "imgui-sys" } | ||
imgui-sys = { version = "0.0.17", path = "imgui-sys" } | ||
|
||
[workspace] | ||
members = ["imgui-examples", "imgui-sys", "imgui-gfx-renderer", "imgui-glium-renderer"] |
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 = "imgui-examples" | ||
version = "0.0.17-pre" | ||
version = "0.0.17" | ||
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"] | ||
description = "imgui crate examples" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
|
@@ -13,7 +13,7 @@ gfx = "0.16" | |
gfx_window_glutin = "0.18" | ||
glium = { version = "0.18", default-features = true } | ||
glutin = "0.10" | ||
imgui = { version = "0.0.17-pre", path = "../" } | ||
imgui-gfx-renderer = { version = "0.0.17-pre", path = "../imgui-gfx-renderer" } | ||
imgui-glium-renderer = { version = "0.0.17-pre", path = "../imgui-glium-renderer" } | ||
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["gfx", "glium"] } | ||
imgui = { version = "0.0.17", path = "../" } | ||
imgui-gfx-renderer = { version = "0.0.17", path = "../imgui-gfx-renderer" } | ||
imgui-glium-renderer = { version = "0.0.17", path = "../imgui-glium-renderer" } | ||
imgui-sys = { version = "0.0.17", path = "../imgui-sys", features = ["gfx", "glium"] } |
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 = "imgui-gfx-renderer" | ||
version = "0.0.17-pre" | ||
version = "0.0.17" | ||
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"] | ||
description = "gfx renderer for the imgui crate" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
|
@@ -13,5 +13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" } | |
|
||
[dependencies] | ||
gfx = "0.16" | ||
imgui = { version = "0.0.17-pre", path = "../" } | ||
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["gfx"] } | ||
imgui = { version = "0.0.17", path = "../" } | ||
imgui-sys = { version = "0.0.17", path = "../imgui-sys", features = ["gfx"] } |
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 = "imgui-glium-renderer" | ||
version = "0.0.17-pre" | ||
version = "0.0.17" | ||
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"] | ||
description = "Glium renderer for the imgui crate" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
|
@@ -13,5 +13,5 @@ travis-ci = { repository = "Gekkio/imgui-rs" } | |
|
||
[dependencies] | ||
glium = { version = "0.18", default-features = false } | ||
imgui = { version = "0.0.17-pre", path = "../" } | ||
imgui-sys = { version = "0.0.17-pre", path = "../imgui-sys", features = ["glium"] } | ||
imgui = { version = "0.0.17", path = "../" } | ||
imgui-sys = { version = "0.0.17", path = "../imgui-sys", features = ["glium"] } |
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 = "imgui-sys" | ||
version = "0.0.17-pre" | ||
version = "0.0.17" | ||
authors = ["Joonas Javanainen <[email protected]>", "imgui-rs contributors"] | ||
description = "Raw FFI bindings to dear imgui" | ||
homepage = "https://github.com/Gekkio/imgui-rs" | ||
|