Skip to content

Commit

Permalink
Release 0.9.0 - light mode, right clicks and more
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Feb 7, 2021
1 parent fdff33d commit b61db03
Show file tree
Hide file tree
Showing 15 changed files with 56 additions and 33 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased


## 0.9.0 - 2021-02-07 - Light Mode and much more

### Added ⭐

<img src="media/0.9.0-disabled.gif" width="50%">

* Add support for secondary and middle mouse buttons.
* Add `Label` methods for code, strong, strikethrough, underline and italics.
* Add `ui.group(|ui| { … })` to visually group some widgets within a frame.
Expand Down
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions eframe/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased


## 0.9.0 - 2021-02-07

* Nothing new


## 0.8.0 - 2021-01-17

* Update all egui-related dependencies to `0.8.0`
Expand Down
10 changes: 5 additions & 5 deletions eframe/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "eframe"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "egui framework - write GUI apps that compiles to web and/or natively"
edition = "2018"
Expand All @@ -15,16 +15,16 @@ include = [ "**/*.rs", "Cargo.toml"]
[lib]

[dependencies]
egui = { version = "0.8.0", path = "../egui" }
epi = { version = "0.8.0", path = "../epi" }
egui = { version = "0.9.0", path = "../egui" }
epi = { version = "0.9.0", path = "../epi" }

# For compiling natively:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
egui_glium = { version = "0.8.0", path = "../egui_glium" }
egui_glium = { version = "0.9.0", path = "../egui_glium" }

# For compiling to web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
egui_web = { version = "0.8.0", path = "../egui_web" }
egui_web = { version = "0.9.0", path = "../egui_web" }

[features]
default = []
Expand Down
4 changes: 2 additions & 2 deletions egui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Simple, portable immediate mode GUI library for Rust"
edition = "2018"
Expand All @@ -18,7 +18,7 @@ include = [
[lib]

[dependencies]
epaint = { version = "0.8.0", path = "../epaint", default-features = false }
epaint = { version = "0.9.0", path = "../epaint", default-features = false }
serde = { version = "1", features = ["derive", "rc"], optional = true }

[features]
Expand Down
6 changes: 3 additions & 3 deletions egui_demo_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_demo_app"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
license = "MIT OR Apache-2.0"
edition = "2018"
Expand All @@ -10,8 +10,8 @@ publish = false
crate-type = ["cdylib", "rlib"]

[dependencies]
eframe = { version = "0.8.0", path = "../eframe", features = ["time"] }
egui_demo_lib = { version = "0.8.0", path = "../egui_demo_lib" }
eframe = { version = "0.9.0", path = "../eframe", features = ["time"] }
egui_demo_lib = { version = "0.9.0", path = "../egui_demo_lib" }

[features]
default = ["persistence"]
Expand Down
6 changes: 3 additions & 3 deletions egui_demo_lib/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_demo_lib"
version = "0.8.1"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Example library for egui"
edition = "2018"
Expand All @@ -15,8 +15,8 @@ include = [ "**/*.rs", "Cargo.toml"]
[lib]

[dependencies]
egui = { version = "0.8.0", path = "../egui" }
epi = { version = "0.8.0", path = "../epi" }
egui = { version = "0.9.0", path = "../egui" }
epi = { version = "0.9.0", path = "../epi" }

# feature "http":
image = { version = "0.23", default_features = false, features = ["jpeg", "png"], optional = true }
Expand Down
5 changes: 5 additions & 0 deletions egui_glium/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased


## 0.9.0 - 2021-02-07

* Nothing new


## 0.8.0 - 2021-01-17

### Fixed 🐛
Expand Down
6 changes: 3 additions & 3 deletions egui_glium/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_glium"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Bindings for using egui natively using the glium library"
edition = "2018"
Expand All @@ -14,8 +14,8 @@ include = [ "**/*.rs", "Cargo.toml"]

[dependencies]
clipboard = "0.5"
egui = { version = "0.8.0", path = "../egui" }
epi = { version = "0.8.0", path = "../epi" }
egui = { version = "0.9.0", path = "../egui" }
epi = { version = "0.9.0", path = "../epi" }
glium = "0.29"
webbrowser = "0.5"

Expand Down
3 changes: 3 additions & 0 deletions egui_web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased


## 0.9.0 - 2021-02-07

### Added ⭐

* Right-clicks will no longer open browser context menu.
Expand Down
6 changes: 3 additions & 3 deletions egui_web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "egui_web"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Bindings for compiling egui code to WASM for a web page"
license = "MIT OR Apache-2.0"
Expand All @@ -16,8 +16,8 @@ include = [ "**/*.rs", "Cargo.toml"]
crate-type = ["cdylib", "rlib"]

[dependencies]
egui = { version = "0.8.0", path = "../egui" }
epi = { version = "0.8.0", path = "../epi" }
egui = { version = "0.9.0", path = "../egui" }
epi = { version = "0.9.0", path = "../epi" }
js-sys = "0.3"
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion emath/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "emath"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Minimal 2D math library for GUI work"
edition = "2018"
Expand Down
4 changes: 2 additions & 2 deletions epaint/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "epaint"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Minimal 2D graphics library for GUI work"
edition = "2018"
Expand All @@ -19,7 +19,7 @@ include = [
[lib]

[dependencies]
emath = { version = "0.8.0", path = "../emath" }
emath = { version = "0.9.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.
Expand Down
5 changes: 5 additions & 0 deletions epi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## Unreleased


## 0.9.0 - 2021-02-07

* Nothing new


## 0.8.0 - 2021-01-17

* Simplify `TextureAllocator` interface.
Expand Down
4 changes: 2 additions & 2 deletions epi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "epi"
version = "0.8.0"
version = "0.9.0"
authors = ["Emil Ernerfeldt <[email protected]>"]
description = "Backend-agnostic interface for writing apps using egui"
edition = "2018"
Expand All @@ -15,7 +15,7 @@ include = [ "**/*.rs", "Cargo.toml"]
[lib]

[dependencies]
egui = { version = "0.8.0", path = "../egui" }
egui = { version = "0.9.0", path = "../egui" }
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }

Expand Down

0 comments on commit b61db03

Please sign in to comment.