-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release: Prepare v0.1 * bump freya version * minor tweaks * update crates * tweak * use_editable fix * improvements * fixes * feat: Default use_camera's FPS to 30 * chore: Use crab emoji * chore: Update deps * chore: Fix readme typo * chore: Remove unused deps of layout crate * chore: Fix core dev path of freya-testing * chore: Fix core dev path of freya-testing * chore: Fix core dev path of freya-testing
- Loading branch information
Showing
34 changed files
with
176 additions
and
168 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
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Devtools | ||
|
||
Devtools can be enabled by adding the `devtools` to Freya. | ||
|
||
|
||
```toml | ||
// Cargo.toml | ||
|
||
[dependencies] | ||
freya = { version = "0.1", features = ["devtools"] } | ||
|
||
``` | ||
|
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
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
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
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,15 +1,15 @@ | ||
[package] | ||
name = "freya-common" | ||
description = "Cross-platform GUI Library." | ||
description = "Internal common utilities for Freya." | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["Marc Espín <[email protected]>"] | ||
readme = "../readme.md" | ||
homepage = "https://github.com/marc2332/freya" | ||
homepage = "https://freyaui.dev/" | ||
repository = "https://github.com/marc2332/freya" | ||
keywords = ["gui", "ui", "cross-platform", "dioxus", "skia", "graphics"] | ||
categories = ["GUI"] | ||
keywords = ["gui", "ui", "desktop", "skia", "dioxus"] | ||
categories = ["gui", "asynchronous"] | ||
|
||
[dependencies] | ||
torin = { workspace = 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,15 +1,15 @@ | ||
[package] | ||
name = "freya-components" | ||
description = "Cross-platform GUI Library." | ||
description = "Components library desgined for Freya." | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["Marc Espín <[email protected]>"] | ||
readme = "../readme.md" | ||
homepage = "https://github.com/marc2332/freya" | ||
homepage = "https://freyaui.dev/" | ||
repository = "https://github.com/marc2332/freya" | ||
keywords = ["gui", "ui", "cross-platform", "dioxus", "skia", "graphics"] | ||
categories = ["GUI"] | ||
keywords = ["gui", "ui", "desktop", "skia", "dioxus"] | ||
categories = ["gui", "asynchronous"] | ||
|
||
[dependencies] | ||
freya-elements = { workspace = true } | ||
|
@@ -30,5 +30,5 @@ open = "1" | |
reqwest = { version = "0.11.13", features = ["json"] } | ||
|
||
[dev-dependencies] | ||
freya = { workspace = true } | ||
freya-testing = { workspace = true } | ||
freya = { path = "../freya" } | ||
freya-testing = { path = "../testing" } |
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
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,15 +1,15 @@ | ||
[package] | ||
name = "freya-core" | ||
description = "Cross-platform GUI Library." | ||
description = "Internal core funcionatilies for Freya." | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT" | ||
authors = ["Marc Espín <[email protected]>"] | ||
readme = "../readme.md" | ||
homepage = "https://github.com/marc2332/freya" | ||
homepage = "https://freyaui.dev/" | ||
repository = "https://github.com/marc2332/freya" | ||
keywords = ["gui", "ui", "cross-platform", "dioxus", "skia", "graphics"] | ||
categories = ["GUI"] | ||
keywords = ["gui", "ui", "desktop", "skia", "dioxus"] | ||
categories = ["gui", "asynchronous"] | ||
|
||
[features] | ||
devtools = [] | ||
|
@@ -43,5 +43,5 @@ tracing = { workspace = true } | |
|
||
[dev-dependencies] | ||
dioxus = { workspace = true } | ||
freya = { workspace = true } | ||
freya-testing = { workspace = true } | ||
freya = { path = "../freya" } | ||
freya-testing = { path = "../testing" } |
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
Oops, something went wrong.