Skip to content

Commit

Permalink
Merge pull request #232 from Nazariglez/develop
Browse files Browse the repository at this point in the history
v0.9.3
  • Loading branch information
Nazariglez authored Feb 12, 2023
2 parents 2b29023 + ea23da9 commit abc0a9f
Show file tree
Hide file tree
Showing 30 changed files with 388 additions and 310 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog
All notable changes to this project will be documented in this file.

## v0.9.3 - 12/02/2023

- Added `WindowBackend::screen_size` to get the screen's resolution size.
- Added `WindowBackend::container_size` to get the windows container size (screen on native, parent element on web).
- Fix Draw2D masking issue about the stencil clearing.
- New example `draw_mask_animated.rs`.

## v0.9.2 - 05/02/2023

- Added `Fn` keys to `egui`.
Expand Down
42 changes: 21 additions & 21 deletions Cargo.lock

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

34 changes: 17 additions & 17 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notan"
version = "0.9.2"
version = "0.9.3"
authors = ["Nazarí González <nazari.nz@gmail.com>"]
edition = "2021"
categories = ["graphics", "rendering", "wasm", "gui", "multimedia"]
Expand All @@ -19,22 +19,22 @@ features = ["default", "glyph", "egui", "text", "extra", "audio", "links", "drop
lto = true

[dependencies]
notan_core = { path = "crates/notan_core", version = "0.9.2" }
notan_input = { path = "crates/notan_input", version = "0.9.2" }
notan_app = { path = "crates/notan_app", version = "0.9.2" }
notan_macro = { path = "crates/notan_macro", version = "0.9.2" }
notan_math = { path = "crates/notan_math", version = "0.9.2" }
notan_graphics = { path = "crates/notan_graphics", version = "0.9.2" }
notan_utils = { path = "crates/notan_utils", version = "0.9.2" }
notan_log = { path = "crates/notan_log", version = "0.9.2", optional = true }
notan_glyph = { path = "crates/notan_glyph", version = "0.9.2", optional = true }
notan_draw = { path = "crates/notan_draw", version = "0.9.2", optional = true }
notan_backend = { path = "crates/notan_backend", version = "0.9.2", optional = true }
notan_egui = { path = "crates/notan_egui", version = "0.9.2", optional = true }
notan_text = { path = "crates/notan_text", version = "0.9.2", optional = true }
notan_audio = { path = "crates/notan_audio", version = "0.9.2", optional = true }
notan_extra = { path = "crates/notan_extra", version = "0.9.2", optional = true }
notan_random = { path = "crates/notan_random", version = "0.9.2", optional = true }
notan_core = { path = "crates/notan_core", version = "0.9.3" }
notan_input = { path = "crates/notan_input", version = "0.9.3" }
notan_app = { path = "crates/notan_app", version = "0.9.3" }
notan_macro = { path = "crates/notan_macro", version = "0.9.3" }
notan_math = { path = "crates/notan_math", version = "0.9.3" }
notan_graphics = { path = "crates/notan_graphics", version = "0.9.3" }
notan_utils = { path = "crates/notan_utils", version = "0.9.3" }
notan_log = { path = "crates/notan_log", version = "0.9.3", optional = true }
notan_glyph = { path = "crates/notan_glyph", version = "0.9.3", optional = true }
notan_draw = { path = "crates/notan_draw", version = "0.9.3", optional = true }
notan_backend = { path = "crates/notan_backend", version = "0.9.3", optional = true }
notan_egui = { path = "crates/notan_egui", version = "0.9.3", optional = true }
notan_text = { path = "crates/notan_text", version = "0.9.3", optional = true }
notan_audio = { path = "crates/notan_audio", version = "0.9.3", optional = true }
notan_extra = { path = "crates/notan_extra", version = "0.9.3", optional = true }
notan_random = { path = "crates/notan_random", version = "0.9.3", optional = true }

[workspace]
members = ["crates/*"]
Expand Down
16 changes: 8 additions & 8 deletions crates/notan_app/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "notan_app"
version = "0.9.2"
version = "0.9.3"
authors = ["Nazarí González <nazari.nz@gmail.com>"]
edition = "2021"
readme = "README.md"
Expand All @@ -14,13 +14,13 @@ description = "Provides the core API for Notan"
[dependencies]
log = "0.4.17"
hashbrown = "0.13.2"
notan_core = { path = "../notan_core", version = "0.9.2" }
notan_input = { path = "../notan_input", version = "0.9.2" }
notan_math = { path = "../notan_math", version = "0.9.2" }
notan_macro = { path = "../notan_macro", version = "0.9.2" }
notan_graphics = { path = "../notan_graphics", version = "0.9.2" }
notan_utils = { path = "../notan_utils", version = "0.9.2" }
notan_audio = { path = "../notan_audio", version = "0.9.2", optional = true }
notan_core = { path = "../notan_core", version = "0.9.3" }
notan_input = { path = "../notan_input", version = "0.9.3" }
notan_math = { path = "../notan_math", version = "0.9.3" }
notan_macro = { path = "../notan_macro", version = "0.9.3" }
notan_graphics = { path = "../notan_graphics", version = "0.9.3" }
notan_utils = { path = "../notan_utils", version = "0.9.3" }
notan_audio = { path = "../notan_audio", version = "0.9.3", optional = true }
downcast-rs = "1.2.0"
indexmap = "1.9.2"
futures = "0.3.25"
Expand Down
Loading

0 comments on commit abc0a9f

Please sign in to comment.