Skip to content

Commit 61589d1

Browse files
chore: release
1 parent febff17 commit 61589d1

File tree

29 files changed

+679
-64
lines changed

29 files changed

+679
-64
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ fade-cached-incremental-areas = ["freya/fade-cached-incremental-areas"]
2727

2828
[workspace.dependencies]
2929
freya = { path = "crates/freya", version = "0.2" }
30-
freya-devtools = { path = "crates/devtools", version = "0.2" }
31-
freya-node-state = { path = "crates/state", version = "0.2" }
32-
freya-renderer = { path = "crates/renderer", version = "0.2" }
33-
freya-elements = { path = "crates/elements", version = "0.2" }
34-
freya-common = { path = "crates/common", version = "0.2" }
30+
freya-devtools = { path = "crates/devtools", version = "0.3" }
31+
freya-node-state = { path = "crates/state", version = "0.3" }
32+
freya-renderer = { path = "crates/renderer", version = "0.3" }
33+
freya-elements = { path = "crates/elements", version = "0.3" }
34+
freya-common = { path = "crates/common", version = "0.3" }
3535
freya-hooks = { path = "crates/hooks", version = "0.2" }
36-
freya-core = { path = "crates/core", version = "0.2" }
37-
freya-components = { path = "crates/components", version = "0.2" }
36+
freya-core = { path = "crates/core", version = "0.3" }
37+
freya-components = { path = "crates/components", version = "0.3" }
3838
freya-testing = { path = "crates/testing", version = "0.2" }
39-
freya-engine = { path = "crates/engine", version = "0.2" }
40-
torin = { path = "crates/torin", version = "0.2" }
39+
freya-engine = { path = "crates/engine", version = "0.3" }
40+
torin = { path = "crates/torin", version = "0.3" }
4141

4242
freya-native-core-macro = { path = "crates/native-core-macro", version = "0.2" }
43-
freya-native-core = { path = "crates/native-core", version = "0.2" }
43+
freya-native-core = { path = "crates/native-core", version = "0.3" }
4444

4545
dioxus = { version = "0.5", default-features = false, features = ["macro", "signals", "hooks"]}
4646
dioxus-rsx = { version = "0.5", features = ["hot_reload"] }

crates/common/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/marc2332/freya/compare/freya-common-v0.2.1...freya-common-v0.3.0) - 2024-09-11
11+
12+
### Added
13+
14+
- Incremental Accessibility Tree ([#853](https://github.com/marc2332/freya/pull/853))
15+
- `PluginHandle` ([#793](https://github.com/marc2332/freya/pull/793))
16+
- `winit` v0.30.0 + `glutin-winit` v0.5.0 + `accesskit` v0.14.0 + `accesskit_winit` v0.20.0 ([#598](https://github.com/marc2332/freya/pull/598))
17+
- Queued focus ([#650](https://github.com/marc2332/freya/pull/650))
18+
- Revamp internal text selection ([#647](https://github.com/marc2332/freya/pull/647))
19+
- `WithWindow` event ([#626](https://github.com/marc2332/freya/pull/626))
20+
- Close app with `use_platform` ([#613](https://github.com/marc2332/freya/pull/613))
21+
- Add window drag area ([#597](https://github.com/marc2332/freya/pull/597))
22+
23+
### Other
24+
25+
- Resolve conflicts
26+
- Simplify the `VirtualDOM` polling ([#729](https://github.com/marc2332/freya/pull/729))
27+
- `rustfmt.toml` ([#689](https://github.com/marc2332/freya/pull/689))
28+
- release-plz.toml
29+
- Only release crates under /crates
30+
- Rust 1.78 ([#600](https://github.com/marc2332/freya/pull/600))

crates/common/Cargo.toml

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
1-
[package]
2-
name = "freya-common"
3-
description = "Internal common utilities for Freya."
4-
version = "0.2.1"
5-
edition = "2021"
6-
license = "MIT"
7-
authors = ["Marc Espín <[email protected]>"]
8-
readme = "../../readme.md"
9-
homepage = "https://freyaui.dev/"
10-
repository = "https://github.com/marc2332/freya"
11-
keywords = ["gui", "ui", "desktop", "skia", "dioxus"]
12-
categories = ["gui", "asynchronous"]
13-
14-
[package.metadata.docs.rs]
15-
features = ["freya-engine/mocked-engine"]
16-
17-
[features]
18-
skia-engine = ["freya-engine/skia-engine"]
19-
20-
[dependencies]
21-
torin = { workspace = true }
22-
23-
dioxus-core = { workspace = true }
24-
25-
accesskit = { workspace = true }
26-
winit = { workspace = true }
27-
freya-engine = { workspace = true }
28-
freya-native-core = { workspace = true }
29-
rustc-hash= { workspace = true }
30-
31-
itertools = "0.13.0"
32-
uuid = { workspace = true }
33-
34-
35-
[dev-dependencies]
36-
dioxus = { workspace = true }
37-
freya = { path = "../freya" }
38-
freya-testing = { path = "../testing" }
39-
tokio = { workspace = true }
1+
[package]
2+
name = "freya-common"
3+
description = "Internal common utilities for Freya."
4+
version = "0.3.0"
5+
edition = "2021"
6+
license = "MIT"
7+
authors = ["Marc Espín <[email protected]>"]
8+
readme = "../../readme.md"
9+
homepage = "https://freyaui.dev/"
10+
repository = "https://github.com/marc2332/freya"
11+
keywords = ["gui", "ui", "desktop", "skia", "dioxus"]
12+
categories = ["gui", "asynchronous"]
13+
14+
[package.metadata.docs.rs]
15+
features = ["freya-engine/mocked-engine"]
16+
17+
[features]
18+
skia-engine = ["freya-engine/skia-engine"]
19+
20+
[dependencies]
21+
torin = { workspace = true }
22+
23+
dioxus-core = { workspace = true }
24+
25+
accesskit = { workspace = true }
26+
winit = { workspace = true }
27+
freya-engine = { workspace = true }
28+
freya-native-core = { workspace = true }
29+
rustc-hash= { workspace = true }
30+
31+
itertools = "0.13.0"
32+
uuid = { workspace = true }
33+
34+
35+
[dev-dependencies]
36+
dioxus = { workspace = true }
37+
freya = { path = "../freya" }
38+
freya-testing = { path = "../testing" }
39+
tokio = { workspace = true }

crates/components/CHANGELOG.md

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/marc2332/freya/compare/freya-components-v0.2.1...freya-components-v0.3.0) - 2024-09-11
11+
12+
### Added
13+
14+
- Rename `mouseover` to `mousemove` ([#865](https://github.com/marc2332/freya/pull/865))
15+
- Ergonomic improvements in ScrollView ([#858](https://github.com/marc2332/freya/pull/858))
16+
- Testing events utils ([#864](https://github.com/marc2332/freya/pull/864))
17+
- Improved nodes events states ([#859](https://github.com/marc2332/freya/pull/859))
18+
- Refreshed theme colors ([#856](https://github.com/marc2332/freya/pull/856))
19+
- Nicer Switch ([#848](https://github.com/marc2332/freya/pull/848))
20+
- Optional size for import_svg
21+
- Support extra routes in `ActivableRoute`
22+
- website example ([#839](https://github.com/marc2332/freya/pull/839))
23+
- `spacing` attribute ([#834](https://github.com/marc2332/freya/pull/834))
24+
- `PluginHandle` ([#793](https://github.com/marc2332/freya/pull/793))
25+
- Dropdown layout improvements and new width theme option
26+
- Support percentage of auto in layout ([#784](https://github.com/marc2332/freya/pull/784))
27+
- `import_svg` macro ([#790](https://github.com/marc2332/freya/pull/790))
28+
- Scroll controller ([#772](https://github.com/marc2332/freya/pull/772))
29+
- Move `shadow` of `Input` to `InputTheme` ([#781](https://github.com/marc2332/freya/pull/781))
30+
- Panic when an attribute has a wrongly-formatted value, but only in debug builds to easily spot bugs ([#759](https://github.com/marc2332/freya/pull/759))
31+
- Change the wheels scroll based on the direction ([#751](https://github.com/marc2332/freya/pull/751))
32+
- `BottomTab` component ([#747](https://github.com/marc2332/freya/pull/747))
33+
- Animated router transitions ([#745](https://github.com/marc2332/freya/pull/745))
34+
- Improve layout of `Button` component
35+
- Render one more item in VirtualScrollView for smooth scrolling ([#723](https://github.com/marc2332/freya/pull/723))
36+
- Use System fonts ([#661](https://github.com/marc2332/freya/pull/661))
37+
- Signal-based reactivity for `use_canvas` ([#693](https://github.com/marc2332/freya/pull/693))
38+
- Expose scale factor ([#607](https://github.com/marc2332/freya/pull/607))
39+
- Tree builder utilities for components ([#681](https://github.com/marc2332/freya/pull/681))
40+
- Tab and Tabsbar components ([#673](https://github.com/marc2332/freya/pull/673))
41+
- Support nested routes in `ActivableRoute` ([#675](https://github.com/marc2332/freya/pull/675))
42+
- Add backward compatibility for onclick event handler in Button
43+
- `onpress` event for `Button` ([#601](https://github.com/marc2332/freya/pull/601))
44+
- `use_preferred_theme` ([#631](https://github.com/marc2332/freya/pull/631))
45+
- Text dragging with shift and cursor ([#642](https://github.com/marc2332/freya/pull/642))
46+
- Improved special text editing support ([#622](https://github.com/marc2332/freya/pull/622))
47+
- `WithWindow` event ([#626](https://github.com/marc2332/freya/pull/626))
48+
- `placeholder` for Input ([#616](https://github.com/marc2332/freya/pull/616))
49+
- Animated `VirtualScrollView` ([#604](https://github.com/marc2332/freya/pull/604))
50+
- Add window drag area ([#597](https://github.com/marc2332/freya/pull/597))
51+
- Close popup with esc key ([#594](https://github.com/marc2332/freya/pull/594))
52+
53+
### Fixed
54+
55+
- Small devtool fixes
56+
- Better input click handling
57+
- Force the dropdown items vertically ([#827](https://github.com/marc2332/freya/pull/827))
58+
- Consider corner radius for events and overflow clipping ([#768](https://github.com/marc2332/freya/pull/768))
59+
- *(deps)* update all non-major dependencies ([#578](https://github.com/marc2332/freya/pull/578))
60+
- Small fixes for Tabs
61+
- Proper accessibility reactivity ([#648](https://github.com/marc2332/freya/pull/648))
62+
- `WindowDragArea` component hanging on non-left click. ([#625](https://github.com/marc2332/freya/pull/625))
63+
64+
### Other
65+
66+
- Fix cargo clippy
67+
- Merge branch 'main' into feat/incremental-rendering
68+
- Add opengl_rtt example. ([#813](https://github.com/marc2332/freya/pull/813))
69+
- Increase Sidebar width
70+
- Clean up Tabs components
71+
- `rustfmt.toml` ([#689](https://github.com/marc2332/freya/pull/689))
72+
- Run clippy in tests and examples
73+
- release-plz.toml
74+
- Only release crates under /crates
75+
- Rust 1.78 ([#600](https://github.com/marc2332/freya/pull/600))

crates/components/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-components"
33
description = "Components library desgined for Freya."
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/core/CHANGELOG.md

Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/marc2332/freya/compare/freya-core-v0.2.1...freya-core-v0.3.0) - 2024-09-11
11+
12+
### Added
13+
14+
- Rename `mouseover` to `mousemove` ([#865](https://github.com/marc2332/freya/pull/865))
15+
- infer accesskit properties from node state ([#855](https://github.com/marc2332/freya/pull/855))
16+
- Testing events utils ([#864](https://github.com/marc2332/freya/pull/864))
17+
- Improved nodes events states ([#859](https://github.com/marc2332/freya/pull/859))
18+
- Incremental Accessibility Tree ([#853](https://github.com/marc2332/freya/pull/853))
19+
- `spacing` attribute ([#834](https://github.com/marc2332/freya/pull/834))
20+
- `PluginHandle` ([#793](https://github.com/marc2332/freya/pull/793))
21+
- Ignore unnecessary dioxus vdom mutations ([#821](https://github.com/marc2332/freya/pull/821))
22+
- Avoid copying images when rendering ([#808](https://github.com/marc2332/freya/pull/808))
23+
- Add missing gradient functions ([#776](https://github.com/marc2332/freya/pull/776))
24+
- Support `space-between`/`space-around`/`space-evenly` alignments ([#758](https://github.com/marc2332/freya/pull/758))
25+
- Use System fonts ([#661](https://github.com/marc2332/freya/pull/661))
26+
- `highlight_mode` attribute ([#704](https://github.com/marc2332/freya/pull/704))
27+
- Built-in vertical alignment for text ([#701](https://github.com/marc2332/freya/pull/701))
28+
- Expose scale factor ([#607](https://github.com/marc2332/freya/pull/607))
29+
- Reactive scale factor ([#606](https://github.com/marc2332/freya/pull/606))
30+
- `winit` v0.30.0 + `glutin-winit` v0.5.0 + `accesskit` v0.14.0 + `accesskit_winit` v0.20.0 ([#598](https://github.com/marc2332/freya/pull/598))
31+
- Revamp internal text selection ([#647](https://github.com/marc2332/freya/pull/647))
32+
- Reactive Window data ([#637](https://github.com/marc2332/freya/pull/637))
33+
- Reactive Platform data ([#635](https://github.com/marc2332/freya/pull/635))
34+
- `use_preferred_theme` ([#631](https://github.com/marc2332/freya/pull/631))
35+
36+
### Fixed
37+
38+
- Do a fullrerender when a devtools node is selected
39+
- Show missing attributes in devtools ([#801](https://github.com/marc2332/freya/pull/801))
40+
- Prevent opacity from clipping the node bounds ([#764](https://github.com/marc2332/freya/pull/764))
41+
- Consider corner radius for events and overflow clipping ([#768](https://github.com/marc2332/freya/pull/768))
42+
- Fix `unfocus` of accesibility nodes ([#755](https://github.com/marc2332/freya/pull/755))
43+
- Skip DOM Nodes loaded in the same mutations run ([#744](https://github.com/marc2332/freya/pull/744))
44+
- Invalidate layout of modified text nodes
45+
- *(deps)* update all non-major dependencies ([#578](https://github.com/marc2332/freya/pull/578))
46+
- Proper accessibility reactivity ([#648](https://github.com/marc2332/freya/pull/648))
47+
- Fix performance dropping rapidly after selecting a text for some time ([#624](https://github.com/marc2332/freya/pull/624))
48+
- Out of sync element ids on events ([#609](https://github.com/marc2332/freya/pull/609))
49+
50+
### Other
51+
52+
- Be more generous for rotated dirty areas
53+
- Accessibility logs
54+
- Merge branch 'main' into feat/incremental-rendering
55+
- Add opengl_rtt example. ([#813](https://github.com/marc2332/freya/pull/813))
56+
- *(deps)* update all non-major dependencies ([#749](https://github.com/marc2332/freya/pull/749))
57+
- Revert part of [#731](https://github.com/marc2332/freya/pull/731)
58+
- Rethink mutations writer ([#731](https://github.com/marc2332/freya/pull/731))
59+
- Reorganize `freya-renderer` ([#715](https://github.com/marc2332/freya/pull/715))
60+
- Rename node states to follow an unified naming ([#713](https://github.com/marc2332/freya/pull/713))
61+
- Move rendering to `freya-core` ([#712](https://github.com/marc2332/freya/pull/712))
62+
- `rustfmt.toml` ([#689](https://github.com/marc2332/freya/pull/689))
63+
- Run clippy in tests and examples
64+
- process all queued keyboard events at once ([#629](https://github.com/marc2332/freya/pull/629))
65+
- release-plz.toml
66+
- Only release crates under /crates

crates/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-core"
33
description = "Internal core funcionatilies for Freya."
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/devtools/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/marc2332/freya/compare/freya-devtools-v0.2.1...freya-devtools-v0.3.0) - 2024-09-11
11+
12+
### Added
13+
14+
- Ergonomic improvements in ScrollView ([#858](https://github.com/marc2332/freya/pull/858))
15+
- Add missing gradient functions ([#776](https://github.com/marc2332/freya/pull/776))
16+
- Small UI improvements in the devtools
17+
- Tree-like explorer for devtools ([#684](https://github.com/marc2332/freya/pull/684))
18+
- Tab and Tabsbar components ([#673](https://github.com/marc2332/freya/pull/673))
19+
- More reliable devtools ([#667](https://github.com/marc2332/freya/pull/667))
20+
- Persisted devtools routing ([#657](https://github.com/marc2332/freya/pull/657))
21+
- `use_preferred_theme` ([#631](https://github.com/marc2332/freya/pull/631))
22+
23+
### Fixed
24+
25+
- Do a fullrerender when a devtools node is selected
26+
- Small devtool fixes
27+
- Show missing attributes in devtools ([#801](https://github.com/marc2332/freya/pull/801))
28+
29+
### Other
30+
31+
- Clean up Tabs components
32+
- `rustfmt.toml` ([#689](https://github.com/marc2332/freya/pull/689))
33+
- release-plz.toml
34+
- Only release crates under /crates

crates/devtools/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "freya-devtools"
33
description = "Devtools panel integration for Freya."
4-
version = "0.2.1"
4+
version = "0.3.0"
55
edition = "2021"
66
license = "MIT"
77
authors = ["Marc Espín <[email protected]>"]

crates/elements/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.3.0](https://github.com/marc2332/freya/compare/freya-elements-v0.2.0...freya-elements-v0.3.0) - 2024-09-11
11+
12+
### Added
13+
14+
- Rename `mouseover` to `mousemove` ([#865](https://github.com/marc2332/freya/pull/865))
15+
- Improved nodes events states ([#859](https://github.com/marc2332/freya/pull/859))
16+
- `spacing` attribute ([#834](https://github.com/marc2332/freya/pull/834))
17+
- Support `space-between`/`space-around`/`space-evenly` alignments ([#758](https://github.com/marc2332/freya/pull/758))
18+
- Use System fonts ([#661](https://github.com/marc2332/freya/pull/661))
19+
- `highlight_mode` attribute ([#704](https://github.com/marc2332/freya/pull/704))
20+
- Built-in vertical alignment for text ([#701](https://github.com/marc2332/freya/pull/701))
21+
- `onpress` event for `Button` ([#601](https://github.com/marc2332/freya/pull/601))
22+
23+
### Fixed
24+
25+
- Small typos
26+
27+
### Other
28+
29+
- Rename some events files
30+
- Documents editor example ([#846](https://github.com/marc2332/freya/pull/846))
31+
- Fix color syntax link in background.md
32+
- `rustfmt.toml` ([#689](https://github.com/marc2332/freya/pull/689))
33+
- release-plz.toml
34+
- Only release crates under /crates

0 commit comments

Comments
 (0)