-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.15.0 - Syntax highlighting, hscroll, egui-winit and egui_glow
- Loading branch information
Showing
19 changed files
with
74 additions
and
47 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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "egui framework - write GUI apps that compiles to web and/or natively" | ||
edition = "2018" | ||
|
@@ -23,18 +23,18 @@ all-features = true | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false } | ||
epi = { version = "0.14.0", path = "../epi" } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false } | ||
epi = { version = "0.15.0", path = "../epi" } | ||
|
||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
egui-winit = { version = "0.14.0", path = "../egui-winit", default-features = false } | ||
egui_glium = { version = "0.14.0", path = "../egui_glium", default-features = false, features = ["clipboard", "epi", "links"], optional = true } | ||
egui_glow = { version = "0.14.0", path = "../egui_glow", default-features = false, features = ["clipboard", "epi", "links"], optional = true } | ||
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false } | ||
egui_glium = { version = "0.15.0", path = "../egui_glium", default-features = false, features = ["clipboard", "epi", "links"], optional = true } | ||
egui_glow = { version = "0.15.0", path = "../egui_glow", default-features = false, features = ["clipboard", "epi", "links"], optional = true } | ||
|
||
# web: | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
egui_web = { version = "0.14.0", path = "../egui_web", default-features = false } | ||
egui_web = { version = "0.15.0", path = "../egui_web", default-features = false } | ||
|
||
[dev-dependencies] | ||
image = { version = "0.23", default-features = false, features = ["png"] } | ||
|
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-winit" | ||
version = "0.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui with winit" | ||
edition = "2018" | ||
|
@@ -21,10 +21,10 @@ include = [ | |
all-features = true | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
winit = "0.25" | ||
|
||
epi = { version = "0.14.0", path = "../epi", optional = true } | ||
epi = { version = "0.15.0", path = "../epi", optional = true } | ||
|
||
copypasta = { version = "0.7", optional = true } | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
|
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.14.2" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Simple, portable immediate mode GUI library for Rust" | ||
edition = "2018" | ||
|
@@ -23,7 +23,7 @@ all-features = true | |
[lib] | ||
|
||
[dependencies] | ||
epaint = { version = "0.14.0", path = "../epaint", default-features = false } | ||
epaint = { version = "0.15.0", path = "../epaint", default-features = false } | ||
|
||
ahash = "0.7" | ||
nohash-hasher = "0.2" | ||
|
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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
@@ -10,10 +10,10 @@ publish = false | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
eframe = { version = "0.14.0", path = "../eframe" } | ||
# eframe = { version = "0.14.0", path = "../eframe", default-features = false, features = ["default_fonts", "egui_glow"] } | ||
eframe = { version = "0.15.0", path = "../eframe" } | ||
# eframe = { version = "0.15.0", path = "../eframe", default-features = false, features = ["default_fonts", "egui_glow"] } | ||
|
||
egui_demo_lib = { version = "0.14.0", path = "../egui_demo_lib", features = ["extra_debug_asserts"] } | ||
egui_demo_lib = { version = "0.15.0", path = "../egui_demo_lib", features = ["extra_debug_asserts"] } | ||
|
||
[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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Example library for egui" | ||
edition = "2018" | ||
|
@@ -23,8 +23,8 @@ all-features = true | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false } | ||
epi = { version = "0.14.0", path = "../epi" } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false } | ||
epi = { version = "0.15.0", path = "../epi" } | ||
|
||
chrono = { version = "0.4", features = ["js-sys", "wasmbind"], optional = true } | ||
enum-map = { version = "1", features = ["serde"] } | ||
|
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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui natively using the glium library" | ||
edition = "2018" | ||
|
@@ -22,9 +22,9 @@ include = [ | |
all-features = true | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
egui-winit = { version = "0.14.0", path = "../egui-winit", default-features = false, features = ["epi"] } | ||
epi = { version = "0.14.0", path = "../epi", optional = true } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false, features = ["epi"] } | ||
epi = { version = "0.15.0", path = "../epi", optional = true } | ||
|
||
glium = "0.30" | ||
|
||
|
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_glow" | ||
version = "0.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for using egui natively using the glow library" | ||
edition = "2018" | ||
|
@@ -22,9 +22,9 @@ include = [ | |
all-features = true | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
egui-winit = { version = "0.14.0", path = "../egui-winit", default-features = false, features = ["epi"] } | ||
epi = { version = "0.14.0", path = "../epi", optional = true } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
egui-winit = { version = "0.15.0", path = "../egui-winit", default-features = false, features = ["epi"] } | ||
epi = { version = "0.15.0", path = "../epi", optional = true } | ||
|
||
glow = "0.11" | ||
glutin = "0.27" | ||
|
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.14.1" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Bindings for compiling egui code to WASM for a web page" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -25,10 +25,10 @@ all-features = true | |
crate-type = ["cdylib", "rlib"] | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false, features = [ | ||
egui = { version = "0.15.0", path = "../egui", default-features = false, features = [ | ||
"single_threaded", | ||
] } | ||
epi = { version = "0.14.0", path = "../epi" } | ||
epi = { version = "0.15.0", path = "../epi" } | ||
js-sys = "0.3" | ||
ron = { version = "0.7", 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.14.0" | ||
version = "0.15.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
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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Minimal 2D graphics library for GUI work" | ||
edition = "2018" | ||
|
@@ -25,7 +25,7 @@ all-features = true | |
[lib] | ||
|
||
[dependencies] | ||
emath = { version = "0.14.0", path = "../emath" } | ||
emath = { version = "0.15.0", path = "../emath" } | ||
|
||
ab_glyph = "0.2.11" | ||
ahash = { version = "0.7", features = ["std"], default-features = false } | ||
|
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.14.0" | ||
version = "0.15.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
description = "Backend-agnostic interface for writing apps using egui" | ||
edition = "2018" | ||
|
@@ -23,7 +23,7 @@ all-features = true | |
[lib] | ||
|
||
[dependencies] | ||
egui = { version = "0.14.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
egui = { version = "0.15.0", path = "../egui", default-features = false, features = ["single_threaded"] } | ||
|
||
directories-next = { version = "2", optional = true } | ||
ron = { version = "0.7", optional = true } | ||
|