Skip to content

Commit

Permalink
Release egui 0.6.0 - Fix file paths on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Jul 5, 2021
1 parent 811fdc1 commit 0d4a745
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 14 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.6.0] - 2021-07-05

* Handle Windows, which uses backslash (`\`) as path separator.


Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions puffin-imgui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]


## [0.9.0]

* Paint flamegraph top-down
* Scrollable flamegraph
* Option to sort threads by name
Expand Down
4 changes: 2 additions & 2 deletions puffin-imgui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin-imgui"
version = "0.8.0"
version = "0.9.0"
authors = ["Embark <[email protected]>"]
description = "ImGui GUI bindings for the Puffin profiler"
license = "MIT OR Apache-2.0"
Expand All @@ -15,7 +15,7 @@ include = [ "**/*.rs", "Cargo.toml"]
[dependencies]
imgui = { version = "0.7" }
natord = "1.0.9"
puffin = { version = "0.5.2", path = "../puffin" }
puffin = { version = "0.6.0", path = "../puffin" }
serde = { version = "1", features = ["derive"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion puffin/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin"
version = "0.5.2"
version = "0.6.0"
authors = ["Embark <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Simple instrumentation profiler for games"
Expand Down
6 changes: 3 additions & 3 deletions puffin_egui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,19 @@ All notable changes to the egui crate will be documented in this file.
* Show all scopes (even tiny ones)


## 0.3.0 - 2021-05-27
## [0.3.0] - 2021-05-27

* History viewer.
* Update to puffin 0.5.1.


## 0.2.0 - 2021-05-13
## [0.2.0] - 2021-05-13

* Update to egui 0.12.
* Remove drag-to-zoom (scroll to zoom instead).


## 0.1.0 - 2021-05-05 - Initial release
## [0.1.0] - 2021-05-05 - Initial release

Show flamegraph plot of either latest frame, a spike frame, or a paused frame.
The view supports viewing merged sibling scopes.
2 changes: 1 addition & 1 deletion puffin_egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ include = [
egui = "0.13"
natord = "1.0.9"
once_cell = "1.7"
puffin = { version = "0.5.2", path = "../puffin" }
puffin = { version = "0.6.0", path = "../puffin" }
serde = { version = "1", features = ["derive"], optional = true }

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions puffin_http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "puffin_http"
version = "0.2.0"
version = "0.3.0"
authors = ["Embark <[email protected]>"]
description = "HTTP server/client for puffin profiler data"
license = "MIT OR Apache-2.0"
Expand All @@ -16,7 +16,7 @@ include = [ "**/*.rs", "Cargo.toml"]
anyhow = "1"
bincode = "1.3"
log = "0.4"
puffin = { version = "0.5.2", path = "../puffin", features = ["with_serde"] }
puffin = { version = "0.6.0", path = "../puffin", features = ["with_serde"] }
retain_mut = "0.1.3"
serde = { version = "1", features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions puffin_viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ keywords = ["profiler", "instrumentation", "gamedev"]
include = [ "**/*.rs", "Cargo.toml"]

[dependencies]
puffin = { version = "0.5.2", path = "../puffin", features = ["with_serde"] }
puffin_http = { version = "0.2.0", path = "../puffin_http" }
puffin_egui = { version = "0.3", path = "../puffin_egui" }
puffin = { version = "0.6.0", path = "../puffin", features = ["with_serde"] }
puffin_http = { version = "0.3.0", path = "../puffin_http" }

argh = "0.1"
eframe = { version = "0.13", features = ["persistence"] }
Expand Down

0 comments on commit 0d4a745

Please sign in to comment.