-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.12.0 - Multitouch, user memory, window pivots, and improved…
… plots
- Loading branch information
Showing
14 changed files
with
45 additions
and
33 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 = "eframe" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "egui framework - write GUI apps that compiles to web and/or natively" | ||
edition = "2018" | ||
|
@@ -20,16 +20,16 @@ include = [ | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.11.0", path = "../egui", default-features = false } | ||
epi = { version = "0.11.0", path = "../epi" } | ||
egui = { version = "0.12.0", path = "../egui", default-features = false } | ||
epi = { version = "0.12.0", path = "../epi" } | ||
|
||
# For compiling natively: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
egui_glium = { version = "0.11.0", path = "../egui_glium", default-features = false } | ||
egui_glium = { version = "0.12.0", path = "../egui_glium", default-features = false } | ||
|
||
# For compiling to web: | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
egui_web = { version = "0.11.0", path = "../egui_web", default-features = false } | ||
egui_web = { version = "0.12.0", path = "../egui_web", default-features = false } | ||
|
||
[features] | ||
default = ["default_fonts"] | ||
|
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 = "egui" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Simple, portable immediate mode GUI library for Rust" | ||
edition = "2018" | ||
|
@@ -20,7 +20,7 @@ include = [ | |
[lib] | ||
|
||
[dependencies] | ||
epaint = { version = "0.11.0", path = "../epaint", default-features = false } | ||
epaint = { version = "0.12.0", path = "../epaint", default-features = false } | ||
serde = { version = "1", features = ["derive", "rc"], optional = true } | ||
ron = { version = "0.6.4", optional = true } | ||
|
||
|
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 = "egui_demo_app" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
@@ -10,8 +10,8 @@ publish = false | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
eframe = { version = "0.11.0", path = "../eframe", features = ["time"] } | ||
egui_demo_lib = { version = "0.11.0", path = "../egui_demo_lib" } | ||
eframe = { version = "0.12.0", path = "../eframe", features = ["time"] } | ||
egui_demo_lib = { version = "0.12.0", path = "../egui_demo_lib" } | ||
|
||
[features] | ||
default = ["persistence"] | ||
|
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 = "egui_demo_lib" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Example library for egui" | ||
edition = "2018" | ||
|
@@ -20,8 +20,8 @@ include = [ | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.11.0", path = "../egui", default-features = false } | ||
epi = { version = "0.11.0", path = "../epi" } | ||
egui = { version = "0.12.0", path = "../egui", default-features = false } | ||
epi = { version = "0.12.0", path = "../epi" } | ||
|
||
# feature "http": | ||
image = { version = "0.23", default-features = false, features = ["jpeg", "png"], optional = true } | ||
|
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
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 = "egui_glium" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui natively using the glium library" | ||
edition = "2018" | ||
|
@@ -20,8 +20,8 @@ include = [ | |
|
||
[dependencies] | ||
copypasta = "0.7" | ||
egui = { version = "0.11.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
epi = { version = "0.11.0", path = "../epi" } | ||
egui = { version = "0.12.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
epi = { version = "0.12.0", path = "../epi" } | ||
glium = "0.29" | ||
webbrowser = "0.5" | ||
|
||
|
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
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 = "egui_web" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for compiling egui code to WASM for a web page" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -22,8 +22,8 @@ include = [ | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
egui = { version = "0.11.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
epi = { version = "0.11.0", path = "../epi" } | ||
egui = { version = "0.12.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
epi = { version = "0.12.0", path = "../epi" } | ||
js-sys = "0.3" | ||
ron = { version = "0.6", optional = true } | ||
serde = { version = "1", optional = true } | ||
|
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 = "emath" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Minimal 2D math library for GUI work" | ||
edition = "2018" | ||
|
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 = "epaint" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Minimal 2D graphics library for GUI work" | ||
edition = "2018" | ||
|
@@ -22,7 +22,7 @@ include = [ | |
[lib] | ||
|
||
[dependencies] | ||
emath = { version = "0.11.0", path = "../emath" } | ||
emath = { version = "0.12.0", path = "../emath" } | ||
|
||
ahash = { version = "0.7", features = ["std"], default-features = false } | ||
atomic_refcell = { version = "0.1", optional = true } # Used instead of parking_lot when you are always using epaint in a single thread. About as fast as parking_lot. Panics on multi-threaded use. | ||
|
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 = "epi" | ||
version = "0.11.0" | ||
version = "0.12.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Backend-agnostic interface for writing apps using egui" | ||
edition = "2018" | ||
|
@@ -20,7 +20,7 @@ include = [ | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.11.0", path = "../egui", default-features = false } | ||
egui = { version = "0.12.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
ron = { version = "0.6", optional = true } | ||
serde = { version = "1", optional = true } | ||
|
||
|