From f42ca65931ea21d390797bef3bab5f647a6cacb1 Mon Sep 17 00:00:00 2001 From: Miles Murgaw Date: Fri, 2 Aug 2024 13:46:18 -0400 Subject: [PATCH] Fix Links & Add Link Checker (#2769) * feat: link checker --- .github/workflows/main.yml | 19 ++ lychee.toml | 6 + packages/autofmt/README.md | 4 +- packages/check/README.md | 4 +- packages/config-macro/README.md | 6 +- packages/core-macro/CHANGELOG.md | 296 +++++++++--------- packages/core-macro/README.md | 4 +- packages/desktop/CHANGELOG.md | 248 +++++++-------- packages/desktop/README.md | 4 +- packages/fullstack/README.md | 10 +- packages/hooks/CHANGELOG.md | 206 ++++++------- packages/hooks/README.md | 4 +- packages/hot-reload/README.md | 6 +- packages/html/CHANGELOG.md | 136 ++++----- packages/html/README.md | 4 +- packages/interpreter/README.md | 4 +- packages/liveview/CHANGELOG.md | 32 +- packages/liveview/README.md | 4 +- packages/mobile/CHANGELOG.md | 68 ++--- packages/mobile/README.md | 4 +- packages/router/CHANGELOG.md | 136 ++++----- packages/router/README.md | 4 +- packages/rsx-rosetta/README.md | 4 +- packages/rsx/README.md | 4 +- packages/ssr/CHANGELOG.md | 180 +++++------ packages/static-generation/README.md | 10 +- packages/web/CHANGELOG.md | 440 +++++++++++++-------------- packages/web/README.md | 4 +- translations/ja-jp/README.md | 2 +- translations/pt-br/README.md | 21 +- 30 files changed, 949 insertions(+), 925 deletions(-) create mode 100644 lychee.toml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ca79f0cee..ce4f57b27 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -159,6 +159,25 @@ jobs: # todo: re-enable warnings # RUSTDOCFLAGS: --cfg docsrs -Dwarnings + # Check for invalid links in the repository + link-check: + if: github.event.pull_request.draft == false + name: Check For Invalid Links + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Restore lychee cache + uses: actions/cache@v3 + with: + path: .lycheecache + key: cache-lychee-${{ github.sha }} + restore-keys: cache-lychee- + - name: Run lychee + uses: lycheeverse/lychee-action@v1 + with: + args: --base . --config ./lychee.toml './**/*.md' + fail: true + check: if: github.event.pull_request.draft == false name: Check diff --git a/lychee.toml b/lychee.toml new file mode 100644 index 000000000..58f7a7852 --- /dev/null +++ b/lychee.toml @@ -0,0 +1,6 @@ +# This is the configuration file for lychee, a link validator. +exclude = ['file:///', 'https://github.com/DioxusLabs/dioxus/commit'] +exclude_path = ['target'] +no_progress = false +cache = true +max_cache_age = "10d" \ No newline at end of file diff --git a/packages/autofmt/README.md b/packages/autofmt/README.md index 0de084d03..3892f33ac 100644 --- a/packages/autofmt/README.md +++ b/packages/autofmt/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-autofmt.svg [crates-url]: https://crates.io/crates/dioxus-autofmt [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -36,7 +36,7 @@ This is done manually with a via set of formatting rules. The output is not guar This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/check/README.md b/packages/check/README.md index 08257a896..88b9989ab 100644 --- a/packages/check/README.md +++ b/packages/check/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-autofmt.svg [crates-url]: https://crates.io/crates/dioxus-check [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -32,7 +32,7 @@ This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/config-macro/README.md b/packages/config-macro/README.md index f7496a820..06dbaaea2 100644 --- a/packages/config-macro/README.md +++ b/packages/config-macro/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-config-macro.svg [crates-url]: https://crates.io/crates/dioxus-config-macro [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -16,7 +16,7 @@ [Website](https://dioxuslabs.com) | [Guides](https://dioxuslabs.com/learn/0.5) | -[API Docs](https://docs.rs/dioxus-config-macro/latest/dioxus_core_macro) | +[API Docs](https://docs.rs/dioxus-config-macro/latest/dioxus_config_macro/) | [Chat](https://discord.gg/XgGxMSkvUM) ## Overview @@ -32,7 +32,7 @@ This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/core-macro/CHANGELOG.md b/packages/core-macro/CHANGELOG.md index cf1143e1e..b29ea3e93 100644 --- a/packages/core-macro/CHANGELOG.md +++ b/packages/core-macro/CHANGELOG.md @@ -31,15 +31,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Merge pull request #95 from DioxusLabs/jk/filedragindrop ([`ca0dd4a`](https://github.comgit//DioxusLabs/dioxus/commit/ca0dd4aa7192d483a195d420363f39d771f3e471)) - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) - - flatten props attrs ([`d237271`](https://github.comgit//DioxusLabs/dioxus/commit/d2372717bd01fcff50af0572360e3f763d4c869d)) - - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.comgit//DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) - - detection of f-string formatting in components ([`90abd9c`](https://github.comgit//DioxusLabs/dioxus/commit/90abd9c9a08c165384fae9c1f7c3fd098d512c48)) - - Enable clippy ([`b6903bf`](https://github.comgit//DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) - - Merge pull request #107 from autarch/autarch/half-assed-router ([`8d3ac3f`](https://github.comgit//DioxusLabs/dioxus/commit/8d3ac3ff148aef9d10a393eda453a11c1e882f58)) - - Merge pull request #127 from DioxusLabs/jk/handler-tweak ([`5bce294`](https://github.comgit//DioxusLabs/dioxus/commit/5bce294a86941090660b1cfd87809a2b0b76d2ce)) - - add "optional" flag for props ([`47bc4e4`](https://github.comgit//DioxusLabs/dioxus/commit/47bc4e4a44a7d08d4f42102d13f0766d9d6bf358)) + - Merge pull request #95 from DioxusLabs/jk/filedragindrop ([`ca0dd4a`](https://github.com/DioxusLabs/dioxus/commit/ca0dd4aa7192d483a195d420363f39d771f3e471)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - flatten props attrs ([`d237271`](https://github.com/DioxusLabs/dioxus/commit/d2372717bd01fcff50af0572360e3f763d4c869d)) + - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.com/DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) + - detection of f-string formatting in components ([`90abd9c`](https://github.com/DioxusLabs/dioxus/commit/90abd9c9a08c165384fae9c1f7c3fd098d512c48)) + - Enable clippy ([`b6903bf`](https://github.com/DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) + - Merge pull request #107 from autarch/autarch/half-assed-router ([`8d3ac3f`](https://github.com/DioxusLabs/dioxus/commit/8d3ac3ff148aef9d10a393eda453a11c1e882f58)) + - Merge pull request #127 from DioxusLabs/jk/handler-tweak ([`5bce294`](https://github.com/DioxusLabs/dioxus/commit/5bce294a86941090660b1cfd87809a2b0b76d2ce)) + - add "optional" flag for props ([`47bc4e4`](https://github.com/DioxusLabs/dioxus/commit/47bc4e4a44a7d08d4f42102d13f0766d9d6bf358))
## v0.1.6 (2022-01-08) @@ -112,145 +112,145 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-core-macro v0.1.6 ([`db0a5bd`](https://github.comgit//DioxusLabs/dioxus/commit/db0a5bd6ec93803cddb3c6fda4172257b9c301c6)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - component pass thru events ([`c439b0a`](https://github.comgit//DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.comgit//DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) - - Merge pull request #79 from DioxusLabs/jk/better_rehydration ([`34b0cb5`](https://github.comgit//DioxusLabs/dioxus/commit/34b0cb500bb59b5c9190cd00a46c27609774c327)) - - Merge pull request #78 from higumachan/patch-1 ([`c9aaa96`](https://github.comgit//DioxusLabs/dioxus/commit/c9aaa9643229199ff061140dfbb323b50d035fd3)) - - add prevent default attribute and upgrade router ([`427b126`](https://github.comgit//DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) - - memoize dom in the prescence of identical components ([`cb2782b`](https://github.comgit//DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) - - Fix typo "misisng" that occurred in several error messages ([`51c177b`](https://github.comgit//DioxusLabs/dioxus/commit/51c177be9e68d55c0b74f9a53d86a0d59d83c60e)) - - Fix reference to "html!" macro in "rsx!" macro docs ([`706b0e2`](https://github.comgit//DioxusLabs/dioxus/commit/706b0e21a50c66e1056f1338e4249b3faf1673ab)) - - new versions of everything ([`4ea5c99`](https://github.comgit//DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) - - attempt to fix ice ([`2481cd0`](https://github.comgit//DioxusLabs/dioxus/commit/2481cd05c2371b4a23b03d7710598708b1b2e491)) - - tests ([`bd341f5`](https://github.comgit//DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) - - update core, core-macro, and html ([`f9b9bb9`](https://github.comgit//DioxusLabs/dioxus/commit/f9b9bb9c0c2c55f55d2d6860e3d2d986debd6412)) - - remove all usages of static closure syntax and update readme ([`cafb7df`](https://github.comgit//DioxusLabs/dioxus/commit/cafb7df736e9366c2acd99b5571cd4b7894ea595)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.comgit//DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) - - polish some more things ([`1496102`](https://github.comgit//DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) - - more API updates ([`a4f280d`](https://github.comgit//DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) - - upgrade hooks ([`b3ac2ee`](https://github.comgit//DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) - - bump macro crate ([`639f9f5`](https://github.comgit//DioxusLabs/dioxus/commit/639f9f53224a1a8a6699d6bbb5f46f328f645031)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - upgrade to new version of dioxus core. ([`cda759c`](https://github.comgit//DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) - - enable children properly ([`b997b8e`](https://github.comgit//DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) - - docs ([`8814977`](https://github.comgit//DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) - - polish ([`8bf57dc`](https://github.comgit//DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) - - really big bug around hooks ([`52c7154`](https://github.comgit//DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - rename ([`36d89be`](https://github.comgit//DioxusLabs/dioxus/commit/36d89beb34821694cb0afb546d3b0cb4e01aaae1)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - updates to router ([`bab21a0`](https://github.comgit//DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) - - add router ([`d298b62`](https://github.comgit//DioxusLabs/dioxus/commit/d298b626d3ae21a39a8ec4426373369ac94edf9f)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - upgrade syntax ([`fd93ee8`](https://github.comgit//DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.comgit//DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - pull children out of component definition ([`2cf90b6`](https://github.comgit//DioxusLabs/dioxus/commit/2cf90b6903411e42f01a801f89037686194ee068)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - bubbling in progress ([`a21020e`](https://github.comgit//DioxusLabs/dioxus/commit/a21020ea575e467ba0d608737269fe1b0792dba7)) - - cleanuup ([`84fd0c6`](https://github.comgit//DioxusLabs/dioxus/commit/84fd0c616252bf29cd665782258530032b54d13a)) - - clippy happy on macro ([`e1c858d`](https://github.comgit//DioxusLabs/dioxus/commit/e1c858dda5c937a56f402bfb3e8b90baf34b84f1)) - - remove bump ([`fcc6738`](https://github.comgit//DioxusLabs/dioxus/commit/fcc6738f1703006d7678f31a39bbf6d59464a7e1)) - - fix some bugs around the rsx macro ([`339e450`](https://github.comgit//DioxusLabs/dioxus/commit/339e450027b4a5d2e1317e13863cd1b2e7ab5853)) - - full html support ([`79503f1`](https://github.comgit//DioxusLabs/dioxus/commit/79503f15c5db04fa04575c8735941a2e3a75030b)) - - remove HTML macro and add custom fields ([`9f7eb0f`](https://github.comgit//DioxusLabs/dioxus/commit/9f7eb0f6002156d3e6e14ea2cb24829133b531c5)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - use annotation method from rust/58052 to fix closure lifetimes ([`27d8919`](https://github.comgit//DioxusLabs/dioxus/commit/27d891934a70424b45e6278b7e2baaa2d1b78b35)) - - worked backwards a bit and got it slightly figured out ([`9ee2bfb`](https://github.comgit//DioxusLabs/dioxus/commit/9ee2bfb010ce90ec97e93e173c31aab281db32c4)) - - massage lifetimes ([`9726a06`](https://github.comgit//DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) - - book documentation ([`16dbf4a`](https://github.comgit//DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) - - messed up how lifetimes worked, need to render once per component ([`ba9e1db`](https://github.comgit//DioxusLabs/dioxus/commit/ba9e1dbb8fa24048a6c9ccef8a8722688226a845)) - - major cleanups to scheduler ([`2933e4b`](https://github.comgit//DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) - - move everything over to a stack dst ([`0e9d5fc`](https://github.comgit//DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) - - remove warnings on core macero ([`6587224`](https://github.comgit//DioxusLabs/dioxus/commit/6587224debffa8e8d5282dc3f120abbaa96f552b)) - - mutations ([`fac4233`](https://github.comgit//DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) - - bottom up dropping ([`f2334c1`](https://github.comgit//DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) - - fill out the snippets ([`6051b0e`](https://github.comgit//DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) - - amazingly awesome error handling ([`4a72b31`](https://github.comgit//DioxusLabs/dioxus/commit/4a72b3140bd244da602deada1eeecded65ff5848)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - docs, html! macro, more ([`caf772c`](https://github.comgit//DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) - - get keyed diffing compiling ([`0a0be95`](https://github.comgit//DioxusLabs/dioxus/commit/0a0be95c3e58dc065409f02f703b82700c1003f8)) - - changes to scheduler ([`098d382`](https://github.comgit//DioxusLabs/dioxus/commit/098d3821ed89ad38d99077a6556b48a7e91fc3fc)) - - clean up warnings ([`b32e261`](https://github.comgit//DioxusLabs/dioxus/commit/b32e2611e37b17c2371ffb10cf1ac647f017d917)) - - mvoe away from compound context ([`a2c7d17`](https://github.comgit//DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) - - wire up event delegator for webview ([`7dfe89c`](https://github.comgit//DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) - - basic support for scheduled rendering ([`c52af22`](https://github.comgit//DioxusLabs/dioxus/commit/c52af221f755601a9e826ffc2c355def138999d0)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - change in cx to cx ([`9971ff2`](https://github.comgit//DioxusLabs/dioxus/commit/9971ff215db6f771b7ec1cae2517c85d47d38622)) - - move things into a "shared" object ([`f644d7c`](https://github.comgit//DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) - - apply formatting ([`a85b8c4`](https://github.comgit//DioxusLabs/dioxus/commit/a85b8c4b6be83f7aba06714b6a1ff0aa5f2ee729)) - - more upgades to html parser ([`22f894e`](https://github.comgit//DioxusLabs/dioxus/commit/22f894e6b98073bffa39f08b890071ffc00b8d49)) - - serious refactor with const generics ([`160d86a`](https://github.comgit//DioxusLabs/dioxus/commit/160d86abbe1b325e3123202aef29025dcd96f4eb)) - - ....sigh..... so the diffing algorithm is robust ([`68ed1c0`](https://github.comgit//DioxusLabs/dioxus/commit/68ed1c04e7e773f9e6c0a5148f0ea89b97b6784e)) - - add aria ([`4091846`](https://github.comgit//DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) - - move examples around ([`304259d`](https://github.comgit//DioxusLabs/dioxus/commit/304259d8186d1d34224a74c95f4fd7d14126b499)) - - beaf up the use_state hook ([`e4cdb64`](https://github.comgit//DioxusLabs/dioxus/commit/e4cdb645aad800484b19ec35ba1f8bb9ccf71d12)) - - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.comgit//DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2)) - - move some examples around ([`98a0933`](https://github.comgit//DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) - - fix issues with lifetimes ([`a38a81e`](https://github.comgit//DioxusLabs/dioxus/commit/a38a81e1290375cae685f7c49d3745e4298fab26)) - - namespaced attributes ([`22e659c`](https://github.comgit//DioxusLabs/dioxus/commit/22e659c2bd7797ca5a822180aca0cb5d950c5287)) - - groundwork for noderefs ([`c1afeba`](https://github.comgit//DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) - - add edits back! and more webview support! ([`904b26f`](https://github.comgit//DioxusLabs/dioxus/commit/904b26f7111c3fc66400744ff6192e4b20bf6d74)) - - enable more diffing ([`e8f29a8`](https://github.comgit//DioxusLabs/dioxus/commit/e8f29a8f8ac56020bee0048021efa52547307a77)) - - two calculator examples ([`b5e5ef1`](https://github.comgit//DioxusLabs/dioxus/commit/b5e5ef171aa9f8986fb4ab04d793eb63f557c4ae)) - - examples ([`d9e6d09`](https://github.comgit//DioxusLabs/dioxus/commit/d9e6d0925b30690212d1d690dfba288f1a694a27)) - - wip ([`952a91d`](https://github.comgit//DioxusLabs/dioxus/commit/952a91d5408aaf789b496f11d01c3b3f7fcf9059)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - rethinking stack machine ([`62ae5d3`](https://github.comgit//DioxusLabs/dioxus/commit/62ae5d3bb94cb9ead030ae0b39d9d9bc2b8b4532)) - - more work on docs ([`daa9bd8`](https://github.comgit//DioxusLabs/dioxus/commit/daa9bd82c365763fe240528c7df222d230bce613)) - - some cleanup and documentation ([`517d7f1`](https://github.comgit//DioxusLabs/dioxus/commit/517d7f14957c4dae9fc894bfbdcd00a955d09f20)) - - docs ([`f5683a2`](https://github.comgit//DioxusLabs/dioxus/commit/f5683a23464992ecace463a61414795b5a2c58c8)) - - pre vnodes instead of vnode ([`fe6938c`](https://github.comgit//DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) - - props memoization is more powerful ([`73047fe`](https://github.comgit//DioxusLabs/dioxus/commit/73047fe95678d50fcfd62a4ace7c6b406c5304e1)) - - merge in some code from the other branch ([`7790750`](https://github.comgit//DioxusLabs/dioxus/commit/7790750349b40055673a0ec16074a0426b84d3b3)) - - move the rsx macro around ([`50c8b93`](https://github.comgit//DioxusLabs/dioxus/commit/50c8b93aade1bfa83a091fb51ee48638507f89b0)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - move to static props ([`c1fd848`](https://github.comgit//DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) - - more progress on parity docs. ([`c5089ba`](https://github.comgit//DioxusLabs/dioxus/commit/c5089ba3c5a8daad4de4d6257604011cc87f6ac7)) - - buff the readme and docs ([`3cfa1fe`](https://github.comgit//DioxusLabs/dioxus/commit/3cfa1fe125886787f35905ed9b05340a739bc654)) - - Todomvc in progress ([`b843dbd`](https://github.comgit//DioxusLabs/dioxus/commit/b843dbd3679abf86a34347d87fd4ce5fe9e2aca5)) - - remove old code ([`3de54d0`](https://github.comgit//DioxusLabs/dioxus/commit/3de54d0b5202aca678d485a68ef8de006a63e21b)) - - some code health ([`c28697e`](https://github.comgit//DioxusLabs/dioxus/commit/c28697e1fe3136d1835f2b663715f34aab9f4b17)) - - major overhaul to diffing ([`9810fee`](https://github.comgit//DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) - - todos ([`8c541f6`](https://github.comgit//DioxusLabs/dioxus/commit/8c541f66d5f7ef2286f2cdf9b0496a9c404471f9)) - - todomvc ([`cfa0927`](https://github.comgit//DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) - - todomvc ([`ce33031`](https://github.comgit//DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) - - more ergonomics, more examples ([`0bcff1f`](https://github.comgit//DioxusLabs/dioxus/commit/0bcff1f88e4b1a633b7a9b7c6c2e39b8bd3666c4)) - - use rsx! inline! ([`44aad27`](https://github.comgit//DioxusLabs/dioxus/commit/44aad2746c117ba9742c86a53327f4f9e96509e7)) - - building large apps, revamp macro ([`9f7f43b`](https://github.comgit//DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) - - begint to accept iterator types ([`742f150`](https://github.comgit//DioxusLabs/dioxus/commit/742f150eb3eba89913f5a0fabb229e72e2a0a5ee)) - - props now autoderives its own trait ([`b3c96a5`](https://github.comgit//DioxusLabs/dioxus/commit/b3c96a5996f434332813c737bb83ad564d91af5f)) - - staticify? ([`5ad8188`](https://github.comgit//DioxusLabs/dioxus/commit/5ad81885e499bf02ac79e0098f7956d02ee5f2e5)) - - cargo fix to clean up things ([`78d093a`](https://github.comgit//DioxusLabs/dioxus/commit/78d093a9454386397a991bd01e603e4ad554521f)) - - wire up props macro ([`37f5a7a`](https://github.comgit//DioxusLabs/dioxus/commit/37f5a7ad33e272a9e210bf480304d54ff0df0d67)) - - revert FC changes (like the old style). ([`7158bc3`](https://github.comgit//DioxusLabs/dioxus/commit/7158bc3575e180dbe8641549b040e74ae3baf80b)) - - yeet, synthetic somewhat wired up ([`d959806`](https://github.comgit//DioxusLabs/dioxus/commit/d9598066c2679d9d0b9ca0ce1d3f26110a238cd2)) - - remove FC ([`92d9521`](https://github.comgit//DioxusLabs/dioxus/commit/92d9521a73aefb620b354ae5954617109dd06e7e)) - - more cleanup ([`5a9155b`](https://github.comgit//DioxusLabs/dioxus/commit/5a9155b059acc1fb3c8b8accbeca3701ce4f0ab6)) - - add context to builder ([`cf16090`](https://github.comgit//DioxusLabs/dioxus/commit/cf16090838d127354e333dcbc0b06474835b87d6)) - - listeners now have scope information ([`fcd68e6`](https://github.comgit//DioxusLabs/dioxus/commit/fcd68e61d2400628469ba193b009e7bf1fd3acdf)) - - broken, but solved ([`cb74d70`](https://github.comgit//DioxusLabs/dioxus/commit/cb74d70f831b5510f1ee191d91eaff621ffa6256)) - - accept closures directly in handler ([`f225030`](https://github.comgit//DioxusLabs/dioxus/commit/f225030506967415a21f4af0372477cb5224ee7c)) - - wowza got it all working ([`4b8e9f4`](https://github.comgit//DioxusLabs/dioxus/commit/4b8e9f4a125b9d55439d919786f33d9d5df234e8)) - - parse custom rsx syntax ([`da00df6`](https://github.comgit//DioxusLabs/dioxus/commit/da00df66889f4fa2e39651491e08794e1fe78549)) - - update readme and examples ([`ffaf687`](https://github.comgit//DioxusLabs/dioxus/commit/ffaf6878963981860089c2362947bf77a84c9058)) - - add core macro crate ([`6a7bf3f`](https://github.comgit//DioxusLabs/dioxus/commit/6a7bf3f964150bcb8f7ba35ad285dd7deff7955c)) - - add in style crate, and abort any styligng ([`c09b71f`](https://github.comgit//DioxusLabs/dioxus/commit/c09b71f473ceeac7d37cd2b4117786350b6b11b6)) - - remove html crate ([`9dcee01`](https://github.comgit//DioxusLabs/dioxus/commit/9dcee01b335901cf2c80b453b97180e0d2551dc2)) - - add core macro crate ([`9f49ecb`](https://github.comgit//DioxusLabs/dioxus/commit/9f49ecbd95b60deb74c646f3798dfde3542c44be)) - - custom format_args for inlining variables into html templates ([`e4b1f6e`](https://github.comgit//DioxusLabs/dioxus/commit/e4b1f6ea0d0db707cf757dabf8635e9fc91a3e0f)) - - comment out examples and move lifetime in FC type ([`62d4ad5`](https://github.comgit//DioxusLabs/dioxus/commit/62d4ad58787185032100a2d25e79b70f6ec97a3c)) - - include the helper ([`07341d2`](https://github.comgit//DioxusLabs/dioxus/commit/07341d2c65dc61b90587e2e5daadf72ec82623a8)) - - Dioxus-webview ([`9c01736`](https://github.comgit//DioxusLabs/dioxus/commit/9c0173689539210d14847613f9a1694e6cb34506)) - - update fc_macro ([`28ac37a`](https://github.comgit//DioxusLabs/dioxus/commit/28ac37a8b23874c77011a46a11e6b9cbdf79ecdd)) - - dioxus frontend crate ([`4d7ac5b`](https://github.comgit//DioxusLabs/dioxus/commit/4d7ac5bb5d3aa1897c0f6c1f322aca08c0c791f0)) + - Release dioxus-core-macro v0.1.6 ([`db0a5bd`](https://github.com/DioxusLabs/dioxus/commit/db0a5bd6ec93803cddb3c6fda4172257b9c301c6)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - component pass thru events ([`c439b0a`](https://github.com/DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.com/DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) + - Merge pull request #79 from DioxusLabs/jk/better_rehydration ([`34b0cb5`](https://github.com/DioxusLabs/dioxus/commit/34b0cb500bb59b5c9190cd00a46c27609774c327)) + - Merge pull request #78 from higumachan/patch-1 ([`c9aaa96`](https://github.com/DioxusLabs/dioxus/commit/c9aaa9643229199ff061140dfbb323b50d035fd3)) + - add prevent default attribute and upgrade router ([`427b126`](https://github.com/DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) + - memoize dom in the prescence of identical components ([`cb2782b`](https://github.com/DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) + - Fix typo "misisng" that occurred in several error messages ([`51c177b`](https://github.com/DioxusLabs/dioxus/commit/51c177be9e68d55c0b74f9a53d86a0d59d83c60e)) + - Fix reference to "html!" macro in "rsx!" macro docs ([`706b0e2`](https://github.com/DioxusLabs/dioxus/commit/706b0e21a50c66e1056f1338e4249b3faf1673ab)) + - new versions of everything ([`4ea5c99`](https://github.com/DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) + - attempt to fix ice ([`2481cd0`](https://github.com/DioxusLabs/dioxus/commit/2481cd05c2371b4a23b03d7710598708b1b2e491)) + - tests ([`bd341f5`](https://github.com/DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) + - update core, core-macro, and html ([`f9b9bb9`](https://github.com/DioxusLabs/dioxus/commit/f9b9bb9c0c2c55f55d2d6860e3d2d986debd6412)) + - remove all usages of static closure syntax and update readme ([`cafb7df`](https://github.com/DioxusLabs/dioxus/commit/cafb7df736e9366c2acd99b5571cd4b7894ea595)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.com/DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) + - polish some more things ([`1496102`](https://github.com/DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) + - more API updates ([`a4f280d`](https://github.com/DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) + - upgrade hooks ([`b3ac2ee`](https://github.com/DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) + - bump macro crate ([`639f9f5`](https://github.com/DioxusLabs/dioxus/commit/639f9f53224a1a8a6699d6bbb5f46f328f645031)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - upgrade to new version of dioxus core. ([`cda759c`](https://github.com/DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) + - enable children properly ([`b997b8e`](https://github.com/DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) + - docs ([`8814977`](https://github.com/DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) + - polish ([`8bf57dc`](https://github.com/DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) + - really big bug around hooks ([`52c7154`](https://github.com/DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - rename ([`36d89be`](https://github.com/DioxusLabs/dioxus/commit/36d89beb34821694cb0afb546d3b0cb4e01aaae1)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - updates to router ([`bab21a0`](https://github.com/DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) + - add router ([`d298b62`](https://github.com/DioxusLabs/dioxus/commit/d298b626d3ae21a39a8ec4426373369ac94edf9f)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - upgrade syntax ([`fd93ee8`](https://github.com/DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.com/DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - pull children out of component definition ([`2cf90b6`](https://github.com/DioxusLabs/dioxus/commit/2cf90b6903411e42f01a801f89037686194ee068)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - bubbling in progress ([`a21020e`](https://github.com/DioxusLabs/dioxus/commit/a21020ea575e467ba0d608737269fe1b0792dba7)) + - cleanuup ([`84fd0c6`](https://github.com/DioxusLabs/dioxus/commit/84fd0c616252bf29cd665782258530032b54d13a)) + - clippy happy on macro ([`e1c858d`](https://github.com/DioxusLabs/dioxus/commit/e1c858dda5c937a56f402bfb3e8b90baf34b84f1)) + - remove bump ([`fcc6738`](https://github.com/DioxusLabs/dioxus/commit/fcc6738f1703006d7678f31a39bbf6d59464a7e1)) + - fix some bugs around the rsx macro ([`339e450`](https://github.com/DioxusLabs/dioxus/commit/339e450027b4a5d2e1317e13863cd1b2e7ab5853)) + - full html support ([`79503f1`](https://github.com/DioxusLabs/dioxus/commit/79503f15c5db04fa04575c8735941a2e3a75030b)) + - remove HTML macro and add custom fields ([`9f7eb0f`](https://github.com/DioxusLabs/dioxus/commit/9f7eb0f6002156d3e6e14ea2cb24829133b531c5)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - use annotation method from rust/58052 to fix closure lifetimes ([`27d8919`](https://github.com/DioxusLabs/dioxus/commit/27d891934a70424b45e6278b7e2baaa2d1b78b35)) + - worked backwards a bit and got it slightly figured out ([`9ee2bfb`](https://github.com/DioxusLabs/dioxus/commit/9ee2bfb010ce90ec97e93e173c31aab281db32c4)) + - massage lifetimes ([`9726a06`](https://github.com/DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) + - book documentation ([`16dbf4a`](https://github.com/DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) + - messed up how lifetimes worked, need to render once per component ([`ba9e1db`](https://github.com/DioxusLabs/dioxus/commit/ba9e1dbb8fa24048a6c9ccef8a8722688226a845)) + - major cleanups to scheduler ([`2933e4b`](https://github.com/DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) + - move everything over to a stack dst ([`0e9d5fc`](https://github.com/DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) + - remove warnings on core macero ([`6587224`](https://github.com/DioxusLabs/dioxus/commit/6587224debffa8e8d5282dc3f120abbaa96f552b)) + - mutations ([`fac4233`](https://github.com/DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) + - bottom up dropping ([`f2334c1`](https://github.com/DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) + - fill out the snippets ([`6051b0e`](https://github.com/DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) + - amazingly awesome error handling ([`4a72b31`](https://github.com/DioxusLabs/dioxus/commit/4a72b3140bd244da602deada1eeecded65ff5848)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - docs, html! macro, more ([`caf772c`](https://github.com/DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) + - get keyed diffing compiling ([`0a0be95`](https://github.com/DioxusLabs/dioxus/commit/0a0be95c3e58dc065409f02f703b82700c1003f8)) + - changes to scheduler ([`098d382`](https://github.com/DioxusLabs/dioxus/commit/098d3821ed89ad38d99077a6556b48a7e91fc3fc)) + - clean up warnings ([`b32e261`](https://github.com/DioxusLabs/dioxus/commit/b32e2611e37b17c2371ffb10cf1ac647f017d917)) + - mvoe away from compound context ([`a2c7d17`](https://github.com/DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) + - wire up event delegator for webview ([`7dfe89c`](https://github.com/DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) + - basic support for scheduled rendering ([`c52af22`](https://github.com/DioxusLabs/dioxus/commit/c52af221f755601a9e826ffc2c355def138999d0)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - change in cx to cx ([`9971ff2`](https://github.com/DioxusLabs/dioxus/commit/9971ff215db6f771b7ec1cae2517c85d47d38622)) + - move things into a "shared" object ([`f644d7c`](https://github.com/DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) + - apply formatting ([`a85b8c4`](https://github.com/DioxusLabs/dioxus/commit/a85b8c4b6be83f7aba06714b6a1ff0aa5f2ee729)) + - more upgades to html parser ([`22f894e`](https://github.com/DioxusLabs/dioxus/commit/22f894e6b98073bffa39f08b890071ffc00b8d49)) + - serious refactor with const generics ([`160d86a`](https://github.com/DioxusLabs/dioxus/commit/160d86abbe1b325e3123202aef29025dcd96f4eb)) + - ....sigh..... so the diffing algorithm is robust ([`68ed1c0`](https://github.com/DioxusLabs/dioxus/commit/68ed1c04e7e773f9e6c0a5148f0ea89b97b6784e)) + - add aria ([`4091846`](https://github.com/DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) + - move examples around ([`304259d`](https://github.com/DioxusLabs/dioxus/commit/304259d8186d1d34224a74c95f4fd7d14126b499)) + - beaf up the use_state hook ([`e4cdb64`](https://github.com/DioxusLabs/dioxus/commit/e4cdb645aad800484b19ec35ba1f8bb9ccf71d12)) + - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.com/DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2)) + - move some examples around ([`98a0933`](https://github.com/DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) + - fix issues with lifetimes ([`a38a81e`](https://github.com/DioxusLabs/dioxus/commit/a38a81e1290375cae685f7c49d3745e4298fab26)) + - namespaced attributes ([`22e659c`](https://github.com/DioxusLabs/dioxus/commit/22e659c2bd7797ca5a822180aca0cb5d950c5287)) + - groundwork for noderefs ([`c1afeba`](https://github.com/DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) + - add edits back! and more webview support! ([`904b26f`](https://github.com/DioxusLabs/dioxus/commit/904b26f7111c3fc66400744ff6192e4b20bf6d74)) + - enable more diffing ([`e8f29a8`](https://github.com/DioxusLabs/dioxus/commit/e8f29a8f8ac56020bee0048021efa52547307a77)) + - two calculator examples ([`b5e5ef1`](https://github.com/DioxusLabs/dioxus/commit/b5e5ef171aa9f8986fb4ab04d793eb63f557c4ae)) + - examples ([`d9e6d09`](https://github.com/DioxusLabs/dioxus/commit/d9e6d0925b30690212d1d690dfba288f1a694a27)) + - wip ([`952a91d`](https://github.com/DioxusLabs/dioxus/commit/952a91d5408aaf789b496f11d01c3b3f7fcf9059)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - rethinking stack machine ([`62ae5d3`](https://github.com/DioxusLabs/dioxus/commit/62ae5d3bb94cb9ead030ae0b39d9d9bc2b8b4532)) + - more work on docs ([`daa9bd8`](https://github.com/DioxusLabs/dioxus/commit/daa9bd82c365763fe240528c7df222d230bce613)) + - some cleanup and documentation ([`517d7f1`](https://github.com/DioxusLabs/dioxus/commit/517d7f14957c4dae9fc894bfbdcd00a955d09f20)) + - docs ([`f5683a2`](https://github.com/DioxusLabs/dioxus/commit/f5683a23464992ecace463a61414795b5a2c58c8)) + - pre vnodes instead of vnode ([`fe6938c`](https://github.com/DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) + - props memoization is more powerful ([`73047fe`](https://github.com/DioxusLabs/dioxus/commit/73047fe95678d50fcfd62a4ace7c6b406c5304e1)) + - merge in some code from the other branch ([`7790750`](https://github.com/DioxusLabs/dioxus/commit/7790750349b40055673a0ec16074a0426b84d3b3)) + - move the rsx macro around ([`50c8b93`](https://github.com/DioxusLabs/dioxus/commit/50c8b93aade1bfa83a091fb51ee48638507f89b0)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - move to static props ([`c1fd848`](https://github.com/DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) + - more progress on parity docs. ([`c5089ba`](https://github.com/DioxusLabs/dioxus/commit/c5089ba3c5a8daad4de4d6257604011cc87f6ac7)) + - buff the readme and docs ([`3cfa1fe`](https://github.com/DioxusLabs/dioxus/commit/3cfa1fe125886787f35905ed9b05340a739bc654)) + - Todomvc in progress ([`b843dbd`](https://github.com/DioxusLabs/dioxus/commit/b843dbd3679abf86a34347d87fd4ce5fe9e2aca5)) + - remove old code ([`3de54d0`](https://github.com/DioxusLabs/dioxus/commit/3de54d0b5202aca678d485a68ef8de006a63e21b)) + - some code health ([`c28697e`](https://github.com/DioxusLabs/dioxus/commit/c28697e1fe3136d1835f2b663715f34aab9f4b17)) + - major overhaul to diffing ([`9810fee`](https://github.com/DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) + - todos ([`8c541f6`](https://github.com/DioxusLabs/dioxus/commit/8c541f66d5f7ef2286f2cdf9b0496a9c404471f9)) + - todomvc ([`cfa0927`](https://github.com/DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) + - todomvc ([`ce33031`](https://github.com/DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) + - more ergonomics, more examples ([`0bcff1f`](https://github.com/DioxusLabs/dioxus/commit/0bcff1f88e4b1a633b7a9b7c6c2e39b8bd3666c4)) + - use rsx! inline! ([`44aad27`](https://github.com/DioxusLabs/dioxus/commit/44aad2746c117ba9742c86a53327f4f9e96509e7)) + - building large apps, revamp macro ([`9f7f43b`](https://github.com/DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) + - begint to accept iterator types ([`742f150`](https://github.com/DioxusLabs/dioxus/commit/742f150eb3eba89913f5a0fabb229e72e2a0a5ee)) + - props now autoderives its own trait ([`b3c96a5`](https://github.com/DioxusLabs/dioxus/commit/b3c96a5996f434332813c737bb83ad564d91af5f)) + - staticify? ([`5ad8188`](https://github.com/DioxusLabs/dioxus/commit/5ad81885e499bf02ac79e0098f7956d02ee5f2e5)) + - cargo fix to clean up things ([`78d093a`](https://github.com/DioxusLabs/dioxus/commit/78d093a9454386397a991bd01e603e4ad554521f)) + - wire up props macro ([`37f5a7a`](https://github.com/DioxusLabs/dioxus/commit/37f5a7ad33e272a9e210bf480304d54ff0df0d67)) + - revert FC changes (like the old style). ([`7158bc3`](https://github.com/DioxusLabs/dioxus/commit/7158bc3575e180dbe8641549b040e74ae3baf80b)) + - yeet, synthetic somewhat wired up ([`d959806`](https://github.com/DioxusLabs/dioxus/commit/d9598066c2679d9d0b9ca0ce1d3f26110a238cd2)) + - remove FC ([`92d9521`](https://github.com/DioxusLabs/dioxus/commit/92d9521a73aefb620b354ae5954617109dd06e7e)) + - more cleanup ([`5a9155b`](https://github.com/DioxusLabs/dioxus/commit/5a9155b059acc1fb3c8b8accbeca3701ce4f0ab6)) + - add context to builder ([`cf16090`](https://github.com/DioxusLabs/dioxus/commit/cf16090838d127354e333dcbc0b06474835b87d6)) + - listeners now have scope information ([`fcd68e6`](https://github.com/DioxusLabs/dioxus/commit/fcd68e61d2400628469ba193b009e7bf1fd3acdf)) + - broken, but solved ([`cb74d70`](https://github.com/DioxusLabs/dioxus/commit/cb74d70f831b5510f1ee191d91eaff621ffa6256)) + - accept closures directly in handler ([`f225030`](https://github.com/DioxusLabs/dioxus/commit/f225030506967415a21f4af0372477cb5224ee7c)) + - wowza got it all working ([`4b8e9f4`](https://github.com/DioxusLabs/dioxus/commit/4b8e9f4a125b9d55439d919786f33d9d5df234e8)) + - parse custom rsx syntax ([`da00df6`](https://github.com/DioxusLabs/dioxus/commit/da00df66889f4fa2e39651491e08794e1fe78549)) + - update readme and examples ([`ffaf687`](https://github.com/DioxusLabs/dioxus/commit/ffaf6878963981860089c2362947bf77a84c9058)) + - add core macro crate ([`6a7bf3f`](https://github.com/DioxusLabs/dioxus/commit/6a7bf3f964150bcb8f7ba35ad285dd7deff7955c)) + - add in style crate, and abort any styligng ([`c09b71f`](https://github.com/DioxusLabs/dioxus/commit/c09b71f473ceeac7d37cd2b4117786350b6b11b6)) + - remove html crate ([`9dcee01`](https://github.com/DioxusLabs/dioxus/commit/9dcee01b335901cf2c80b453b97180e0d2551dc2)) + - add core macro crate ([`9f49ecb`](https://github.com/DioxusLabs/dioxus/commit/9f49ecbd95b60deb74c646f3798dfde3542c44be)) + - custom format_args for inlining variables into html templates ([`e4b1f6e`](https://github.com/DioxusLabs/dioxus/commit/e4b1f6ea0d0db707cf757dabf8635e9fc91a3e0f)) + - comment out examples and move lifetime in FC type ([`62d4ad5`](https://github.com/DioxusLabs/dioxus/commit/62d4ad58787185032100a2d25e79b70f6ec97a3c)) + - include the helper ([`07341d2`](https://github.com/DioxusLabs/dioxus/commit/07341d2c65dc61b90587e2e5daadf72ec82623a8)) + - Dioxus-webview ([`9c01736`](https://github.com/DioxusLabs/dioxus/commit/9c0173689539210d14847613f9a1694e6cb34506)) + - update fc_macro ([`28ac37a`](https://github.com/DioxusLabs/dioxus/commit/28ac37a8b23874c77011a46a11e6b9cbdf79ecdd)) + - dioxus frontend crate ([`4d7ac5b`](https://github.com/DioxusLabs/dioxus/commit/4d7ac5bb5d3aa1897c0f6c1f322aca08c0c791f0))
## v0.1.2 (2021-12-15) diff --git a/packages/core-macro/README.md b/packages/core-macro/README.md index 9beed0062..f3ba80107 100644 --- a/packages/core-macro/README.md +++ b/packages/core-macro/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-core-macro.svg [crates-url]: https://crates.io/crates/dioxus-core-macro [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -39,7 +39,7 @@ This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/desktop/CHANGELOG.md b/packages/desktop/CHANGELOG.md index 65657ab37..c69c81eca 100644 --- a/packages/desktop/CHANGELOG.md +++ b/packages/desktop/CHANGELOG.md @@ -47,32 +47,32 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - custom protocol receiver type ([`22308eb`](https://github.comgit//DioxusLabs/dioxus/commit/22308eb26a9ea48b14f5f5abb833aa90a4e3fc40)) - - default asset server ([`430cde7`](https://github.comgit//DioxusLabs/dioxus/commit/430cde7068d308f2783e33d278fd0c0efa659c1b)) - - fix web doc example and use &mut for builders everywhere ([`a239d2b`](https://github.comgit//DioxusLabs/dioxus/commit/a239d2ba6ac7f1f3d09de16c022ce8ca52cf0f63)) - - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.comgit//DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) - - clippy ([`6bc45b1`](https://github.comgit//DioxusLabs/dioxus/commit/6bc45b1c5064a4e2b04d452c52a8167ad179691e)) - - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.comgit//DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) - - wry pathing ([`bad3616`](https://github.comgit//DioxusLabs/dioxus/commit/bad36162af764291f5a031b6233d151f61d745a4)) - - remove dioxus id on non-event elements ([`95e93ed`](https://github.comgit//DioxusLabs/dioxus/commit/95e93ed0bcf6c69990f4cf3c6448b2bf5da96c36)) - - also hide placeholder node ([`eb13884`](https://github.comgit//DioxusLabs/dioxus/commit/eb138848ec7a8978f0ed7c717374684d2315dc03)) - - drag and drop support ([`9ae981a`](https://github.comgit//DioxusLabs/dioxus/commit/9ae981a1af4b5474ce16e27e070794d59128c12a)) - - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.comgit//DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) - - cursor jumping and use set instead of lsit ([`be614e6`](https://github.comgit//DioxusLabs/dioxus/commit/be614e6535e6e13e6ff93e9c6a171c1c002e6b01)) - - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.comgit//DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) - - feat(example:todomvc): add editing support ([`9849f68`](https://github.comgit//DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3)) - - Merge pull request #101 from alexkirsz/ci ([`29bf424`](https://github.comgit//DioxusLabs/dioxus/commit/29bf424b0976b95ff645bb128d0e758cf0186614)) - - Merge pull request #139 from DioxusLabs/jk/provide-context-any ([`70f2ef4`](https://github.comgit//DioxusLabs/dioxus/commit/70f2ef43db5b6737bd9bcbfc1aa21c834ce4b395)) - - Merge branch 'master' into jk/unify ([`824defa`](https://github.comgit//DioxusLabs/dioxus/commit/824defa2dbcc16d66588b3976699d89b65a8a068)) - - wire up both desktop and web ([`05331dd`](https://github.comgit//DioxusLabs/dioxus/commit/05331ddd8033f6997d4916179b62f4d62f832988)) - - format code ([`9256161`](https://github.comgit//DioxusLabs/dioxus/commit/92561612c727e73356d7d36e16af39aacf02a56d)) - - Enable clippy ([`b6903bf`](https://github.comgit//DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) - - bool attr white list ([`8f4aa84`](https://github.comgit//DioxusLabs/dioxus/commit/8f4aa84f1a4f2443b34d81ee42490564e168de53)) - - setup a typescript build ([`5bf6c96`](https://github.comgit//DioxusLabs/dioxus/commit/5bf6c96f9fed04de949403202bafcbeadb5d2030)) - - check `href` null ([`2073b40`](https://github.comgit//DioxusLabs/dioxus/commit/2073b400df55f0c6d8bed7371b2313be6c064e6e)) - - add exclusion list ([`2123228`](https://github.comgit//DioxusLabs/dioxus/commit/21232285d9d84168d9003969ddd254fc22951e4b)) - - check `href` null ([`327f901`](https://github.comgit//DioxusLabs/dioxus/commit/327f9015481809d8e5b9e69f26202e8d66dd198e)) - - prevent `submit` default ([`8089023`](https://github.comgit//DioxusLabs/dioxus/commit/8089023a6c3a54957af9c9c05c9dee6088b059ef)) + - custom protocol receiver type ([`22308eb`](https://github.com/DioxusLabs/dioxus/commit/22308eb26a9ea48b14f5f5abb833aa90a4e3fc40)) + - default asset server ([`430cde7`](https://github.com/DioxusLabs/dioxus/commit/430cde7068d308f2783e33d278fd0c0efa659c1b)) + - fix web doc example and use &mut for builders everywhere ([`a239d2b`](https://github.com/DioxusLabs/dioxus/commit/a239d2ba6ac7f1f3d09de16c022ce8ca52cf0f63)) + - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.com/DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) + - clippy ([`6bc45b1`](https://github.com/DioxusLabs/dioxus/commit/6bc45b1c5064a4e2b04d452c52a8167ad179691e)) + - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.com/DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) + - wry pathing ([`bad3616`](https://github.com/DioxusLabs/dioxus/commit/bad36162af764291f5a031b6233d151f61d745a4)) + - remove dioxus id on non-event elements ([`95e93ed`](https://github.com/DioxusLabs/dioxus/commit/95e93ed0bcf6c69990f4cf3c6448b2bf5da96c36)) + - also hide placeholder node ([`eb13884`](https://github.com/DioxusLabs/dioxus/commit/eb138848ec7a8978f0ed7c717374684d2315dc03)) + - drag and drop support ([`9ae981a`](https://github.com/DioxusLabs/dioxus/commit/9ae981a1af4b5474ce16e27e070794d59128c12a)) + - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.com/DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) + - cursor jumping and use set instead of lsit ([`be614e6`](https://github.com/DioxusLabs/dioxus/commit/be614e6535e6e13e6ff93e9c6a171c1c002e6b01)) + - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.com/DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) + - feat(example:todomvc): add editing support ([`9849f68`](https://github.com/DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3)) + - Merge pull request #101 from alexkirsz/ci ([`29bf424`](https://github.com/DioxusLabs/dioxus/commit/29bf424b0976b95ff645bb128d0e758cf0186614)) + - Merge pull request #139 from DioxusLabs/jk/provide-context-any ([`70f2ef4`](https://github.com/DioxusLabs/dioxus/commit/70f2ef43db5b6737bd9bcbfc1aa21c834ce4b395)) + - Merge branch 'master' into jk/unify ([`824defa`](https://github.com/DioxusLabs/dioxus/commit/824defa2dbcc16d66588b3976699d89b65a8a068)) + - wire up both desktop and web ([`05331dd`](https://github.com/DioxusLabs/dioxus/commit/05331ddd8033f6997d4916179b62f4d62f832988)) + - format code ([`9256161`](https://github.com/DioxusLabs/dioxus/commit/92561612c727e73356d7d36e16af39aacf02a56d)) + - Enable clippy ([`b6903bf`](https://github.com/DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) + - bool attr white list ([`8f4aa84`](https://github.com/DioxusLabs/dioxus/commit/8f4aa84f1a4f2443b34d81ee42490564e168de53)) + - setup a typescript build ([`5bf6c96`](https://github.com/DioxusLabs/dioxus/commit/5bf6c96f9fed04de949403202bafcbeadb5d2030)) + - check `href` null ([`2073b40`](https://github.com/DioxusLabs/dioxus/commit/2073b400df55f0c6d8bed7371b2313be6c064e6e)) + - add exclusion list ([`2123228`](https://github.com/DioxusLabs/dioxus/commit/21232285d9d84168d9003969ddd254fc22951e4b)) + - check `href` null ([`327f901`](https://github.com/DioxusLabs/dioxus/commit/327f9015481809d8e5b9e69f26202e8d66dd198e)) + - prevent `submit` default ([`8089023`](https://github.com/DioxusLabs/dioxus/commit/8089023a6c3a54957af9c9c05c9dee6088b059ef))
## v0.1.5 (2022-01-08) @@ -141,104 +141,104 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-desktop v0.1.5 ([`cd0dcac`](https://github.comgit//DioxusLabs/dioxus/commit/cd0dcacaf2862f26d29acb21d98f75d41b940e3f)) - - handle bool attrs properly ([`8d685f4`](https://github.comgit//DioxusLabs/dioxus/commit/8d685f40b7e0ef6521c60310d8687291e9b9c48a)) - - link open in browser ([`46fd6ac`](https://github.comgit//DioxusLabs/dioxus/commit/46fd6ac3450ca5ebf9aecb2d59a5a92b2a68bdd0)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - error pattern ([`62b637f`](https://github.comgit//DioxusLabs/dioxus/commit/62b637f8b0eaf616c49461fa23b9251a79abc147)) - - move `rpc` to handler ([`f006f50`](https://github.comgit//DioxusLabs/dioxus/commit/f006f50317f4b75fac353bc988db057a281ba7f8)) - - `open_browser` bool attribute ([`9e04ce5`](https://github.comgit//DioxusLabs/dioxus/commit/9e04ce5342850d2e0a01dde169807d6f6eb16566)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - format code ([`5233ee9`](https://github.comgit//DioxusLabs/dioxus/commit/5233ee97d9314f7f0e0bdf05c56d2a9e4201a596)) - - link open in browser ([`c737c42`](https://github.comgit//DioxusLabs/dioxus/commit/c737c424b05ad8453e8770a14a0d210fb0c7c2fe)) - - Merge pull request #89 from DioxusLabs/jk/simplify-example-run ([`8b6aa8b`](https://github.comgit//DioxusLabs/dioxus/commit/8b6aa8b880b6cb5c95e0c0743aad4e4e74388e05)) - - link open in browser ([`a0f6015`](https://github.comgit//DioxusLabs/dioxus/commit/a0f60152bc7e5866f114ed469809ce8be70d17d4)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.comgit//DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) - - clear warnigns ([`175a6a1`](https://github.comgit//DioxusLabs/dioxus/commit/175a6a199c6738d8d0c7646ba0ec3fc4406c6535)) - - remove lag by forcing update ([`fd91158`](https://github.comgit//DioxusLabs/dioxus/commit/fd911584dcb2371070093e644d9b09255b573fc3)) - - add prevent default attribute and upgrade router ([`427b126`](https://github.comgit//DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) - - include desktop fixes ([`7cf15ee`](https://github.comgit//DioxusLabs/dioxus/commit/7cf15ee4e8dd5e57dd2a9af9d76f36cb7732e881)) - - make hydration more robust ([`bbb6ee1`](https://github.comgit//DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) - - Merge branch 'master' into jk/windows-desktop ([`be2d687`](https://github.comgit//DioxusLabs/dioxus/commit/be2d6876ab2fc35f3ae8ef863c2aaa8993196ac1)) - - try to fix pathing ([`ada24e7`](https://github.comgit//DioxusLabs/dioxus/commit/ada24e7c4eb96a9bf6ae2d1a9fdf1a77af0aa2c0)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - tests ([`bd341f5`](https://github.comgit//DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) - - switch to log tracing ([`e2a6454`](https://github.comgit//DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) - - bump desktop version ([`54103da`](https://github.comgit//DioxusLabs/dioxus/commit/54103da019655e1d70719ecef619a79edb5711db)) - - desktop ([`c1f8424`](https://github.comgit//DioxusLabs/dioxus/commit/c1f8424693b29cb8d7ead10d16e660674ca9264a)) - - desktop ([`be6fac9`](https://github.comgit//DioxusLabs/dioxus/commit/be6fac9f3dd24209b9a3b650636c2b807e335fef)) - - plug in bubbling ([`d84fc05`](https://github.comgit//DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) - - overhaul examples and clean things up ([`420a30e`](https://github.comgit//DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - polish some more things ([`1496102`](https://github.comgit//DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) - - more API updates ([`a4f280d`](https://github.comgit//DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - rip out unsafe task engine ([`c7d001c`](https://github.comgit//DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) - - upgrade to new version of dioxus core. ([`cda759c`](https://github.comgit//DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) - - clean it up a bit ([`fa106be`](https://github.comgit//DioxusLabs/dioxus/commit/fa106be1f5a45fa5707e66542e52c9f09e8cea7a)) - - enable children properly ([`b997b8e`](https://github.comgit//DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) - - miri stress tets ([`934de21`](https://github.comgit//DioxusLabs/dioxus/commit/934de21dd673b1b79904a3249998427f11428426)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - polish ([`8bf57dc`](https://github.comgit//DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) - - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.comgit//DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) - - really big bug around hooks ([`52c7154`](https://github.comgit//DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) - - better desktop support ([`25a8411`](https://github.comgit//DioxusLabs/dioxus/commit/25a8411485e85bb7e3c8f20701d484529efe9a80)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - bubbling ([`19df1bd`](https://github.comgit//DioxusLabs/dioxus/commit/19df1bda109aba03c40ff631263bcb7035004ca0)) - - move examples around ([`1e6e5e6`](https://github.comgit//DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - updates to router ([`bab21a0`](https://github.comgit//DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - it properly bubbles ([`9d8c5ca`](https://github.comgit//DioxusLabs/dioxus/commit/9d8c5ca5ab5784b3f17d7ee20a451ee68fd703d6)) - - upgrade syntax ([`fd93ee8`](https://github.comgit//DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - fake bubbling ([`11757dd`](https://github.comgit//DioxusLabs/dioxus/commit/11757ddf61e1decb1bd1c2bb30455d0bd01a3e95)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.comgit//DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.comgit//DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - desktop and mobile ([`601078f`](https://github.comgit//DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - slim down tokio ([`e86c1d8`](https://github.comgit//DioxusLabs/dioxus/commit/e86c1d8972dfa8717cd450513e90ff05b9af4776)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - docs ([`a42711a`](https://github.comgit//DioxusLabs/dioxus/commit/a42711a324215b87f607093a57b204be4154f30e)) - - improve safety ([`fda2ebc`](https://github.comgit//DioxusLabs/dioxus/commit/fda2ebc2a22965845e015384f39f34ce7cb3e428)) - - massage lifetimes ([`9726a06`](https://github.comgit//DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) - - book documentation ([`16dbf4a`](https://github.comgit//DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) - - more changes to scheduler ([`059294a`](https://github.comgit//DioxusLabs/dioxus/commit/059294ab55e9e945c9aede1fd4b4faf39a7b9ea9)) - - messed up how lifetimes worked, need to render once per component ([`ba9e1db`](https://github.comgit//DioxusLabs/dioxus/commit/ba9e1dbb8fa24048a6c9ccef8a8722688226a845)) - - major cleanups to scheduler ([`2933e4b`](https://github.comgit//DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) - - move everything over to a stack dst ([`0e9d5fc`](https://github.comgit//DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) - - support desktop more completely ([`efd0e9b`](https://github.comgit//DioxusLabs/dioxus/commit/efd0e9b5648c809057f339083ba9d454f810d483)) - - add update functionality to useref ([`a2b0c50`](https://github.comgit//DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) - - lnks to projects ([`460783a`](https://github.comgit//DioxusLabs/dioxus/commit/460783ad549818a85db634ed9c39ffce210b98ec)) - - desktop functioning well ([`5502429`](https://github.comgit//DioxusLabs/dioxus/commit/5502429626023d0788cca352e94ac6ea67c2cb11)) - - more example images ([`2403990`](https://github.comgit//DioxusLabs/dioxus/commit/2403990ea362f1e066da5a877b123cbdfe3dada2)) - - overhaul event system ([`7a03c1d`](https://github.comgit//DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) - - threadsafe ([`82953f2`](https://github.comgit//DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) - - shared state mechanisms ([`4a4c7af`](https://github.comgit//DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) - - clean up the web module ([`823adc0`](https://github.comgit//DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) - - fix some event stuff for web and core ([`725b4a1`](https://github.comgit//DioxusLabs/dioxus/commit/725b4a1d7f5d629b1b0a163b65bfd93b2f8a151b)) - - mutations ([`fac4233`](https://github.comgit//DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) - - add test_dom ([`a652090`](https://github.comgit//DioxusLabs/dioxus/commit/a652090dc5708db334fa7430fededb1bac207880)) - - bottom up dropping ([`f2334c1`](https://github.comgit//DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) - - cleanup ([`1745a44`](https://github.comgit//DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) - - docs, html! macro, more ([`caf772c`](https://github.comgit//DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) - - cleanup workspace ([`8f0bb5d`](https://github.comgit//DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) - - clean up warnings ([`b32e261`](https://github.comgit//DioxusLabs/dioxus/commit/b32e2611e37b17c2371ffb10cf1ac647f017d917)) - - web stuff ([`acad9ca`](https://github.comgit//DioxusLabs/dioxus/commit/acad9ca622748f96599dd02ad22aaeaae3621b76)) - - making progress on diffing and hydration ([`49856cc`](https://github.comgit//DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) - - mvoe away from compound context ([`a2c7d17`](https://github.comgit//DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) - - omg what a dumb mistake ([`f782e14`](https://github.comgit//DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) - - refactor ([`8b0eb87`](https://github.comgit//DioxusLabs/dioxus/commit/8b0eb87c72ea9d444dee99a8b05643f19fea2634)) - - bless up, no more segfaults ([`4a0068f`](https://github.comgit//DioxusLabs/dioxus/commit/4a0068f09918adbc299150edcf777f342ced0dd3)) - - wire up event delegator for webview ([`7dfe89c`](https://github.comgit//DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - more overhaul on virtualevents ([`41cc429`](https://github.comgit//DioxusLabs/dioxus/commit/41cc42919d42453f8f2560aa852211364af4ad3d)) - - groundwork for noderefs ([`c1afeba`](https://github.comgit//DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) + - Release dioxus-desktop v0.1.5 ([`cd0dcac`](https://github.com/DioxusLabs/dioxus/commit/cd0dcacaf2862f26d29acb21d98f75d41b940e3f)) + - handle bool attrs properly ([`8d685f4`](https://github.com/DioxusLabs/dioxus/commit/8d685f40b7e0ef6521c60310d8687291e9b9c48a)) + - link open in browser ([`46fd6ac`](https://github.com/DioxusLabs/dioxus/commit/46fd6ac3450ca5ebf9aecb2d59a5a92b2a68bdd0)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - error pattern ([`62b637f`](https://github.com/DioxusLabs/dioxus/commit/62b637f8b0eaf616c49461fa23b9251a79abc147)) + - move `rpc` to handler ([`f006f50`](https://github.com/DioxusLabs/dioxus/commit/f006f50317f4b75fac353bc988db057a281ba7f8)) + - `open_browser` bool attribute ([`9e04ce5`](https://github.com/DioxusLabs/dioxus/commit/9e04ce5342850d2e0a01dde169807d6f6eb16566)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - format code ([`5233ee9`](https://github.com/DioxusLabs/dioxus/commit/5233ee97d9314f7f0e0bdf05c56d2a9e4201a596)) + - link open in browser ([`c737c42`](https://github.com/DioxusLabs/dioxus/commit/c737c424b05ad8453e8770a14a0d210fb0c7c2fe)) + - Merge pull request #89 from DioxusLabs/jk/simplify-example-run ([`8b6aa8b`](https://github.com/DioxusLabs/dioxus/commit/8b6aa8b880b6cb5c95e0c0743aad4e4e74388e05)) + - link open in browser ([`a0f6015`](https://github.com/DioxusLabs/dioxus/commit/a0f60152bc7e5866f114ed469809ce8be70d17d4)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.com/DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) + - clear warnigns ([`175a6a1`](https://github.com/DioxusLabs/dioxus/commit/175a6a199c6738d8d0c7646ba0ec3fc4406c6535)) + - remove lag by forcing update ([`fd91158`](https://github.com/DioxusLabs/dioxus/commit/fd911584dcb2371070093e644d9b09255b573fc3)) + - add prevent default attribute and upgrade router ([`427b126`](https://github.com/DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) + - include desktop fixes ([`7cf15ee`](https://github.com/DioxusLabs/dioxus/commit/7cf15ee4e8dd5e57dd2a9af9d76f36cb7732e881)) + - make hydration more robust ([`bbb6ee1`](https://github.com/DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) + - Merge branch 'master' into jk/windows-desktop ([`be2d687`](https://github.com/DioxusLabs/dioxus/commit/be2d6876ab2fc35f3ae8ef863c2aaa8993196ac1)) + - try to fix pathing ([`ada24e7`](https://github.com/DioxusLabs/dioxus/commit/ada24e7c4eb96a9bf6ae2d1a9fdf1a77af0aa2c0)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - tests ([`bd341f5`](https://github.com/DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) + - switch to log tracing ([`e2a6454`](https://github.com/DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) + - bump desktop version ([`54103da`](https://github.com/DioxusLabs/dioxus/commit/54103da019655e1d70719ecef619a79edb5711db)) + - desktop ([`c1f8424`](https://github.com/DioxusLabs/dioxus/commit/c1f8424693b29cb8d7ead10d16e660674ca9264a)) + - desktop ([`be6fac9`](https://github.com/DioxusLabs/dioxus/commit/be6fac9f3dd24209b9a3b650636c2b807e335fef)) + - plug in bubbling ([`d84fc05`](https://github.com/DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) + - overhaul examples and clean things up ([`420a30e`](https://github.com/DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - polish some more things ([`1496102`](https://github.com/DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) + - more API updates ([`a4f280d`](https://github.com/DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - rip out unsafe task engine ([`c7d001c`](https://github.com/DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) + - upgrade to new version of dioxus core. ([`cda759c`](https://github.com/DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) + - clean it up a bit ([`fa106be`](https://github.com/DioxusLabs/dioxus/commit/fa106be1f5a45fa5707e66542e52c9f09e8cea7a)) + - enable children properly ([`b997b8e`](https://github.com/DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) + - miri stress tets ([`934de21`](https://github.com/DioxusLabs/dioxus/commit/934de21dd673b1b79904a3249998427f11428426)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - polish ([`8bf57dc`](https://github.com/DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) + - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.com/DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) + - really big bug around hooks ([`52c7154`](https://github.com/DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) + - better desktop support ([`25a8411`](https://github.com/DioxusLabs/dioxus/commit/25a8411485e85bb7e3c8f20701d484529efe9a80)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - bubbling ([`19df1bd`](https://github.com/DioxusLabs/dioxus/commit/19df1bda109aba03c40ff631263bcb7035004ca0)) + - move examples around ([`1e6e5e6`](https://github.com/DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - updates to router ([`bab21a0`](https://github.com/DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - it properly bubbles ([`9d8c5ca`](https://github.com/DioxusLabs/dioxus/commit/9d8c5ca5ab5784b3f17d7ee20a451ee68fd703d6)) + - upgrade syntax ([`fd93ee8`](https://github.com/DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - fake bubbling ([`11757dd`](https://github.com/DioxusLabs/dioxus/commit/11757ddf61e1decb1bd1c2bb30455d0bd01a3e95)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.com/DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.com/DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - desktop and mobile ([`601078f`](https://github.com/DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - slim down tokio ([`e86c1d8`](https://github.com/DioxusLabs/dioxus/commit/e86c1d8972dfa8717cd450513e90ff05b9af4776)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - docs ([`a42711a`](https://github.com/DioxusLabs/dioxus/commit/a42711a324215b87f607093a57b204be4154f30e)) + - improve safety ([`fda2ebc`](https://github.com/DioxusLabs/dioxus/commit/fda2ebc2a22965845e015384f39f34ce7cb3e428)) + - massage lifetimes ([`9726a06`](https://github.com/DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) + - book documentation ([`16dbf4a`](https://github.com/DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) + - more changes to scheduler ([`059294a`](https://github.com/DioxusLabs/dioxus/commit/059294ab55e9e945c9aede1fd4b4faf39a7b9ea9)) + - messed up how lifetimes worked, need to render once per component ([`ba9e1db`](https://github.com/DioxusLabs/dioxus/commit/ba9e1dbb8fa24048a6c9ccef8a8722688226a845)) + - major cleanups to scheduler ([`2933e4b`](https://github.com/DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) + - move everything over to a stack dst ([`0e9d5fc`](https://github.com/DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) + - support desktop more completely ([`efd0e9b`](https://github.com/DioxusLabs/dioxus/commit/efd0e9b5648c809057f339083ba9d454f810d483)) + - add update functionality to useref ([`a2b0c50`](https://github.com/DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) + - lnks to projects ([`460783a`](https://github.com/DioxusLabs/dioxus/commit/460783ad549818a85db634ed9c39ffce210b98ec)) + - desktop functioning well ([`5502429`](https://github.com/DioxusLabs/dioxus/commit/5502429626023d0788cca352e94ac6ea67c2cb11)) + - more example images ([`2403990`](https://github.com/DioxusLabs/dioxus/commit/2403990ea362f1e066da5a877b123cbdfe3dada2)) + - overhaul event system ([`7a03c1d`](https://github.com/DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) + - threadsafe ([`82953f2`](https://github.com/DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) + - shared state mechanisms ([`4a4c7af`](https://github.com/DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) + - clean up the web module ([`823adc0`](https://github.com/DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) + - fix some event stuff for web and core ([`725b4a1`](https://github.com/DioxusLabs/dioxus/commit/725b4a1d7f5d629b1b0a163b65bfd93b2f8a151b)) + - mutations ([`fac4233`](https://github.com/DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) + - add test_dom ([`a652090`](https://github.com/DioxusLabs/dioxus/commit/a652090dc5708db334fa7430fededb1bac207880)) + - bottom up dropping ([`f2334c1`](https://github.com/DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) + - cleanup ([`1745a44`](https://github.com/DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) + - docs, html! macro, more ([`caf772c`](https://github.com/DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) + - cleanup workspace ([`8f0bb5d`](https://github.com/DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) + - clean up warnings ([`b32e261`](https://github.com/DioxusLabs/dioxus/commit/b32e2611e37b17c2371ffb10cf1ac647f017d917)) + - web stuff ([`acad9ca`](https://github.com/DioxusLabs/dioxus/commit/acad9ca622748f96599dd02ad22aaeaae3621b76)) + - making progress on diffing and hydration ([`49856cc`](https://github.com/DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) + - mvoe away from compound context ([`a2c7d17`](https://github.com/DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) + - omg what a dumb mistake ([`f782e14`](https://github.com/DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) + - refactor ([`8b0eb87`](https://github.com/DioxusLabs/dioxus/commit/8b0eb87c72ea9d444dee99a8b05643f19fea2634)) + - bless up, no more segfaults ([`4a0068f`](https://github.com/DioxusLabs/dioxus/commit/4a0068f09918adbc299150edcf777f342ced0dd3)) + - wire up event delegator for webview ([`7dfe89c`](https://github.com/DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - more overhaul on virtualevents ([`41cc429`](https://github.com/DioxusLabs/dioxus/commit/41cc42919d42453f8f2560aa852211364af4ad3d)) + - groundwork for noderefs ([`c1afeba`](https://github.com/DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86))
## v0.0.0 (2021-12-15) diff --git a/packages/desktop/README.md b/packages/desktop/README.md index e2827bcd1..ca07c3628 100644 --- a/packages/desktop/README.md +++ b/packages/desktop/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-desktop.svg [crates-url]: https://crates.io/crates/dioxus-desktop [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -44,7 +44,7 @@ This requires that webview is installed on the target system. WebView is install This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/fullstack/README.md b/packages/fullstack/README.md index 2166889c4..764bdbded 100644 --- a/packages/fullstack/README.md +++ b/packages/fullstack/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-fullstack.svg [crates-url]: https://crates.io/crates/dioxus-fullstack [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -16,15 +16,15 @@ [Website](https://dioxuslabs.com) | [Guides](https://dioxuslabs.com/learn/0.5/) | -[API Docs](https://docs.rs/dioxus-fullstack/latest/dioxus_sever) | +[API Docs](https://docs.rs/dioxus-fullstack/latest/dioxus_fullstack/) | [Chat](https://discord.gg/XgGxMSkvUM) Fullstack utilities for the [`Dioxus`](https://dioxuslabs.com) framework. # Features -- Integrates with the [Axum](https::/docs.rs/dioxus-fullstack/latest/dixous_server/axum_adapter/index.html) server framework with utilities for serving and rendering Dioxus applications. -- [Server functions](https::/docs.rs/dioxus-fullstack/latest/dixous_server/prelude/attr.server.html) allow you to call code on the server from the client as if it were a normal function. +- Integrates with the [Axum](./examples/axum-hello-world/src/main.rs) server framework with utilities for serving and rendering Dioxus applications. +- [Server functions](https://docs.rs/dioxus-fullstack/latest/dioxus_fullstack/prelude/attr.server.html) allow you to call code on the server from the client as if it were a normal function. - Instant RSX Hot reloading with [`dioxus-hot-reload`](https://crates.io/crates/dioxus-hot-reload). - Passing root props from the server to the client. @@ -76,7 +76,7 @@ To get started with full stack Dioxus, check out our [getting started guide](htt This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/hooks/CHANGELOG.md b/packages/hooks/CHANGELOG.md index 253768068..aec496851 100644 --- a/packages/hooks/CHANGELOG.md +++ b/packages/hooks/CHANGELOG.md @@ -27,15 +27,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Merge pull request #169 from DioxusLabs/jk/router-userouter ([`3509602`](https://github.comgit//DioxusLabs/dioxus/commit/3509602c0bcd327a33bc8c95896775e24751da1a)) - - Merge pull request #158 from DioxusLabs/jk/router-onchange ([`08988e1`](https://github.comgit//DioxusLabs/dioxus/commit/08988e1bfec35eadb30e50b5d677dbb36af91b9b)) - - use_state ([`c092bd4`](https://github.comgit//DioxusLabs/dioxus/commit/c092bd43edf1891c427722bc9ca04e11c9359069)) - - exampels ([`a8952a9`](https://github.comgit//DioxusLabs/dioxus/commit/a8952a9ee8d8831fa911cef4e7035293c3a9f88b)) - - Merge branch 'master' into jk/update-hooks ([`5c4bd08`](https://github.comgit//DioxusLabs/dioxus/commit/5c4bd0881bc10572440d9272ceb8ca774431c406)) - - modify usestate to be borrowed ([`58839f4`](https://github.comgit//DioxusLabs/dioxus/commit/58839f47bae3c49cadd4b41da9a5debebb1def99)) - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) - - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.comgit//DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) - - Enable clippy ([`b6903bf`](https://github.comgit//DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) + - Merge pull request #169 from DioxusLabs/jk/router-userouter ([`3509602`](https://github.com/DioxusLabs/dioxus/commit/3509602c0bcd327a33bc8c95896775e24751da1a)) + - Merge pull request #158 from DioxusLabs/jk/router-onchange ([`08988e1`](https://github.com/DioxusLabs/dioxus/commit/08988e1bfec35eadb30e50b5d677dbb36af91b9b)) + - use_state ([`c092bd4`](https://github.com/DioxusLabs/dioxus/commit/c092bd43edf1891c427722bc9ca04e11c9359069)) + - exampels ([`a8952a9`](https://github.com/DioxusLabs/dioxus/commit/a8952a9ee8d8831fa911cef4e7035293c3a9f88b)) + - Merge branch 'master' into jk/update-hooks ([`5c4bd08`](https://github.com/DioxusLabs/dioxus/commit/5c4bd0881bc10572440d9272ceb8ca774431c406)) + - modify usestate to be borrowed ([`58839f4`](https://github.com/DioxusLabs/dioxus/commit/58839f47bae3c49cadd4b41da9a5debebb1def99)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.com/DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) + - Enable clippy ([`b6903bf`](https://github.com/DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11))
## v0.1.6 (2022-01-08) @@ -96,100 +96,100 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.comgit//DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - component pass thru events ([`c439b0a`](https://github.comgit//DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #84 from DioxusLabs/jk/windows-lag ([`211d44d`](https://github.comgit//DioxusLabs/dioxus/commit/211d44d363143a4f74cd7a3226a331886f9f2ef4)) - - Merge branch 'master' into jk/router2dotoh ([`59f8b49`](https://github.comgit//DioxusLabs/dioxus/commit/59f8b49fb6079e02a0a36859cc3a31460bf2ee10)) - - allow use_ref to be cloned into callbacks ([`a890f39`](https://github.comgit//DioxusLabs/dioxus/commit/a890f397c4a65737db2c2f82cfe6d51a54fb51fc)) - - ci and bug in setter ([`4aadec1`](https://github.comgit//DioxusLabs/dioxus/commit/4aadec1e30e5e4aa86bdfa56d8fbff9dc7fa1c69)) - - memoize dom in the prescence of identical components ([`cb2782b`](https://github.comgit//DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - fix hooks docs ([`df168d0`](https://github.comgit//DioxusLabs/dioxus/commit/df168d02a21c7a735cb05b17d7ba37602047a335)) - - bump version ([`eab8422`](https://github.comgit//DioxusLabs/dioxus/commit/eab8422e4ff543fcaf786968667bbe75550462bc)) - - hooks ([`c606f92`](https://github.comgit//DioxusLabs/dioxus/commit/c606f92fa866b2a3bc32b032ab9cb75eee766c99)) - - remove hooks warnigns ([`d788151`](https://github.comgit//DioxusLabs/dioxus/commit/d78815103d39b318cd0f35ae5534e0593aa7006d)) - - plug in bubbling ([`d84fc05`](https://github.comgit//DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) - - make tests pass ([`75fa7b4`](https://github.comgit//DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) - - overhaul examples and clean things up ([`420a30e`](https://github.comgit//DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) - - remove all usages of static closure syntax and update readme ([`cafb7df`](https://github.comgit//DioxusLabs/dioxus/commit/cafb7df736e9366c2acd99b5571cd4b7894ea595)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.comgit//DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) - - polish some more things ([`1496102`](https://github.comgit//DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) - - more API updates ([`a4f280d`](https://github.comgit//DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) - - upgrade hooks ([`b3ac2ee`](https://github.comgit//DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - update the docs ([`c0e0196`](https://github.comgit//DioxusLabs/dioxus/commit/c0e0196a67230ee4216b574391d6bb660fb98953)) - - rip out unsafe task engine ([`c7d001c`](https://github.comgit//DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) - - upgrade to new version of dioxus core. ([`cda759c`](https://github.comgit//DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) - - remove portals completely ([`2fd56e7`](https://github.comgit//DioxusLabs/dioxus/commit/2fd56e76192bc70d5503bfcd6b4127d383dd082c)) - - go back to noisy lifetime solution ([`8daf7a6`](https://github.comgit//DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) - - clean up the core crate ([`e6c6bbd`](https://github.comgit//DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) - - make warnings go away ([`0545d27`](https://github.comgit//DioxusLabs/dioxus/commit/0545d271828418f3ab0df2e9abf66ccafb30707d)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - docs ([`8814977`](https://github.comgit//DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) - - update hooks ([`597a045`](https://github.comgit//DioxusLabs/dioxus/commit/597a0456f59872bd5dc60d382acdec76a98b1db2)) - - really big bug around hooks ([`52c7154`](https://github.comgit//DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) - - better desktop support ([`25a8411`](https://github.comgit//DioxusLabs/dioxus/commit/25a8411485e85bb7e3c8f20701d484529efe9a80)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - it compiles once more ([`8acdd2e`](https://github.comgit//DioxusLabs/dioxus/commit/8acdd2ea830b995b608d8bac2ef527db8d40e662)) - - move examples around ([`1e6e5e6`](https://github.comgit//DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.comgit//DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.comgit//DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - bubbling in progress ([`a21020e`](https://github.comgit//DioxusLabs/dioxus/commit/a21020ea575e467ba0d608737269fe1b0792dba7)) - - desktop and mobile ([`601078f`](https://github.comgit//DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - docs ([`3ddf395`](https://github.comgit//DioxusLabs/dioxus/commit/3ddf395772aa24d04cf4e35bbb3a0027c8f1c7dd)) - - improve safety ([`fda2ebc`](https://github.comgit//DioxusLabs/dioxus/commit/fda2ebc2a22965845e015384f39f34ce7cb3e428)) - - massage lifetimes ([`9726a06`](https://github.comgit//DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) - - major cleanups to scheduler ([`2933e4b`](https://github.comgit//DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) - - add update functionality to useref ([`a2b0c50`](https://github.comgit//DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) - - all the bugs! ([`478255f`](https://github.comgit//DioxusLabs/dioxus/commit/478255f40d4de1d2e3f3cc9b6d758b30ff394b39)) - - shared state mechanisms ([`4a4c7af`](https://github.comgit//DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) - - fix web list issue ([`da4423c`](https://github.comgit//DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) - - remove wildcard ([`ba8ced5`](https://github.comgit//DioxusLabs/dioxus/commit/ba8ced573caea6f55d47804c327d6a279d4733a6)) - - clean up the web module ([`823adc0`](https://github.comgit//DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) - - examples ([`1a2f91e`](https://github.comgit//DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) - - performance looks good, needs more testing ([`4b6ca05`](https://github.comgit//DioxusLabs/dioxus/commit/4b6ca05f2c3ad647842c858967da9c87f1915825)) - - cleanup ([`1745a44`](https://github.comgit//DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) - - fill out the snippets ([`6051b0e`](https://github.comgit//DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - docs, html! macro, more ([`caf772c`](https://github.comgit//DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) - - mvoe away from compound context ([`a2c7d17`](https://github.comgit//DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) - - examples ([`f1cff84`](https://github.comgit//DioxusLabs/dioxus/commit/f1cff845ce11231cb4b2dd4857f9ca9f0265b925)) - - omg what a dumb mistake ([`f782e14`](https://github.comgit//DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) - - more suspended nodes! ([`de9f61b`](https://github.comgit//DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) - - wire up event delegator for webview ([`7dfe89c`](https://github.comgit//DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) - - task system works ([`3a57b94`](https://github.comgit//DioxusLabs/dioxus/commit/3a57b942624afb8aa6650aeee05466c3c9ce967e)) - - move examples around ([`304259d`](https://github.comgit//DioxusLabs/dioxus/commit/304259d8186d1d34224a74c95f4fd7d14126b499)) - - ssr + tide ([`269e81b`](https://github.comgit//DioxusLabs/dioxus/commit/269e81b0fdb32ae0706160cd278cf3a1b731387b)) - - static node infrastructure and ssr changes ([`9abb047`](https://github.comgit//DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) - - more refactor for async ([`975fa56`](https://github.comgit//DioxusLabs/dioxus/commit/975fa566f9809f8fa2bb0bdb07fbfc7f855dcaeb)) - - some project refactor ([`8cfc437`](https://github.comgit//DioxusLabs/dioxus/commit/8cfc437bfe4110d7f984428f01df90bdf8f8d9ec)) - - move some examples around ([`98a0933`](https://github.comgit//DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - move around examples ([`70cd46d`](https://github.comgit//DioxusLabs/dioxus/commit/70cd46dbb2a689ae2d512e142b8aee9c80798430)) - - pre vnodes instead of vnode ([`fe6938c`](https://github.comgit//DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) - - move into a fromjs tutorial ([`69f5cc3`](https://github.comgit//DioxusLabs/dioxus/commit/69f5cc3802af136729bc73e5c3d209270d41b184)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - major overhaul to diffing ([`9810fee`](https://github.comgit//DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) - - cargo fix to clean up things ([`78d093a`](https://github.comgit//DioxusLabs/dioxus/commit/78d093a9454386397a991bd01e603e4ad554521f)) - - overall API updates ([`f47651b`](https://github.comgit//DioxusLabs/dioxus/commit/f47651b32afb385297ddae00616f4308083a36e6)) - - implememt nodes better ([`edbb33b`](https://github.comgit//DioxusLabs/dioxus/commit/edbb33b2ee3692cac155b9e206cd7c2d6382eb9d)) - - comment out examples and move lifetime in FC type ([`62d4ad5`](https://github.comgit//DioxusLabs/dioxus/commit/62d4ad58787185032100a2d25e79b70f6ec97a3c)) - - updates to docs, extension ([`a2406b3`](https://github.comgit//DioxusLabs/dioxus/commit/a2406b33d6c11174f95bd003a59650b86f14159f)) - - add webview example ([`65d0d61`](https://github.comgit//DioxusLabs/dioxus/commit/65d0d611ea9a47d305151d65769b52ec22559959)) - - add hooks ([`c1b990b`](https://github.comgit//DioxusLabs/dioxus/commit/c1b990b27c34e5d6b95ec78e07394b3806b75dc1)) - - docs, code frm percy ([`2b9c8d0`](https://github.comgit//DioxusLabs/dioxus/commit/2b9c8d09d926ff6b5ad8a7e7b7b0b6f93bb8eb36)) + - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.com/DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - component pass thru events ([`c439b0a`](https://github.com/DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #84 from DioxusLabs/jk/windows-lag ([`211d44d`](https://github.com/DioxusLabs/dioxus/commit/211d44d363143a4f74cd7a3226a331886f9f2ef4)) + - Merge branch 'master' into jk/router2dotoh ([`59f8b49`](https://github.com/DioxusLabs/dioxus/commit/59f8b49fb6079e02a0a36859cc3a31460bf2ee10)) + - allow use_ref to be cloned into callbacks ([`a890f39`](https://github.com/DioxusLabs/dioxus/commit/a890f397c4a65737db2c2f82cfe6d51a54fb51fc)) + - ci and bug in setter ([`4aadec1`](https://github.com/DioxusLabs/dioxus/commit/4aadec1e30e5e4aa86bdfa56d8fbff9dc7fa1c69)) + - memoize dom in the prescence of identical components ([`cb2782b`](https://github.com/DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - fix hooks docs ([`df168d0`](https://github.com/DioxusLabs/dioxus/commit/df168d02a21c7a735cb05b17d7ba37602047a335)) + - bump version ([`eab8422`](https://github.com/DioxusLabs/dioxus/commit/eab8422e4ff543fcaf786968667bbe75550462bc)) + - hooks ([`c606f92`](https://github.com/DioxusLabs/dioxus/commit/c606f92fa866b2a3bc32b032ab9cb75eee766c99)) + - remove hooks warnigns ([`d788151`](https://github.com/DioxusLabs/dioxus/commit/d78815103d39b318cd0f35ae5534e0593aa7006d)) + - plug in bubbling ([`d84fc05`](https://github.com/DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) + - make tests pass ([`75fa7b4`](https://github.com/DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) + - overhaul examples and clean things up ([`420a30e`](https://github.com/DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) + - remove all usages of static closure syntax and update readme ([`cafb7df`](https://github.com/DioxusLabs/dioxus/commit/cafb7df736e9366c2acd99b5571cd4b7894ea595)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.com/DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) + - polish some more things ([`1496102`](https://github.com/DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) + - more API updates ([`a4f280d`](https://github.com/DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) + - upgrade hooks ([`b3ac2ee`](https://github.com/DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - update the docs ([`c0e0196`](https://github.com/DioxusLabs/dioxus/commit/c0e0196a67230ee4216b574391d6bb660fb98953)) + - rip out unsafe task engine ([`c7d001c`](https://github.com/DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) + - upgrade to new version of dioxus core. ([`cda759c`](https://github.com/DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) + - remove portals completely ([`2fd56e7`](https://github.com/DioxusLabs/dioxus/commit/2fd56e76192bc70d5503bfcd6b4127d383dd082c)) + - go back to noisy lifetime solution ([`8daf7a6`](https://github.com/DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) + - clean up the core crate ([`e6c6bbd`](https://github.com/DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) + - make warnings go away ([`0545d27`](https://github.com/DioxusLabs/dioxus/commit/0545d271828418f3ab0df2e9abf66ccafb30707d)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - docs ([`8814977`](https://github.com/DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) + - update hooks ([`597a045`](https://github.com/DioxusLabs/dioxus/commit/597a0456f59872bd5dc60d382acdec76a98b1db2)) + - really big bug around hooks ([`52c7154`](https://github.com/DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) + - better desktop support ([`25a8411`](https://github.com/DioxusLabs/dioxus/commit/25a8411485e85bb7e3c8f20701d484529efe9a80)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - it compiles once more ([`8acdd2e`](https://github.com/DioxusLabs/dioxus/commit/8acdd2ea830b995b608d8bac2ef527db8d40e662)) + - move examples around ([`1e6e5e6`](https://github.com/DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Merge branch 'master' into jk/remove_node_safety ([`db00047`](https://github.com/DioxusLabs/dioxus/commit/db0004758c77331cc3b93ea8cf227c060028e12e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.com/DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - bubbling in progress ([`a21020e`](https://github.com/DioxusLabs/dioxus/commit/a21020ea575e467ba0d608737269fe1b0792dba7)) + - desktop and mobile ([`601078f`](https://github.com/DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - docs ([`3ddf395`](https://github.com/DioxusLabs/dioxus/commit/3ddf395772aa24d04cf4e35bbb3a0027c8f1c7dd)) + - improve safety ([`fda2ebc`](https://github.com/DioxusLabs/dioxus/commit/fda2ebc2a22965845e015384f39f34ce7cb3e428)) + - massage lifetimes ([`9726a06`](https://github.com/DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) + - major cleanups to scheduler ([`2933e4b`](https://github.com/DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) + - add update functionality to useref ([`a2b0c50`](https://github.com/DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) + - all the bugs! ([`478255f`](https://github.com/DioxusLabs/dioxus/commit/478255f40d4de1d2e3f3cc9b6d758b30ff394b39)) + - shared state mechanisms ([`4a4c7af`](https://github.com/DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) + - fix web list issue ([`da4423c`](https://github.com/DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) + - remove wildcard ([`ba8ced5`](https://github.com/DioxusLabs/dioxus/commit/ba8ced573caea6f55d47804c327d6a279d4733a6)) + - clean up the web module ([`823adc0`](https://github.com/DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) + - examples ([`1a2f91e`](https://github.com/DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) + - performance looks good, needs more testing ([`4b6ca05`](https://github.com/DioxusLabs/dioxus/commit/4b6ca05f2c3ad647842c858967da9c87f1915825)) + - cleanup ([`1745a44`](https://github.com/DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) + - fill out the snippets ([`6051b0e`](https://github.com/DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - docs, html! macro, more ([`caf772c`](https://github.com/DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) + - mvoe away from compound context ([`a2c7d17`](https://github.com/DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) + - examples ([`f1cff84`](https://github.com/DioxusLabs/dioxus/commit/f1cff845ce11231cb4b2dd4857f9ca9f0265b925)) + - omg what a dumb mistake ([`f782e14`](https://github.com/DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) + - more suspended nodes! ([`de9f61b`](https://github.com/DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) + - wire up event delegator for webview ([`7dfe89c`](https://github.com/DioxusLabs/dioxus/commit/7dfe89c9581f45a445f17f9fe4bb94e61f67e971)) + - task system works ([`3a57b94`](https://github.com/DioxusLabs/dioxus/commit/3a57b942624afb8aa6650aeee05466c3c9ce967e)) + - move examples around ([`304259d`](https://github.com/DioxusLabs/dioxus/commit/304259d8186d1d34224a74c95f4fd7d14126b499)) + - ssr + tide ([`269e81b`](https://github.com/DioxusLabs/dioxus/commit/269e81b0fdb32ae0706160cd278cf3a1b731387b)) + - static node infrastructure and ssr changes ([`9abb047`](https://github.com/DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) + - more refactor for async ([`975fa56`](https://github.com/DioxusLabs/dioxus/commit/975fa566f9809f8fa2bb0bdb07fbfc7f855dcaeb)) + - some project refactor ([`8cfc437`](https://github.com/DioxusLabs/dioxus/commit/8cfc437bfe4110d7f984428f01df90bdf8f8d9ec)) + - move some examples around ([`98a0933`](https://github.com/DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - move around examples ([`70cd46d`](https://github.com/DioxusLabs/dioxus/commit/70cd46dbb2a689ae2d512e142b8aee9c80798430)) + - pre vnodes instead of vnode ([`fe6938c`](https://github.com/DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) + - move into a fromjs tutorial ([`69f5cc3`](https://github.com/DioxusLabs/dioxus/commit/69f5cc3802af136729bc73e5c3d209270d41b184)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - major overhaul to diffing ([`9810fee`](https://github.com/DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) + - cargo fix to clean up things ([`78d093a`](https://github.com/DioxusLabs/dioxus/commit/78d093a9454386397a991bd01e603e4ad554521f)) + - overall API updates ([`f47651b`](https://github.com/DioxusLabs/dioxus/commit/f47651b32afb385297ddae00616f4308083a36e6)) + - implememt nodes better ([`edbb33b`](https://github.com/DioxusLabs/dioxus/commit/edbb33b2ee3692cac155b9e206cd7c2d6382eb9d)) + - comment out examples and move lifetime in FC type ([`62d4ad5`](https://github.com/DioxusLabs/dioxus/commit/62d4ad58787185032100a2d25e79b70f6ec97a3c)) + - updates to docs, extension ([`a2406b3`](https://github.com/DioxusLabs/dioxus/commit/a2406b33d6c11174f95bd003a59650b86f14159f)) + - add webview example ([`65d0d61`](https://github.com/DioxusLabs/dioxus/commit/65d0d611ea9a47d305151d65769b52ec22559959)) + - add hooks ([`c1b990b`](https://github.com/DioxusLabs/dioxus/commit/c1b990b27c34e5d6b95ec78e07394b3806b75dc1)) + - docs, code frm percy ([`2b9c8d0`](https://github.com/DioxusLabs/dioxus/commit/2b9c8d09d926ff6b5ad8a7e7b7b0b6f93bb8eb36))
## v0.1.3 (2021-12-15) diff --git a/packages/hooks/README.md b/packages/hooks/README.md index 876f76a9e..e81963254 100644 --- a/packages/hooks/README.md +++ b/packages/hooks/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-hooks.svg [crates-url]: https://crates.io/crates/dioxus-hooks [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -73,7 +73,7 @@ The core hooks library doesn't provide hooks for persistent state, but you can e This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/hot-reload/README.md b/packages/hot-reload/README.md index 7638fda4d..5c5d3fbf3 100644 --- a/packages/hot-reload/README.md +++ b/packages/hot-reload/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-hot-reload.svg [crates-url]: https://crates.io/crates/dioxus-hot-reload [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -106,7 +106,7 @@ fn main(){ } ``` -If you are using a namespace other than html, you can implement the [HotReloadingContext](https://docs.rs/dioxus-rsx/latest/dioxus_rsx/trait.HotReloadingContext.html) trait to provide a mapping between the rust names of your elements/attributes and the resulting strings. +If you are using a namespace other than html, you can implement the [HotReloadingContext](https://docs.rs/dioxus-rsx/latest/dioxus_rsx/index.html#reexport.HotReloadingContext) trait to provide a mapping between the rust names of your elements/attributes and the resulting strings. You can then provide the Context to the builder to make hot reloading work with your custom namespace: @@ -164,7 +164,7 @@ async fn launch(app: Component) { This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/html/CHANGELOG.md b/packages/html/CHANGELOG.md index 48c7f622c..b6bbad82d 100644 --- a/packages/html/CHANGELOG.md +++ b/packages/html/CHANGELOG.md @@ -26,13 +26,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - rustfmt ([`43e78d5`](https://github.comgit//DioxusLabs/dioxus/commit/43e78d56f72e23ada939f5688a6bd2fdd9b8292d)) - - Add gap and row_gap to style_trait_methods ([`5f4a724`](https://github.comgit//DioxusLabs/dioxus/commit/5f4a72446e63441628e18bb19fd9b2d9f65f9d52)) - - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.comgit//DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) - - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.comgit//DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) - - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.comgit//DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) - - feat(example:todomvc): add editing support ([`9849f68`](https://github.comgit//DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3)) + - rustfmt ([`43e78d5`](https://github.com/DioxusLabs/dioxus/commit/43e78d56f72e23ada939f5688a6bd2fdd9b8292d)) + - Add gap and row_gap to style_trait_methods ([`5f4a724`](https://github.com/DioxusLabs/dioxus/commit/5f4a72446e63441628e18bb19fd9b2d9f65f9d52)) + - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.com/DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.com/DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) + - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.com/DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) + - feat(example:todomvc): add editing support ([`9849f68`](https://github.com/DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3))
## v0.1.4 (2022-01-08) @@ -83,67 +83,67 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - enable prevent_default everywhere ([`9dff700`](https://github.comgit//DioxusLabs/dioxus/commit/9dff700c220dd9e0da2ee028900e82fd24f9d0dd)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - component pass thru events ([`c439b0a`](https://github.comgit//DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) - - memoize dom in the prescence of identical components ([`cb2782b`](https://github.comgit//DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) - - new versions of everything ([`4ea5c99`](https://github.comgit//DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - update core, core-macro, and html ([`f9b9bb9`](https://github.comgit//DioxusLabs/dioxus/commit/f9b9bb9c0c2c55f55d2d6860e3d2d986debd6412)) - - eanble bubbling ([`06276ed`](https://github.comgit//DioxusLabs/dioxus/commit/06276edd0d4f1f6f6b0a3bf7a467931413ab33c3)) - - plug in bubbling ([`d84fc05`](https://github.comgit//DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) - - make tests pass ([`75fa7b4`](https://github.comgit//DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - bump html crate ([`18f1fa4`](https://github.comgit//DioxusLabs/dioxus/commit/18f1fa463780885ec7281bf4a2256d3fecc146ea)) - - add more svg elements ([`8f9a328`](https://github.comgit//DioxusLabs/dioxus/commit/8f9a3281e79273ae9e366c2ce1c28e068112371d)) - - add more svg elements, update readme ([`ad4a0eb`](https://github.comgit//DioxusLabs/dioxus/commit/ad4a0eb3191cefcad3c570517f15f5c0fd7e8687)) - - polish some more things ([`1496102`](https://github.comgit//DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) - - upgrade hooks ([`b3ac2ee`](https://github.comgit//DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) - - fix documentation page ([`42c6d17`](https://github.comgit//DioxusLabs/dioxus/commit/42c6d1772b71b061aed1987819df1eaf5e951bde)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - polish ([`8bf57dc`](https://github.comgit//DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) - - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.comgit//DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - fake bubbling ([`11757dd`](https://github.comgit//DioxusLabs/dioxus/commit/11757ddf61e1decb1bd1c2bb30455d0bd01a3e95)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - events bubble now ([`f223406`](https://github.comgit//DioxusLabs/dioxus/commit/f2234068ba7cd915a00a81e41660d7d6ee1177cc)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.comgit//DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - desktop and mobile ([`601078f`](https://github.comgit//DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - bump versions ([`0846d93`](https://github.comgit//DioxusLabs/dioxus/commit/0846d93d41c27464ca271757c6f24a2cef8fb997)) - - support innerhtml ([`cfc24f5`](https://github.comgit//DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) - - major cleanups to scheduler ([`2933e4b`](https://github.comgit//DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) - - more raw ptrs ([`95bd17e`](https://github.comgit//DioxusLabs/dioxus/commit/95bd17e38fc936dcc9383d0ba8beac5ed64b41eb)) - - update readme ([`285b33d`](https://github.comgit//DioxusLabs/dioxus/commit/285b33dd38c88e2be797eb7f19c34a0906f16b13)) - - shared state mechanisms ([`4a4c7af`](https://github.comgit//DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) - - fix web list issue ([`da4423c`](https://github.comgit//DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) - - html package ([`740cbd1`](https://github.comgit//DioxusLabs/dioxus/commit/740cbd1f9d3e7055822af0be5cc07cc8140eb435)) - - and publish ([`51e2005`](https://github.comgit//DioxusLabs/dioxus/commit/51e20052d9f711a06232675eddc6aace492ad287)) - - clean up the web module ([`823adc0`](https://github.comgit//DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) - - a cute crm ([`718fa14`](https://github.comgit//DioxusLabs/dioxus/commit/718fa14b45df38b40b0c0dff7bdc923cba57026b)) - - examples ([`1a2f91e`](https://github.comgit//DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) - - some ideas ([`05c909f`](https://github.comgit//DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - cleanup workspace ([`8f0bb5d`](https://github.comgit//DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) - - svgs working in webview ([`3bedcb9`](https://github.comgit//DioxusLabs/dioxus/commit/3bedcb93cacec5bdf134adc38ff02eadbf96c1c6)) - - more doc ([`adf202e`](https://github.comgit//DioxusLabs/dioxus/commit/adf202eab9201c69ec455e621c755500329815fe)) - - more suspended nodes! ([`de9f61b`](https://github.comgit//DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - wip ([`996247a`](https://github.comgit//DioxusLabs/dioxus/commit/996247a1644d91ebb00e2b2188d21cacdc48257b)) - - add aria ([`4091846`](https://github.comgit//DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) - - more examples ([`56e7eb8`](https://github.comgit//DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) - - buff up html allowed attributes ([`c79d9ae`](https://github.comgit//DioxusLabs/dioxus/commit/c79d9ae674e235c8e9c2c069d24902122b9c7464)) - - it works but the page is backwards ([`cdcd861`](https://github.comgit//DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) - - use the new structure ([`a05047d`](https://github.comgit//DioxusLabs/dioxus/commit/a05047d01e606425fb0d6595e9d27d3e15f32050)) - - beaf up the use_state hook ([`e4cdb64`](https://github.comgit//DioxusLabs/dioxus/commit/e4cdb645aad800484b19ec35ba1f8bb9ccf71d12)) - - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.comgit//DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - enable prevent_default everywhere ([`9dff700`](https://github.com/DioxusLabs/dioxus/commit/9dff700c220dd9e0da2ee028900e82fd24f9d0dd)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - component pass thru events ([`c439b0a`](https://github.com/DioxusLabs/dioxus/commit/c439b0ac7e09f70a04262b7c29938d8c52197b76)) + - memoize dom in the prescence of identical components ([`cb2782b`](https://github.com/DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) + - new versions of everything ([`4ea5c99`](https://github.com/DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - update core, core-macro, and html ([`f9b9bb9`](https://github.com/DioxusLabs/dioxus/commit/f9b9bb9c0c2c55f55d2d6860e3d2d986debd6412)) + - eanble bubbling ([`06276ed`](https://github.com/DioxusLabs/dioxus/commit/06276edd0d4f1f6f6b0a3bf7a467931413ab33c3)) + - plug in bubbling ([`d84fc05`](https://github.com/DioxusLabs/dioxus/commit/d84fc0538670b2a3bda9ae41878896793b74e8ee)) + - make tests pass ([`75fa7b4`](https://github.com/DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - bump html crate ([`18f1fa4`](https://github.com/DioxusLabs/dioxus/commit/18f1fa463780885ec7281bf4a2256d3fecc146ea)) + - add more svg elements ([`8f9a328`](https://github.com/DioxusLabs/dioxus/commit/8f9a3281e79273ae9e366c2ce1c28e068112371d)) + - add more svg elements, update readme ([`ad4a0eb`](https://github.com/DioxusLabs/dioxus/commit/ad4a0eb3191cefcad3c570517f15f5c0fd7e8687)) + - polish some more things ([`1496102`](https://github.com/DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) + - upgrade hooks ([`b3ac2ee`](https://github.com/DioxusLabs/dioxus/commit/b3ac2ee3f76549cd1c7b6f9eee7e3382b07d873c)) + - fix documentation page ([`42c6d17`](https://github.com/DioxusLabs/dioxus/commit/42c6d1772b71b061aed1987819df1eaf5e951bde)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - polish ([`8bf57dc`](https://github.com/DioxusLabs/dioxus/commit/8bf57dc21dfbcbae5b95650203b68d3f41227652)) + - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.com/DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - fake bubbling ([`11757dd`](https://github.com/DioxusLabs/dioxus/commit/11757ddf61e1decb1bd1c2bb30455d0bd01a3e95)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - events bubble now ([`f223406`](https://github.com/DioxusLabs/dioxus/commit/f2234068ba7cd915a00a81e41660d7d6ee1177cc)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - Merge branch 'master' of https://github.com/jkelleyrtp/dioxus ([`60d6eb2`](https://github.com/DioxusLabs/dioxus/commit/60d6eb204a10633e5e52f91e855bd12c5cda40f2)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - desktop and mobile ([`601078f`](https://github.com/DioxusLabs/dioxus/commit/601078f9cf78a58d7502a377676ac94f3cf037bf)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - bump versions ([`0846d93`](https://github.com/DioxusLabs/dioxus/commit/0846d93d41c27464ca271757c6f24a2cef8fb997)) + - support innerhtml ([`cfc24f5`](https://github.com/DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) + - major cleanups to scheduler ([`2933e4b`](https://github.com/DioxusLabs/dioxus/commit/2933e4bc11b3074c2bde8d76ec55364fca841988)) + - more raw ptrs ([`95bd17e`](https://github.com/DioxusLabs/dioxus/commit/95bd17e38fc936dcc9383d0ba8beac5ed64b41eb)) + - update readme ([`285b33d`](https://github.com/DioxusLabs/dioxus/commit/285b33dd38c88e2be797eb7f19c34a0906f16b13)) + - shared state mechanisms ([`4a4c7af`](https://github.com/DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) + - fix web list issue ([`da4423c`](https://github.com/DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) + - html package ([`740cbd1`](https://github.com/DioxusLabs/dioxus/commit/740cbd1f9d3e7055822af0be5cc07cc8140eb435)) + - and publish ([`51e2005`](https://github.com/DioxusLabs/dioxus/commit/51e20052d9f711a06232675eddc6aace492ad287)) + - clean up the web module ([`823adc0`](https://github.com/DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) + - a cute crm ([`718fa14`](https://github.com/DioxusLabs/dioxus/commit/718fa14b45df38b40b0c0dff7bdc923cba57026b)) + - examples ([`1a2f91e`](https://github.com/DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) + - some ideas ([`05c909f`](https://github.com/DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - cleanup workspace ([`8f0bb5d`](https://github.com/DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) + - svgs working in webview ([`3bedcb9`](https://github.com/DioxusLabs/dioxus/commit/3bedcb93cacec5bdf134adc38ff02eadbf96c1c6)) + - more doc ([`adf202e`](https://github.com/DioxusLabs/dioxus/commit/adf202eab9201c69ec455e621c755500329815fe)) + - more suspended nodes! ([`de9f61b`](https://github.com/DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - wip ([`996247a`](https://github.com/DioxusLabs/dioxus/commit/996247a1644d91ebb00e2b2188d21cacdc48257b)) + - add aria ([`4091846`](https://github.com/DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) + - more examples ([`56e7eb8`](https://github.com/DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) + - buff up html allowed attributes ([`c79d9ae`](https://github.com/DioxusLabs/dioxus/commit/c79d9ae674e235c8e9c2c069d24902122b9c7464)) + - it works but the page is backwards ([`cdcd861`](https://github.com/DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) + - use the new structure ([`a05047d`](https://github.com/DioxusLabs/dioxus/commit/a05047d01e606425fb0d6595e9d27d3e15f32050)) + - beaf up the use_state hook ([`e4cdb64`](https://github.com/DioxusLabs/dioxus/commit/e4cdb645aad800484b19ec35ba1f8bb9ccf71d12)) + - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.com/DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2))
## v0.1.0 (2021-12-15) diff --git a/packages/html/README.md b/packages/html/README.md index 6f47bbda9..6dbd1457d 100644 --- a/packages/html/README.md +++ b/packages/html/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-html.svg [crates-url]: https://crates.io/crates/dioxus-html [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -98,7 +98,7 @@ mod dioxus_elements { This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/interpreter/README.md b/packages/interpreter/README.md index 13f6a7954..7f9e05177 100644 --- a/packages/interpreter/README.md +++ b/packages/interpreter/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-interpreter-js.svg [crates-url]: https://crates.io/crates/dioxus-interpreter-js [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -46,7 +46,7 @@ https://bun.sh/docs/installation This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/liveview/CHANGELOG.md b/packages/liveview/CHANGELOG.md index 6ff6ab4d8..1cae7a052 100644 --- a/packages/liveview/CHANGELOG.md +++ b/packages/liveview/CHANGELOG.md @@ -32,21 +32,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - clean up the core crate ([`e6c6bbd`](https://github.comgit//DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - move some examples around ([`98a0933`](https://github.comgit//DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - move to static props ([`c1fd848`](https://github.comgit//DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) - - begint to accept iterator types ([`742f150`](https://github.comgit//DioxusLabs/dioxus/commit/742f150eb3eba89913f5a0fabb229e72e2a0a5ee)) - - need iterator for bracketed children ([`f24d291`](https://github.comgit//DioxusLabs/dioxus/commit/f24d29130a9d69d55b47770064cce4547533eb52)) - - more liveview and webview custom client ([`9b560df`](https://github.comgit//DioxusLabs/dioxus/commit/9b560dfedb988b258f5c564986759cb83730a96c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - clean up the core crate ([`e6c6bbd`](https://github.com/DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - move some examples around ([`98a0933`](https://github.com/DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - move to static props ([`c1fd848`](https://github.com/DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) + - begint to accept iterator types ([`742f150`](https://github.com/DioxusLabs/dioxus/commit/742f150eb3eba89913f5a0fabb229e72e2a0a5ee)) + - need iterator for bracketed children ([`f24d291`](https://github.com/DioxusLabs/dioxus/commit/f24d29130a9d69d55b47770064cce4547533eb52)) + - more liveview and webview custom client ([`9b560df`](https://github.com/DioxusLabs/dioxus/commit/9b560dfedb988b258f5c564986759cb83730a96c))
diff --git a/packages/liveview/README.md b/packages/liveview/README.md index 56a55f654..9880d6809 100644 --- a/packages/liveview/README.md +++ b/packages/liveview/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-liveview.svg [crates-url]: https://crates.io/crates/dioxus-liveview [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -42,7 +42,7 @@ Dioxus-LiveView exports some primitives to wire up an app into an existing backe This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index 4486eb279..f8506a64d 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -22,7 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d))
## v0.0.3 (2022-01-08) @@ -59,39 +59,39 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.comgit//DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.comgit//DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) - - Merge pull request #79 from DioxusLabs/jk/better_rehydration ([`34b0cb5`](https://github.comgit//DioxusLabs/dioxus/commit/34b0cb500bb59b5c9190cd00a46c27609774c327)) - - fix typo in document ([`a17827f`](https://github.comgit//DioxusLabs/dioxus/commit/a17827ffaa687a64953d9091d85da3264f093365)) - - bump versions ([`b3b4c58`](https://github.comgit//DioxusLabs/dioxus/commit/b3b4c580dfd7c160ec866c1f92d36229bd7ee0db)) - - bump mobile ([`b96491f`](https://github.comgit//DioxusLabs/dioxus/commit/b96491fe16b008c3ca27e6427f6a9cb9fa113b7b)) - - mobile ([`95f01ae`](https://github.comgit//DioxusLabs/dioxus/commit/95f01aee44b2830ffcf2f70d6a75293758edf9cc)) - - bump mobile ([`99d6409`](https://github.comgit//DioxusLabs/dioxus/commit/99d6409f7a9c79ad70951b8f5ec57e68f6f83dcf)) - - polish some more things ([`1496102`](https://github.comgit//DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - book documentation ([`16dbf4a`](https://github.comgit//DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) - - add update functionality to useref ([`a2b0c50`](https://github.comgit//DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) - - overhaul event system ([`7a03c1d`](https://github.comgit//DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) - - bottom up dropping ([`f2334c1`](https://github.comgit//DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - cleanup workspace ([`8f0bb5d`](https://github.comgit//DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) - - omg what a dumb mistake ([`f782e14`](https://github.comgit//DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - move CLI into its own "studio" app ([`fd79335`](https://github.comgit//DioxusLabs/dioxus/commit/fd7933561fe81922e4d5d77f6ac3b6f19efb5a90)) - - groundwork for noderefs ([`c1afeba`](https://github.comgit//DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) + - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.com/DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.com/DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) + - Merge pull request #79 from DioxusLabs/jk/better_rehydration ([`34b0cb5`](https://github.com/DioxusLabs/dioxus/commit/34b0cb500bb59b5c9190cd00a46c27609774c327)) + - fix typo in document ([`a17827f`](https://github.com/DioxusLabs/dioxus/commit/a17827ffaa687a64953d9091d85da3264f093365)) + - bump versions ([`b3b4c58`](https://github.com/DioxusLabs/dioxus/commit/b3b4c580dfd7c160ec866c1f92d36229bd7ee0db)) + - bump mobile ([`b96491f`](https://github.com/DioxusLabs/dioxus/commit/b96491fe16b008c3ca27e6427f6a9cb9fa113b7b)) + - mobile ([`95f01ae`](https://github.com/DioxusLabs/dioxus/commit/95f01aee44b2830ffcf2f70d6a75293758edf9cc)) + - bump mobile ([`99d6409`](https://github.com/DioxusLabs/dioxus/commit/99d6409f7a9c79ad70951b8f5ec57e68f6f83dcf)) + - polish some more things ([`1496102`](https://github.com/DioxusLabs/dioxus/commit/14961023f927b3a8bde83cfc7883aa8bfcca9e85)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - book documentation ([`16dbf4a`](https://github.com/DioxusLabs/dioxus/commit/16dbf4a6f84103857385fb4b142a718b0ce72118)) + - add update functionality to useref ([`a2b0c50`](https://github.com/DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) + - overhaul event system ([`7a03c1d`](https://github.com/DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) + - bottom up dropping ([`f2334c1`](https://github.com/DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - cleanup workspace ([`8f0bb5d`](https://github.com/DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) + - omg what a dumb mistake ([`f782e14`](https://github.com/DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - move CLI into its own "studio" app ([`fd79335`](https://github.com/DioxusLabs/dioxus/commit/fd7933561fe81922e4d5d77f6ac3b6f19efb5a90)) + - groundwork for noderefs ([`c1afeba`](https://github.com/DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86))
## v0.0.0 (2021-12-15) diff --git a/packages/mobile/README.md b/packages/mobile/README.md index f694925fe..dbd0a18e3 100644 --- a/packages/mobile/README.md +++ b/packages/mobile/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-mobile.svg [crates-url]: https://crates.io/crates/dioxus-mobile [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -40,7 +40,7 @@ You can read [our guide](https://dioxuslabs.com/learn/0.5/getting_started) on mo This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/router/CHANGELOG.md b/packages/router/CHANGELOG.md index 86b157737..6d876679e 100644 --- a/packages/router/CHANGELOG.md +++ b/packages/router/CHANGELOG.md @@ -33,24 +33,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Merge pull request #169 from DioxusLabs/jk/router-userouter ([`3509602`](https://github.comgit//DioxusLabs/dioxus/commit/3509602c0bcd327a33bc8c95896775e24751da1a)) - - enable use_router ([`e24957f`](https://github.comgit//DioxusLabs/dioxus/commit/e24957fc191476184816fe5dee249f691170d4ae)) - - add docs to router UseRouteListener ([`79e0993`](https://github.comgit//DioxusLabs/dioxus/commit/79e09934aa685d03d6e0b323723bc1cd537d74d9)) - - Merge pull request #166 from DioxusLabs/jk/default-assets-desktop ([`ccbb955`](https://github.comgit//DioxusLabs/dioxus/commit/ccbb955b7b24bd4e1c5aa40e813a2872ae474a69)) - - rustfmt ([`9da46eb`](https://github.comgit//DioxusLabs/dioxus/commit/9da46eb7bc207997ca7779c58fcb2a9645dfa9d0)) - - Make log message in Link component trace level, not debug ([`72c6bb3`](https://github.comgit//DioxusLabs/dioxus/commit/72c6bb3d0b7253f084f7e3bcf55d458cb4adeedb)) - - attach router listener to subscriber list ([`5ee9d6c`](https://github.comgit//DioxusLabs/dioxus/commit/5ee9d6c4348a2f51adac827f715fb138918d1dc6)) - - connect an onchange listener ([`29ed7eb`](https://github.comgit//DioxusLabs/dioxus/commit/29ed7ebece26e9d53925af55f2f34a8fd8241405)) - - use_route should subscribe to changes to the route ([`a21e7d4`](https://github.comgit//DioxusLabs/dioxus/commit/a21e7d4dd168129da06f535f9dc4b1de724617cb)) - - Merge pull request #95 from DioxusLabs/jk/filedragindrop ([`ca0dd4a`](https://github.comgit//DioxusLabs/dioxus/commit/ca0dd4aa7192d483a195d420363f39d771f3e471)) - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) - - flatten props attrs ([`d237271`](https://github.comgit//DioxusLabs/dioxus/commit/d2372717bd01fcff50af0572360e3f763d4c869d)) - - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.comgit//DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) - - Enable clippy ([`b6903bf`](https://github.comgit//DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) - - Merge pull request #138 from mrxiaozhuox/master ([`8c7473d`](https://github.comgit//DioxusLabs/dioxus/commit/8c7473d1943dd133f388ec36116c9d8295861b97)) - - Add a warning when Link it called outside of a Router context ([`6408058`](https://github.comgit//DioxusLabs/dioxus/commit/64080588d02c54a1d380116cbecdd17de16d2392)) - - Merge pull request #133 from mrxiaozhuox/master ([`887f69d`](https://github.comgit//DioxusLabs/dioxus/commit/887f69d5b47bdcde4fe0eab094c0cd0de23e4f3f)) - - Fix handling of re-renders in the Router ([`81c094e`](https://github.comgit//DioxusLabs/dioxus/commit/81c094ed29fcdc5c6099492dd6ab09a59b79252c)) + - Merge pull request #169 from DioxusLabs/jk/router-userouter ([`3509602`](https://github.com/DioxusLabs/dioxus/commit/3509602c0bcd327a33bc8c95896775e24751da1a)) + - enable use_router ([`e24957f`](https://github.com/DioxusLabs/dioxus/commit/e24957fc191476184816fe5dee249f691170d4ae)) + - add docs to router UseRouteListener ([`79e0993`](https://github.com/DioxusLabs/dioxus/commit/79e09934aa685d03d6e0b323723bc1cd537d74d9)) + - Merge pull request #166 from DioxusLabs/jk/default-assets-desktop ([`ccbb955`](https://github.com/DioxusLabs/dioxus/commit/ccbb955b7b24bd4e1c5aa40e813a2872ae474a69)) + - rustfmt ([`9da46eb`](https://github.com/DioxusLabs/dioxus/commit/9da46eb7bc207997ca7779c58fcb2a9645dfa9d0)) + - Make log message in Link component trace level, not debug ([`72c6bb3`](https://github.com/DioxusLabs/dioxus/commit/72c6bb3d0b7253f084f7e3bcf55d458cb4adeedb)) + - attach router listener to subscriber list ([`5ee9d6c`](https://github.com/DioxusLabs/dioxus/commit/5ee9d6c4348a2f51adac827f715fb138918d1dc6)) + - connect an onchange listener ([`29ed7eb`](https://github.com/DioxusLabs/dioxus/commit/29ed7ebece26e9d53925af55f2f34a8fd8241405)) + - use_route should subscribe to changes to the route ([`a21e7d4`](https://github.com/DioxusLabs/dioxus/commit/a21e7d4dd168129da06f535f9dc4b1de724617cb)) + - Merge pull request #95 from DioxusLabs/jk/filedragindrop ([`ca0dd4a`](https://github.com/DioxusLabs/dioxus/commit/ca0dd4aa7192d483a195d420363f39d771f3e471)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - flatten props attrs ([`d237271`](https://github.com/DioxusLabs/dioxus/commit/d2372717bd01fcff50af0572360e3f763d4c869d)) + - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.com/DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) + - Enable clippy ([`b6903bf`](https://github.com/DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) + - Merge pull request #138 from mrxiaozhuox/master ([`8c7473d`](https://github.com/DioxusLabs/dioxus/commit/8c7473d1943dd133f388ec36116c9d8295861b97)) + - Add a warning when Link it called outside of a Router context ([`6408058`](https://github.com/DioxusLabs/dioxus/commit/64080588d02c54a1d380116cbecdd17de16d2392)) + - Merge pull request #133 from mrxiaozhuox/master ([`887f69d`](https://github.com/DioxusLabs/dioxus/commit/887f69d5b47bdcde4fe0eab094c0cd0de23e4f3f)) + - Fix handling of re-renders in the Router ([`81c094e`](https://github.com/DioxusLabs/dioxus/commit/81c094ed29fcdc5c6099492dd6ab09a59b79252c))
## v0.1.0 (2022-01-08) @@ -92,55 +92,55 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.comgit//DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) - - More WIP router implementation ([`e06eac1`](https://github.comgit//DioxusLabs/dioxus/commit/e06eac1ce5c6bb0a6680482574d82b16a141a626)) - - Implement UseRoute segment method ([`c9408da`](https://github.comgit//DioxusLabs/dioxus/commit/c9408da7310423b1676fab6d41635f9a8000d89e)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - Implement router matching for path parameters ([`f8a7e1c`](https://github.comgit//DioxusLabs/dioxus/commit/f8a7e1cd8255fd7d0116384247e0e305bb73bf3d)) - - Commit WIP on router ([`3c6142f`](https://github.comgit//DioxusLabs/dioxus/commit/3c6142fb9d8b5f715adf0fb30c2f3534b9ecd923)) - - Add more trace messages to the RouterService code ([`3a5b417`](https://github.comgit//DioxusLabs/dioxus/commit/3a5b417ad1639a31e9aac9f41b05d8b3f074b128)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - Fix typo in RouterService struct's "registered_routes" field name ([`d367e0f`](https://github.comgit//DioxusLabs/dioxus/commit/d367e0f89f1b31484bde42efaf10c3531aed1d64)) - - Add title prop to Link ([`e22ba5b`](https://github.comgit//DioxusLabs/dioxus/commit/e22ba5b1e52fe00e08e0b6ac0abae29b6068b8f0)) - - add prevent default attribute and upgrade router ([`427b126`](https://github.comgit//DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) - - memoize dom in the prescence of identical components ([`cb2782b`](https://github.comgit//DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - tests ([`bd341f5`](https://github.comgit//DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) - - switch to log tracing ([`e2a6454`](https://github.comgit//DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) - - make tests pass ([`75fa7b4`](https://github.comgit//DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) - - overhaul examples and clean things up ([`420a30e`](https://github.comgit//DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.comgit//DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) - - add more svg elements, update readme ([`ad4a0eb`](https://github.comgit//DioxusLabs/dioxus/commit/ad4a0eb3191cefcad3c570517f15f5c0fd7e8687)) - - more API updates ([`a4f280d`](https://github.comgit//DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - upgrade to new version of dioxus core. ([`cda759c`](https://github.comgit//DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) - - remove portals completely ([`2fd56e7`](https://github.comgit//DioxusLabs/dioxus/commit/2fd56e76192bc70d5503bfcd6b4127d383dd082c)) - - miri stress tets ([`934de21`](https://github.comgit//DioxusLabs/dioxus/commit/934de21dd673b1b79904a3249998427f11428426)) - - go back to noisy lifetime solution ([`8daf7a6`](https://github.comgit//DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - docs ([`8814977`](https://github.comgit//DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) - - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.comgit//DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) - - really big bug around hooks ([`52c7154`](https://github.comgit//DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - it compiles once more ([`8acdd2e`](https://github.comgit//DioxusLabs/dioxus/commit/8acdd2ea830b995b608d8bac2ef527db8d40e662)) - - move examples around ([`1e6e5e6`](https://github.comgit//DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - updates to router ([`bab21a0`](https://github.comgit//DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) - - add router ([`d298b62`](https://github.comgit//DioxusLabs/dioxus/commit/d298b626d3ae21a39a8ec4426373369ac94edf9f)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - router version ([`58106a5`](https://github.comgit//DioxusLabs/dioxus/commit/58106a55291e90661e8901dd8900434c20a75576)) - - bump versions ([`0846d93`](https://github.comgit//DioxusLabs/dioxus/commit/0846d93d41c27464ca271757c6f24a2cef8fb997)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - more work on updating syntad ([`47e8960`](https://github.comgit//DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - add router ([`6aeea9b`](https://github.comgit//DioxusLabs/dioxus/commit/6aeea9b79081a2a711d8eee7e6edd299caf379ef)) + - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.com/DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) + - More WIP router implementation ([`e06eac1`](https://github.com/DioxusLabs/dioxus/commit/e06eac1ce5c6bb0a6680482574d82b16a141a626)) + - Implement UseRoute segment method ([`c9408da`](https://github.com/DioxusLabs/dioxus/commit/c9408da7310423b1676fab6d41635f9a8000d89e)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - Implement router matching for path parameters ([`f8a7e1c`](https://github.com/DioxusLabs/dioxus/commit/f8a7e1cd8255fd7d0116384247e0e305bb73bf3d)) + - Commit WIP on router ([`3c6142f`](https://github.com/DioxusLabs/dioxus/commit/3c6142fb9d8b5f715adf0fb30c2f3534b9ecd923)) + - Add more trace messages to the RouterService code ([`3a5b417`](https://github.com/DioxusLabs/dioxus/commit/3a5b417ad1639a31e9aac9f41b05d8b3f074b128)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - Fix typo in RouterService struct's "registered_routes" field name ([`d367e0f`](https://github.com/DioxusLabs/dioxus/commit/d367e0f89f1b31484bde42efaf10c3531aed1d64)) + - Add title prop to Link ([`e22ba5b`](https://github.com/DioxusLabs/dioxus/commit/e22ba5b1e52fe00e08e0b6ac0abae29b6068b8f0)) + - add prevent default attribute and upgrade router ([`427b126`](https://github.com/DioxusLabs/dioxus/commit/427b126bc17336d5d14d56eb7fddb8e07752495f)) + - memoize dom in the prescence of identical components ([`cb2782b`](https://github.com/DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - tests ([`bd341f5`](https://github.com/DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) + - switch to log tracing ([`e2a6454`](https://github.com/DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) + - make tests pass ([`75fa7b4`](https://github.com/DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) + - overhaul examples and clean things up ([`420a30e`](https://github.com/DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.com/DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) + - add more svg elements, update readme ([`ad4a0eb`](https://github.com/DioxusLabs/dioxus/commit/ad4a0eb3191cefcad3c570517f15f5c0fd7e8687)) + - more API updates ([`a4f280d`](https://github.com/DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - upgrade to new version of dioxus core. ([`cda759c`](https://github.com/DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) + - remove portals completely ([`2fd56e7`](https://github.com/DioxusLabs/dioxus/commit/2fd56e76192bc70d5503bfcd6b4127d383dd082c)) + - miri stress tets ([`934de21`](https://github.com/DioxusLabs/dioxus/commit/934de21dd673b1b79904a3249998427f11428426)) + - go back to noisy lifetime solution ([`8daf7a6`](https://github.com/DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - docs ([`8814977`](https://github.com/DioxusLabs/dioxus/commit/8814977eeebe06748a3b9677a8070e42a037ebd7)) + - prepare to change our fragment pattern. Add some more docs ([`2c3a046`](https://github.com/DioxusLabs/dioxus/commit/2c3a0464264fa11e8100df025d863931f9606cdb)) + - really big bug around hooks ([`52c7154`](https://github.com/DioxusLabs/dioxus/commit/52c7154897111b570918127ffe3285bb1d5951a0)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - it compiles once more ([`8acdd2e`](https://github.com/DioxusLabs/dioxus/commit/8acdd2ea830b995b608d8bac2ef527db8d40e662)) + - move examples around ([`1e6e5e6`](https://github.com/DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - updates to router ([`bab21a0`](https://github.com/DioxusLabs/dioxus/commit/bab21a0aa1cbf8e6bd95f823e49f53c082e8d6cc)) + - add router ([`d298b62`](https://github.com/DioxusLabs/dioxus/commit/d298b626d3ae21a39a8ec4426373369ac94edf9f)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - router version ([`58106a5`](https://github.com/DioxusLabs/dioxus/commit/58106a55291e90661e8901dd8900434c20a75576)) + - bump versions ([`0846d93`](https://github.com/DioxusLabs/dioxus/commit/0846d93d41c27464ca271757c6f24a2cef8fb997)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - more work on updating syntad ([`47e8960`](https://github.com/DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - add router ([`6aeea9b`](https://github.com/DioxusLabs/dioxus/commit/6aeea9b79081a2a711d8eee7e6edd299caf379ef))
diff --git a/packages/router/README.md b/packages/router/README.md index 91b521b01..ea74c0bed 100644 --- a/packages/router/README.md +++ b/packages/router/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-router.svg [crates-url]: https://crates.io/crates/dioxus-router [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -106,7 +106,7 @@ You need to enable the right features for the platform you're targeting since th This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/rsx-rosetta/README.md b/packages/rsx-rosetta/README.md index 637b287b4..11594e7c0 100644 --- a/packages/rsx-rosetta/README.md +++ b/packages/rsx-rosetta/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/rsx-rosetta.svg [crates-url]: https://crates.io/crates/rsx-rosetta [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -47,7 +47,7 @@ From there, you can convert directly to a string or into some other AST. This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you, shall be licensed as MIT, without any additional diff --git a/packages/rsx/README.md b/packages/rsx/README.md index 38a87e051..338f91f25 100644 --- a/packages/rsx/README.md +++ b/packages/rsx/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-rsx.svg [crates-url]: https://crates.io/crates/dioxus-rsx [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -71,7 +71,7 @@ Note that we still don't get the "goodies" of a proper tree-sitter type parser ( This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT, without any additional diff --git a/packages/ssr/CHANGELOG.md b/packages/ssr/CHANGELOG.md index 43e1960c1..84e30e9c7 100644 --- a/packages/ssr/CHANGELOG.md +++ b/packages/ssr/CHANGELOG.md @@ -26,11 +26,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.comgit//DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) - - Fix various typos and grammar nits ([`9e4ec43`](https://github.comgit//DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) - - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.comgit//DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) - - ssr respects bool attrs ([`255f58a`](https://github.comgit//DioxusLabs/dioxus/commit/255f58af63e002339b02bf91c5b85cc5ec917428)) - - Enable clippy ([`b6903bf`](https://github.comgit//DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11)) + - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.com/DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) + - Fix various typos and grammar nits ([`9e4ec43`](https://github.com/DioxusLabs/dioxus/commit/9e4ec43b1e78d355c56a38e4c092170b2b01b20d)) + - Merge pull request #108 from DioxusLabs/jk/fstring-component-fields ([`f4132d1`](https://github.com/DioxusLabs/dioxus/commit/f4132d1874f7495049fac23ba0a022ac137ad74f)) + - ssr respects bool attrs ([`255f58a`](https://github.com/DioxusLabs/dioxus/commit/255f58af63e002339b02bf91c5b85cc5ec917428)) + - Enable clippy ([`b6903bf`](https://github.com/DioxusLabs/dioxus/commit/b6903bf558bc7a3d0fe6794a137c44fca0957d11))
## v0.1.2 (2022-01-08) @@ -86,91 +86,91 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.comgit//DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.comgit//DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) - - add palceholder as comment content ([`c6e917c`](https://github.comgit//DioxusLabs/dioxus/commit/c6e917c4a03c4ae7efc2278ca2c657cf48e013ac)) - - always add spacing comments between textnodes ([`b3a774b`](https://github.comgit//DioxusLabs/dioxus/commit/b3a774b284f16f7fc56591802e9ae90693af32c2)) - - lastnodewastext in ssr ([`dbb6e9b`](https://github.comgit//DioxusLabs/dioxus/commit/dbb6e9b4feeead7a0e29feefb80f8839bcb7b0f6)) - - make hydration more robust ([`bbb6ee1`](https://github.comgit//DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) - - new versions of everything ([`4ea5c99`](https://github.comgit//DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - tests ([`bd341f5`](https://github.comgit//DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) - - ssr ([`a2317bf`](https://github.comgit//DioxusLabs/dioxus/commit/a2317bf5b0c3acc32c0992f83f28cc678afe8dde)) - - overhaul examples and clean things up ([`420a30e`](https://github.comgit//DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) - - remove runner on hook and then update docs ([`d156045`](https://github.comgit//DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) - - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.comgit//DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - enable children properly ([`b997b8e`](https://github.comgit//DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) - - fix ssr ([`ded9696`](https://github.comgit//DioxusLabs/dioxus/commit/ded9696930ec825e0aba990494790e8be43a73e5)) - - adjust memoization ([`e2e4d43`](https://github.comgit//DioxusLabs/dioxus/commit/e2e4d431e14e9e91b3301e994363c042400e687e)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - rename ([`36d89be`](https://github.comgit//DioxusLabs/dioxus/commit/36d89beb34821694cb0afb546d3b0cb4e01aaae1)) - - some docs and suspense ([`93d4b8c`](https://github.comgit//DioxusLabs/dioxus/commit/93d4b8ca7c1b133e5dba2a8dc9a310dbe1357001)) - - move examples around ([`1e6e5e6`](https://github.comgit//DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - upgrade syntax ([`fd93ee8`](https://github.comgit//DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - support innerhtml ([`cfc24f5`](https://github.comgit//DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) - - clean up and add lazy renderer ([`d4dcb17`](https://github.comgit//DioxusLabs/dioxus/commit/d4dcb175670f4cf8e51a25af8ddc584356c3d067)) - - add more to ssr renderer ([`63568c5`](https://github.comgit//DioxusLabs/dioxus/commit/63568c546c76375aa8acb0b8d2555727ef48edc4)) - - massage lifetimes ([`9726a06`](https://github.comgit//DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) - - threadsafe ([`82953f2`](https://github.comgit//DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) - - ssr ([`71f0df6`](https://github.comgit//DioxusLabs/dioxus/commit/71f0df63745fe5c17468693144c552ea3a0a7101)) - - move macro crate out of core ([`7bdad1e`](https://github.comgit//DioxusLabs/dioxus/commit/7bdad1e2e6f67e74c9f67dde2150140cf8a090e8)) - - remove wildcards ([`10d335a`](https://github.comgit//DioxusLabs/dioxus/commit/10d335ae3112b6999b5b988fb5236032af30e1d0)) - - remove wildcard ([`ba8ced5`](https://github.comgit//DioxusLabs/dioxus/commit/ba8ced573caea6f55d47804c327d6a279d4733a6)) - - cleanup ([`1745a44`](https://github.comgit//DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) - - some ideas ([`05c909f`](https://github.comgit//DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) - - websys dom working properly ([`cfa0247`](https://github.comgit//DioxusLabs/dioxus/commit/cfa0247cbb1233e1df275374a73f431650a9250f)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - docs, html! macro, more ([`caf772c`](https://github.comgit//DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) - - cleanup workspace ([`8f0bb5d`](https://github.comgit//DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) - - some docs, cleaning ([`c321532`](https://github.comgit//DioxusLabs/dioxus/commit/c321532a6cef40b2d2e4adc8c7a55931b6755b08)) - - a new vnode type for anchors ([`d618092`](https://github.comgit//DioxusLabs/dioxus/commit/d618092e9d150589e61516f7bbb169f2db49d3f2)) - - fix styling for ssr ([`f14d4ef`](https://github.comgit//DioxusLabs/dioxus/commit/f14d4ef7c21fe9f60712deaded8e3db9a18353c0)) - - making progress on diffing and hydration ([`49856cc`](https://github.comgit//DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) - - code quality improvements for core ([`00231ad`](https://github.comgit//DioxusLabs/dioxus/commit/00231adfa2e1d67a9d7ae2fa61c33e3a22d51978)) - - mvoe away from compound context ([`a2c7d17`](https://github.comgit//DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) - - wire up resource pool ([`31702db`](https://github.comgit//DioxusLabs/dioxus/commit/31702dbf878dd0207d101f7869ebefd2bb9f6860)) - - more work on suspense and documentation ([`37ed4be`](https://github.comgit//DioxusLabs/dioxus/commit/37ed4bed8cf28eb65465d41e15e8d758cb3d9679)) - - omg what a dumb mistake ([`f782e14`](https://github.comgit//DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - move things into a "shared" object ([`f644d7c`](https://github.comgit//DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) - - polish up some safety stuff and add suspense support in ([`ff1398b`](https://github.comgit//DioxusLabs/dioxus/commit/ff1398b943de14f7573ad13577e83500ed9c146e)) - - rebuild doesn't return errors ([`f457b71`](https://github.comgit//DioxusLabs/dioxus/commit/f457b7113129479cad577237ef21cb735fffe483)) - - add aria ([`4091846`](https://github.comgit//DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) - - more examples ([`56e7eb8`](https://github.comgit//DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) - - buff up html allowed attributes ([`c79d9ae`](https://github.comgit//DioxusLabs/dioxus/commit/c79d9ae674e235c8e9c2c069d24902122b9c7464)) - - it works but the page is backwards ([`cdcd861`](https://github.comgit//DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) - - ssr + tide ([`269e81b`](https://github.comgit//DioxusLabs/dioxus/commit/269e81b0fdb32ae0706160cd278cf3a1b731387b)) - - enable components in ssr ([`bbcb5a0`](https://github.comgit//DioxusLabs/dioxus/commit/bbcb5a0234dbce48ffeb64903c3ec04562a87ad6)) - - static node infrastructure and ssr changes ([`9abb047`](https://github.comgit//DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) - - back to vnode enum ([`64f289a`](https://github.comgit//DioxusLabs/dioxus/commit/64f289a61c18b6b4c1adf785a864171e51615780)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - more work on updating syntad ([`47e8960`](https://github.comgit//DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - more progress on parity docs. ([`c5089ba`](https://github.comgit//DioxusLabs/dioxus/commit/c5089ba3c5a8daad4de4d6257604011cc87f6ac7)) - - dirty hack to enable send + sync on virtual dom ([`4d5c528`](https://github.comgit//DioxusLabs/dioxus/commit/4d5c528b07e61d6cb0ac8fc0c27ce2e0fdf7e7d2)) - - doesnt share on thread ([`fe67ff9`](https://github.comgit//DioxusLabs/dioxus/commit/fe67ff9fa4c9d5009670c922e192dccedb7cd09a)) - - remove old code ([`3de54d0`](https://github.comgit//DioxusLabs/dioxus/commit/3de54d0b5202aca678d485a68ef8de006a63e21b)) - - Clean up repo a bit ([`a99147c`](https://github.comgit//DioxusLabs/dioxus/commit/a99147c85b53b4ee336a94deee463d793cebf572)) - - todomvc ([`cfa0927`](https://github.comgit//DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) - - todomvc ([`ce33031`](https://github.comgit//DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) - - building large apps, revamp macro ([`9f7f43b`](https://github.comgit//DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) - - include the helper ([`07341d2`](https://github.comgit//DioxusLabs/dioxus/commit/07341d2c65dc61b90587e2e5daadf72ec82623a8)) - - update fc_macro ([`28ac37a`](https://github.comgit//DioxusLabs/dioxus/commit/28ac37a8b23874c77011a46a11e6b9cbdf79ecdd)) - - more docs, example, mroe nodes ([`d13e04c`](https://github.comgit//DioxusLabs/dioxus/commit/d13e04c9ff4c2a98e295d762d631d47e0c762049)) + - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.com/DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.com/DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) + - add palceholder as comment content ([`c6e917c`](https://github.com/DioxusLabs/dioxus/commit/c6e917c4a03c4ae7efc2278ca2c657cf48e013ac)) + - always add spacing comments between textnodes ([`b3a774b`](https://github.com/DioxusLabs/dioxus/commit/b3a774b284f16f7fc56591802e9ae90693af32c2)) + - lastnodewastext in ssr ([`dbb6e9b`](https://github.com/DioxusLabs/dioxus/commit/dbb6e9b4feeead7a0e29feefb80f8839bcb7b0f6)) + - make hydration more robust ([`bbb6ee1`](https://github.com/DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) + - new versions of everything ([`4ea5c99`](https://github.com/DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - tests ([`bd341f5`](https://github.com/DioxusLabs/dioxus/commit/bd341f5571580cdf5e495379b49ca988fd9211c3)) + - ssr ([`a2317bf`](https://github.com/DioxusLabs/dioxus/commit/a2317bf5b0c3acc32c0992f83f28cc678afe8dde)) + - overhaul examples and clean things up ([`420a30e`](https://github.com/DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) + - remove runner on hook and then update docs ([`d156045`](https://github.com/DioxusLabs/dioxus/commit/d1560450bac55f9566e00e00ea405bd1c70b57e5)) + - arbitrary expressions excepted without braces ([`4c85bcf`](https://github.com/DioxusLabs/dioxus/commit/4c85bcfdc84184b4fd0fb9317ba31fe569884890)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - enable children properly ([`b997b8e`](https://github.com/DioxusLabs/dioxus/commit/b997b8ebbb82b5b9e9119bd2eb25335e2ed009d0)) + - fix ssr ([`ded9696`](https://github.com/DioxusLabs/dioxus/commit/ded9696930ec825e0aba990494790e8be43a73e5)) + - adjust memoization ([`e2e4d43`](https://github.com/DioxusLabs/dioxus/commit/e2e4d431e14e9e91b3301e994363c042400e687e)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - rename ([`36d89be`](https://github.com/DioxusLabs/dioxus/commit/36d89beb34821694cb0afb546d3b0cb4e01aaae1)) + - some docs and suspense ([`93d4b8c`](https://github.com/DioxusLabs/dioxus/commit/93d4b8ca7c1b133e5dba2a8dc9a310dbe1357001)) + - move examples around ([`1e6e5e6`](https://github.com/DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - upgrade syntax ([`fd93ee8`](https://github.com/DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - support innerhtml ([`cfc24f5`](https://github.com/DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) + - clean up and add lazy renderer ([`d4dcb17`](https://github.com/DioxusLabs/dioxus/commit/d4dcb175670f4cf8e51a25af8ddc584356c3d067)) + - add more to ssr renderer ([`63568c5`](https://github.com/DioxusLabs/dioxus/commit/63568c546c76375aa8acb0b8d2555727ef48edc4)) + - massage lifetimes ([`9726a06`](https://github.com/DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) + - threadsafe ([`82953f2`](https://github.com/DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) + - ssr ([`71f0df6`](https://github.com/DioxusLabs/dioxus/commit/71f0df63745fe5c17468693144c552ea3a0a7101)) + - move macro crate out of core ([`7bdad1e`](https://github.com/DioxusLabs/dioxus/commit/7bdad1e2e6f67e74c9f67dde2150140cf8a090e8)) + - remove wildcards ([`10d335a`](https://github.com/DioxusLabs/dioxus/commit/10d335ae3112b6999b5b988fb5236032af30e1d0)) + - remove wildcard ([`ba8ced5`](https://github.com/DioxusLabs/dioxus/commit/ba8ced573caea6f55d47804c327d6a279d4733a6)) + - cleanup ([`1745a44`](https://github.com/DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) + - some ideas ([`05c909f`](https://github.com/DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) + - websys dom working properly ([`cfa0247`](https://github.com/DioxusLabs/dioxus/commit/cfa0247cbb1233e1df275374a73f431650a9250f)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - docs, html! macro, more ([`caf772c`](https://github.com/DioxusLabs/dioxus/commit/caf772cf249d2f56c8d0b0fa2737ad48e32c6e82)) + - cleanup workspace ([`8f0bb5d`](https://github.com/DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) + - some docs, cleaning ([`c321532`](https://github.com/DioxusLabs/dioxus/commit/c321532a6cef40b2d2e4adc8c7a55931b6755b08)) + - a new vnode type for anchors ([`d618092`](https://github.com/DioxusLabs/dioxus/commit/d618092e9d150589e61516f7bbb169f2db49d3f2)) + - fix styling for ssr ([`f14d4ef`](https://github.com/DioxusLabs/dioxus/commit/f14d4ef7c21fe9f60712deaded8e3db9a18353c0)) + - making progress on diffing and hydration ([`49856cc`](https://github.com/DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) + - code quality improvements for core ([`00231ad`](https://github.com/DioxusLabs/dioxus/commit/00231adfa2e1d67a9d7ae2fa61c33e3a22d51978)) + - mvoe away from compound context ([`a2c7d17`](https://github.com/DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) + - wire up resource pool ([`31702db`](https://github.com/DioxusLabs/dioxus/commit/31702dbf878dd0207d101f7869ebefd2bb9f6860)) + - more work on suspense and documentation ([`37ed4be`](https://github.com/DioxusLabs/dioxus/commit/37ed4bed8cf28eb65465d41e15e8d758cb3d9679)) + - omg what a dumb mistake ([`f782e14`](https://github.com/DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - move things into a "shared" object ([`f644d7c`](https://github.com/DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) + - polish up some safety stuff and add suspense support in ([`ff1398b`](https://github.com/DioxusLabs/dioxus/commit/ff1398b943de14f7573ad13577e83500ed9c146e)) + - rebuild doesn't return errors ([`f457b71`](https://github.com/DioxusLabs/dioxus/commit/f457b7113129479cad577237ef21cb735fffe483)) + - add aria ([`4091846`](https://github.com/DioxusLabs/dioxus/commit/4091846934b4b3b2bc03d3ca8aaf7712aebd4e36)) + - more examples ([`56e7eb8`](https://github.com/DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) + - buff up html allowed attributes ([`c79d9ae`](https://github.com/DioxusLabs/dioxus/commit/c79d9ae674e235c8e9c2c069d24902122b9c7464)) + - it works but the page is backwards ([`cdcd861`](https://github.com/DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) + - ssr + tide ([`269e81b`](https://github.com/DioxusLabs/dioxus/commit/269e81b0fdb32ae0706160cd278cf3a1b731387b)) + - enable components in ssr ([`bbcb5a0`](https://github.com/DioxusLabs/dioxus/commit/bbcb5a0234dbce48ffeb64903c3ec04562a87ad6)) + - static node infrastructure and ssr changes ([`9abb047`](https://github.com/DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) + - back to vnode enum ([`64f289a`](https://github.com/DioxusLabs/dioxus/commit/64f289a61c18b6b4c1adf785a864171e51615780)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - more work on updating syntad ([`47e8960`](https://github.com/DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - more progress on parity docs. ([`c5089ba`](https://github.com/DioxusLabs/dioxus/commit/c5089ba3c5a8daad4de4d6257604011cc87f6ac7)) + - dirty hack to enable send + sync on virtual dom ([`4d5c528`](https://github.com/DioxusLabs/dioxus/commit/4d5c528b07e61d6cb0ac8fc0c27ce2e0fdf7e7d2)) + - doesnt share on thread ([`fe67ff9`](https://github.com/DioxusLabs/dioxus/commit/fe67ff9fa4c9d5009670c922e192dccedb7cd09a)) + - remove old code ([`3de54d0`](https://github.com/DioxusLabs/dioxus/commit/3de54d0b5202aca678d485a68ef8de006a63e21b)) + - Clean up repo a bit ([`a99147c`](https://github.com/DioxusLabs/dioxus/commit/a99147c85b53b4ee336a94deee463d793cebf572)) + - todomvc ([`cfa0927`](https://github.com/DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) + - todomvc ([`ce33031`](https://github.com/DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) + - building large apps, revamp macro ([`9f7f43b`](https://github.com/DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) + - include the helper ([`07341d2`](https://github.com/DioxusLabs/dioxus/commit/07341d2c65dc61b90587e2e5daadf72ec82623a8)) + - update fc_macro ([`28ac37a`](https://github.com/DioxusLabs/dioxus/commit/28ac37a8b23874c77011a46a11e6b9cbdf79ecdd)) + - more docs, example, mroe nodes ([`d13e04c`](https://github.com/DioxusLabs/dioxus/commit/d13e04c9ff4c2a98e295d762d631d47e0c762049))
## v0.1.0 (2021-12-15) diff --git a/packages/static-generation/README.md b/packages/static-generation/README.md index 3a547839e..b09e5f08c 100644 --- a/packages/static-generation/README.md +++ b/packages/static-generation/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-fullstack.svg [crates-url]: https://crates.io/crates/dioxus-fullstack [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -16,15 +16,15 @@ [Website](https://dioxuslabs.com) | [Guides](https://dioxuslabs.com/learn/0.5/) | -[API Docs](https://docs.rs/dioxus-fullstack/latest/dioxus_sever) | +[API Docs](https://docs.rs/dioxus-fullstack/latest) | [Chat](https://discord.gg/XgGxMSkvUM) Fullstack utilities for the [`Dioxus`](https://dioxuslabs.com) framework. # Features -- Integrates with the [Axum](https::/docs.rs/dioxus-fullstack/latest/dixous_server/axum_adapter/index.html) server framework with utilities for serving and rendering Dioxus applications. -- [Server functions](https::/docs.rs/dioxus-fullstack/latest/dixous_server/prelude/attr.server.html) allow you to call code on the server from the client as if it were a normal function. +- Integrates with the [Axum](../fullstack/examples/axum-hello-world/src/main.rs) server framework with utilities for serving and rendering Dioxus applications. +- [Server functions](https://docs.rs/dioxus-fullstack/latest/dioxus_fullstack/prelude/attr.server.html) allow you to call code on the server from the client as if it were a normal function. - Instant RSX Hot reloading with [`dioxus-hot-reload`](https://crates.io/crates/dioxus-hot-reload). - Passing root props from the server to the client. @@ -76,7 +76,7 @@ To get started with full stack Dioxus, check out our [getting started guide](htt This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/packages/web/CHANGELOG.md b/packages/web/CHANGELOG.md index 3c27f3f94..911ba2874 100644 --- a/packages/web/CHANGELOG.md +++ b/packages/web/CHANGELOG.md @@ -40,23 +40,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - webconfig should take &mut self ([`ae676d9`](https://github.comgit//DioxusLabs/dioxus/commit/ae676d9d816fcbf88d110157124443a5b3aef9eb)) - - fix web doc example and use &mut for builders everywhere ([`a239d2b`](https://github.comgit//DioxusLabs/dioxus/commit/a239d2ba6ac7f1f3d09de16c022ce8ca52cf0f63)) - - add panic hook by default ([`1406c90`](https://github.comgit//DioxusLabs/dioxus/commit/1406c9020bb3102635737dc2d13e5b3171499a18)) - - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.comgit//DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) - - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.comgit//DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) - - remove dioxus id on non-event elements ([`95e93ed`](https://github.comgit//DioxusLabs/dioxus/commit/95e93ed0bcf6c69990f4cf3c6448b2bf5da96c36)) - - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.comgit//DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) - - feat(example:todomvc): add editing support ([`9849f68`](https://github.comgit//DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3)) - - Merge pull request #101 from alexkirsz/ci ([`29bf424`](https://github.comgit//DioxusLabs/dioxus/commit/29bf424b0976b95ff645bb128d0e758cf0186614)) - - Merge pull request #139 from DioxusLabs/jk/provide-context-any ([`70f2ef4`](https://github.comgit//DioxusLabs/dioxus/commit/70f2ef43db5b6737bd9bcbfc1aa21c834ce4b395)) - - Merge branch 'master' into jk/unify ([`824defa`](https://github.comgit//DioxusLabs/dioxus/commit/824defa2dbcc16d66588b3976699d89b65a8a068)) - - wire up both desktop and web ([`05331dd`](https://github.comgit//DioxusLabs/dioxus/commit/05331ddd8033f6997d4916179b62f4d62f832988)) - - format code ([`9256161`](https://github.comgit//DioxusLabs/dioxus/commit/92561612c727e73356d7d36e16af39aacf02a56d)) - - ssr + hydration event listeners ([`c1a5d4e`](https://github.comgit//DioxusLabs/dioxus/commit/c1a5d4e11f5277e6ee644f670dc6fdd68f2202f1)) - - web now links against the js interprter code ([`10db6ad`](https://github.comgit//DioxusLabs/dioxus/commit/10db6ad65bd23dabf60d0afbe6ff82cda8220a8b)) - - bool attr white list ([`8f4aa84`](https://github.comgit//DioxusLabs/dioxus/commit/8f4aa84f1a4f2443b34d81ee42490564e168de53)) - - add exclusion list ([`2123228`](https://github.comgit//DioxusLabs/dioxus/commit/21232285d9d84168d9003969ddd254fc22951e4b)) + - webconfig should take &mut self ([`ae676d9`](https://github.com/DioxusLabs/dioxus/commit/ae676d9d816fcbf88d110157124443a5b3aef9eb)) + - fix web doc example and use &mut for builders everywhere ([`a239d2b`](https://github.com/DioxusLabs/dioxus/commit/a239d2ba6ac7f1f3d09de16c022ce8ca52cf0f63)) + - add panic hook by default ([`1406c90`](https://github.com/DioxusLabs/dioxus/commit/1406c9020bb3102635737dc2d13e5b3171499a18)) + - Merge pull request #111 from DioxusLabs/jk/props-attrs ([`0369fe7`](https://github.com/DioxusLabs/dioxus/commit/0369fe72fb247409da300a54ef11ba9155d0efb3)) + - Merge pull request #113 from DioxusLabs/jk/desktop-cursor-jump ([`20a2940`](https://github.com/DioxusLabs/dioxus/commit/20a29409b22510b001fdbee349724adb7b44d401)) + - remove dioxus id on non-event elements ([`95e93ed`](https://github.com/DioxusLabs/dioxus/commit/95e93ed0bcf6c69990f4cf3c6448b2bf5da96c36)) + - feat(events:focus): add missing `onfocusin` event ([`007d06d`](https://github.com/DioxusLabs/dioxus/commit/007d06d602f1adfaa51c87ec89b2afe90d8cdef9)) + - feat(example:todomvc): add editing support ([`9849f68`](https://github.com/DioxusLabs/dioxus/commit/9849f68f257200fac511c048bfb1a076243b86d3)) + - Merge pull request #101 from alexkirsz/ci ([`29bf424`](https://github.com/DioxusLabs/dioxus/commit/29bf424b0976b95ff645bb128d0e758cf0186614)) + - Merge pull request #139 from DioxusLabs/jk/provide-context-any ([`70f2ef4`](https://github.com/DioxusLabs/dioxus/commit/70f2ef43db5b6737bd9bcbfc1aa21c834ce4b395)) + - Merge branch 'master' into jk/unify ([`824defa`](https://github.com/DioxusLabs/dioxus/commit/824defa2dbcc16d66588b3976699d89b65a8a068)) + - wire up both desktop and web ([`05331dd`](https://github.com/DioxusLabs/dioxus/commit/05331ddd8033f6997d4916179b62f4d62f832988)) + - format code ([`9256161`](https://github.com/DioxusLabs/dioxus/commit/92561612c727e73356d7d36e16af39aacf02a56d)) + - ssr + hydration event listeners ([`c1a5d4e`](https://github.com/DioxusLabs/dioxus/commit/c1a5d4e11f5277e6ee644f670dc6fdd68f2202f1)) + - web now links against the js interprter code ([`10db6ad`](https://github.com/DioxusLabs/dioxus/commit/10db6ad65bd23dabf60d0afbe6ff82cda8220a8b)) + - bool attr white list ([`8f4aa84`](https://github.com/DioxusLabs/dioxus/commit/8f4aa84f1a4f2443b34d81ee42490564e168de53)) + - add exclusion list ([`2123228`](https://github.com/DioxusLabs/dioxus/commit/21232285d9d84168d9003969ddd254fc22951e4b))
## v0.0.4 (2022-01-08) @@ -148,209 +148,209 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
view details * **Uncategorized** - - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.comgit//DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) - - handle bool attrs properly ([`8d685f4`](https://github.comgit//DioxusLabs/dioxus/commit/8d685f40b7e0ef6521c60310d8687291e9b9c48a)) - - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.comgit//DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) - - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.comgit//DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) - - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.comgit//DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) - - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.comgit//DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) - - memoize dom in the prescence of identical components ([`cb2782b`](https://github.comgit//DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) - - make hydration more robust ([`bbb6ee1`](https://github.comgit//DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) - - new versions of everything ([`4ea5c99`](https://github.comgit//DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) - - bump all versions ([`4f92ba4`](https://github.comgit//DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) - - switch to log tracing ([`e2a6454`](https://github.comgit//DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) - - fix the reference code ([`3de776c`](https://github.comgit//DioxusLabs/dioxus/commit/3de776c42a1a40429d9bd57458cb6297ea792fd0)) - - dioxus web ([`7abb3cc`](https://github.comgit//DioxusLabs/dioxus/commit/7abb3cc79c6d4905d7529a72638b9182761b24f6)) - - dioxus web ([`c0cd50b`](https://github.comgit//DioxusLabs/dioxus/commit/c0cd50b1d3e0f4b8867bc511b7a9edf5c1b64864)) - - make tests pass ([`75fa7b4`](https://github.comgit//DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) - - overhaul examples and clean things up ([`420a30e`](https://github.comgit//DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) - - more API updates ([`a4f280d`](https://github.comgit//DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) - - get web ready gto publish ([`2d58d38`](https://github.comgit//DioxusLabs/dioxus/commit/2d58d380bef83f799c81738a0a7b012e45cdb9b7)) - - readme and examples syntax ([`3dc0e59`](https://github.comgit//DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) - - rip out unsafe task engine ([`c7d001c`](https://github.comgit//DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) - - upgrade to new version of dioxus core. ([`cda759c`](https://github.comgit//DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) - - clean it up a bit ([`fa106be`](https://github.comgit//DioxusLabs/dioxus/commit/fa106be1f5a45fa5707e66542e52c9f09e8cea7a)) - - go back to noisy lifetime solution ([`8daf7a6`](https://github.comgit//DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) - - clean up the core crate ([`e6c6bbd`](https://github.comgit//DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) - - rename fc to component ([`1e4a599`](https://github.comgit//DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.comgit//DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) - - bubbling ([`19df1bd`](https://github.comgit//DioxusLabs/dioxus/commit/19df1bda109aba03c40ff631263bcb7035004ca0)) - - some docs and suspense ([`93d4b8c`](https://github.comgit//DioxusLabs/dioxus/commit/93d4b8ca7c1b133e5dba2a8dc9a310dbe1357001)) - - move examples around ([`1e6e5e6`](https://github.comgit//DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.comgit//DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) - - keyword length ([`868f673`](https://github.comgit//DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) - - docs and router ([`a5f05d7`](https://github.comgit//DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) - - upgrade syntax ([`fd93ee8`](https://github.comgit//DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.comgit//DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) - - tags ([`a33f770`](https://github.comgit//DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) - - events bubble now ([`f223406`](https://github.comgit//DioxusLabs/dioxus/commit/f2234068ba7cd915a00a81e41660d7d6ee1177cc)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.comgit//DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) - - update cargo tomls ([`e4c06ce`](https://github.comgit//DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) - - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.comgit//DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) - - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.comgit//DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) - - support innerhtml ([`cfc24f5`](https://github.comgit//DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) - - massage lifetimes ([`9726a06`](https://github.comgit//DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) - - move everything over to a stack dst ([`0e9d5fc`](https://github.comgit//DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) - - event system ([`1f22a06`](https://github.comgit//DioxusLabs/dioxus/commit/1f22a06a36f72073188b8c9009dd4950b3f4ff9a)) - - support desktop more completely ([`efd0e9b`](https://github.comgit//DioxusLabs/dioxus/commit/efd0e9b5648c809057f339083ba9d454f810d483)) - - add update functionality to useref ([`a2b0c50`](https://github.comgit//DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) - - lnks to projects ([`460783a`](https://github.comgit//DioxusLabs/dioxus/commit/460783ad549818a85db634ed9c39ffce210b98ec)) - - overhaul event system ([`7a03c1d`](https://github.comgit//DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) - - threadsafe ([`82953f2`](https://github.comgit//DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) - - all the bugs! ([`478255f`](https://github.comgit//DioxusLabs/dioxus/commit/478255f40d4de1d2e3f3cc9b6d758b30ff394b39)) - - ssr ([`71f0df6`](https://github.comgit//DioxusLabs/dioxus/commit/71f0df63745fe5c17468693144c552ea3a0a7101)) - - shared state mechanisms ([`4a4c7af`](https://github.comgit//DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) - - fix web list issue ([`da4423c`](https://github.comgit//DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) - - move macro crate out of core ([`7bdad1e`](https://github.comgit//DioxusLabs/dioxus/commit/7bdad1e2e6f67e74c9f67dde2150140cf8a090e8)) - - clean up to web ([`b43a964`](https://github.comgit//DioxusLabs/dioxus/commit/b43a964f982eb871195278a093cc214c3a8ad66d)) - - clean up the web module ([`823adc0`](https://github.comgit//DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) - - slightly simplify crm ([`f07e345`](https://github.comgit//DioxusLabs/dioxus/commit/f07e345eb2a2e4197270396dffebc85c65272fe0)) - - fix some event stuff for web and core ([`725b4a1`](https://github.comgit//DioxusLabs/dioxus/commit/725b4a1d7f5d629b1b0a163b65bfd93b2f8a151b)) - - a cute crm ([`718fa14`](https://github.comgit//DioxusLabs/dioxus/commit/718fa14b45df38b40b0c0dff7bdc923cba57026b)) - - on collaborative scheduling ([`1a32383`](https://github.comgit//DioxusLabs/dioxus/commit/1a323835c8c4f667e5744bbf5447776f1dc51fca)) - - examples ([`1a2f91e`](https://github.comgit//DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) - - mutations ([`fac4233`](https://github.comgit//DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) - - performance looks good, needs more testing ([`4b6ca05`](https://github.comgit//DioxusLabs/dioxus/commit/4b6ca05f2c3ad647842c858967da9c87f1915825)) - - add test_dom ([`a652090`](https://github.comgit//DioxusLabs/dioxus/commit/a652090dc5708db334fa7430fededb1bac207880)) - - bottom up dropping ([`f2334c1`](https://github.comgit//DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) - - cleanup ([`1745a44`](https://github.comgit//DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) - - select figured out ([`84b5ddd`](https://github.comgit//DioxusLabs/dioxus/commit/84b5ddded57238a64e966ec07334e6f9bd86ecf8)) - - re-enable suspense ([`687cda1`](https://github.comgit//DioxusLabs/dioxus/commit/687cda1b6d9595357d1dc8720ebe921f61098d8f)) - - fill out the snippets ([`6051b0e`](https://github.comgit//DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) - - amazingly awesome error handling ([`4a72b31`](https://github.comgit//DioxusLabs/dioxus/commit/4a72b3140bd244da602deada1eeecded65ff5848)) - - some ideas ([`05c909f`](https://github.comgit//DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) - - proper handling of events ([`d7940aa`](https://github.comgit//DioxusLabs/dioxus/commit/d7940aa2ac2017316d62e0f2eac0701dc6ad1f09)) - - websys dom working properly ([`cfa0247`](https://github.comgit//DioxusLabs/dioxus/commit/cfa0247cbb1233e1df275374a73f431650a9250f)) - - big updates to the reference ([`583fdfa`](https://github.comgit//DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) - - broken diff ([`f15e1fa`](https://github.comgit//DioxusLabs/dioxus/commit/f15e1fa892070f9cf1fc627eb9c36fbaa0dc309b)) - - cleanup workspace ([`8f0bb5d`](https://github.comgit//DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) - - changes to scheduler ([`098d382`](https://github.comgit//DioxusLabs/dioxus/commit/098d3821ed89ad38d99077a6556b48a7e91fc3fc)) - - web stuff ([`acad9ca`](https://github.comgit//DioxusLabs/dioxus/commit/acad9ca622748f96599dd02ad22aaeaae3621b76)) - - making progress on diffing and hydration ([`49856cc`](https://github.comgit//DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) - - mvoe away from compound context ([`a2c7d17`](https://github.comgit//DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) - - make hooks free-functions ([`e5c88fe`](https://github.comgit//DioxusLabs/dioxus/commit/e5c88fe3a49649ecb308decd14c2557963978619)) - - more work on suspense and documentation ([`37ed4be`](https://github.comgit//DioxusLabs/dioxus/commit/37ed4bed8cf28eb65465d41e15e8d758cb3d9679)) - - omg what a dumb mistake ([`f782e14`](https://github.comgit//DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) - - suspense! ([`4837d8e`](https://github.comgit//DioxusLabs/dioxus/commit/4837d8e741343d26f31b55e4478a374dc761e538)) - - refactor ([`8b0eb87`](https://github.comgit//DioxusLabs/dioxus/commit/8b0eb87c72ea9d444dee99a8b05643f19fea2634)) - - bless up, no more segfaults ([`4a0068f`](https://github.comgit//DioxusLabs/dioxus/commit/4a0068f09918adbc299150edcf777f342ced0dd3)) - - more suspended nodes! ([`de9f61b`](https://github.comgit//DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) - - more docs ([`34c3107`](https://github.comgit//DioxusLabs/dioxus/commit/34c3107418df89620cb9dfbd9300f89a1fe6e68f)) - - basic support for scheduled rendering ([`c52af22`](https://github.comgit//DioxusLabs/dioxus/commit/c52af221f755601a9e826ffc2c355def138999d0)) - - move over to push based mechanism ([`80e6c25`](https://github.comgit//DioxusLabs/dioxus/commit/80e6c256980eb3e8c32e30f3dbb43c8b3b9a9cf4)) - - solve some issues regarding listeners ([`dfaf5ad`](https://github.comgit//DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) - - architecture document and edit list ([`e723876`](https://github.comgit//DioxusLabs/dioxus/commit/e7238762ae518c5688f9339d11832d17f99ad553)) - - move to slab ([`6084fbc`](https://github.comgit//DioxusLabs/dioxus/commit/6084fbcd11d1669db135098d920488e2c01a7014)) - - change in cx to cx ([`9971ff2`](https://github.comgit//DioxusLabs/dioxus/commit/9971ff215db6f771b7ec1cae2517c85d47d38622)) - - move things into a "shared" object ([`f644d7c`](https://github.comgit//DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) - - it loads the doggos ([`abf4759`](https://github.comgit//DioxusLabs/dioxus/commit/abf47596bc2c092bd2f646a77807728416159ad4)) - - task system works ([`3a57b94`](https://github.comgit//DioxusLabs/dioxus/commit/3a57b942624afb8aa6650aeee05466c3c9ce967e)) - - more overhaul on virtualevents ([`41cc429`](https://github.comgit//DioxusLabs/dioxus/commit/41cc42919d42453f8f2560aa852211364af4ad3d)) - - more work on web ([`3bf19d8`](https://github.comgit//DioxusLabs/dioxus/commit/3bf19d8106e0cca7749b7346e9b0adfce654d782)) - - ricraf polyfill ([`59219b9`](https://github.comgit//DioxusLabs/dioxus/commit/59219b9ef22caa5896046ccaabc8a225cc4b5a53)) - - ....sigh..... so the diffing algorithm is robust ([`68ed1c0`](https://github.comgit//DioxusLabs/dioxus/commit/68ed1c04e7e773f9e6c0a5148f0ea89b97b6784e)) - - remove global allocation for props ([`8b3ac0b`](https://github.comgit//DioxusLabs/dioxus/commit/8b3ac0b57ca073c1451e8d5df93882c9360ca52a)) - - ric_raf wired up ([`8b0d04c`](https://github.comgit//DioxusLabs/dioxus/commit/8b0d04ce585596f561f15e92fc087e2c7063eb07)) - - rebuild doesn't return errors ([`f457b71`](https://github.comgit//DioxusLabs/dioxus/commit/f457b7113129479cad577237ef21cb735fffe483)) - - more examples ([`56e7eb8`](https://github.comgit//DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) - - tests and documentation ([`da81591`](https://github.comgit//DioxusLabs/dioxus/commit/da8159190b84d13caa9dfe7dea385a809cf84199)) - - append isnt backwards ([`df8aa77`](https://github.comgit//DioxusLabs/dioxus/commit/df8aa77198712559f72bef093d064e03b2a5245a)) - - it works but the page is backwards ([`cdcd861`](https://github.comgit//DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) - - static node infrastructure and ssr changes ([`9abb047`](https://github.comgit//DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) - - more refactor for async ([`975fa56`](https://github.comgit//DioxusLabs/dioxus/commit/975fa566f9809f8fa2bb0bdb07fbfc7f855dcaeb)) - - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.comgit//DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2)) - - working on async diff ([`f41cff5`](https://github.comgit//DioxusLabs/dioxus/commit/f41cff571fd11bb00820c0bf9d147e81ed5a6a53)) - - move some examples around ([`98a0933`](https://github.comgit//DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) - - fix issues with lifetimes ([`a38a81e`](https://github.comgit//DioxusLabs/dioxus/commit/a38a81e1290375cae685f7c49d3745e4298fab26)) - - groundwork for noderefs ([`c1afeba`](https://github.comgit//DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) - - more examples ([`11f89e5`](https://github.comgit//DioxusLabs/dioxus/commit/11f89e5d338d14a7aeece0a6275c24ae65913ce7)) - - add edits back! and more webview support! ([`904b26f`](https://github.comgit//DioxusLabs/dioxus/commit/904b26f7111c3fc66400744ff6192e4b20bf6d74)) - - enable more diffing ([`e8f29a8`](https://github.comgit//DioxusLabs/dioxus/commit/e8f29a8f8ac56020bee0048021efa52547307a77)) - - example ([`eb39b00`](https://github.comgit//DioxusLabs/dioxus/commit/eb39b000d7f0ef16d0b83ec44d3926f4690fd08f)) - - wip ([`952a91d`](https://github.comgit//DioxusLabs/dioxus/commit/952a91d5408aaf789b496f11d01c3b3f7fcf9059)) - - integrate signals ([`93900aa`](https://github.comgit//DioxusLabs/dioxus/commit/93900aac4443db2e63631ed928294af74201a9ff)) - - move to slotmap ([`7665f2c`](https://github.comgit//DioxusLabs/dioxus/commit/7665f2c6cf05cea64bb9131381d4ac11cbdeb932)) - - integrate serialization and string borrowing ([`f4fb5bb`](https://github.comgit//DioxusLabs/dioxus/commit/f4fb5bb454536d9f108c7e276ce98a8924ab45e1)) - - more work on diffing machine ([`9813f23`](https://github.comgit//DioxusLabs/dioxus/commit/9813f23cdf7b32bc058771c91db3f182d6224905)) - - rename ctx to cx ([`81382e7`](https://github.comgit//DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) - - move around examples ([`70cd46d`](https://github.comgit//DioxusLabs/dioxus/commit/70cd46dbb2a689ae2d512e142b8aee9c80798430)) - - start moving events to rc ([`b9ff95f`](https://github.comgit//DioxusLabs/dioxus/commit/b9ff95fa12c46365fe73b64a4926a506d5da2342)) - - rename recoil to atoms ([`36ea39a`](https://github.comgit//DioxusLabs/dioxus/commit/36ea39ae30aa3f1fb2d718c0fdf08850c6bfd3ac)) - - more examples and docs ([`7fbaf69`](https://github.comgit//DioxusLabs/dioxus/commit/7fbaf69cabbdde712bb3fd9e4b2a5dc18b9390e9)) - - more work on updating syntad ([`47e8960`](https://github.comgit//DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) - - some cleanup and documentation ([`517d7f1`](https://github.comgit//DioxusLabs/dioxus/commit/517d7f14957c4dae9fc894bfbdcd00a955d09f20)) - - docs ([`f5683a2`](https://github.comgit//DioxusLabs/dioxus/commit/f5683a23464992ecace463a61414795b5a2c58c8)) - - pre vnodes instead of vnode ([`fe6938c`](https://github.comgit//DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) - - events work again! ([`9d7ee79`](https://github.comgit//DioxusLabs/dioxus/commit/9d7ee79826a3b3fb952a70abcbb16dcd3363d2fb)) - - props memoization is more powerful ([`73047fe`](https://github.comgit//DioxusLabs/dioxus/commit/73047fe95678d50fcfd62a4ace7c6b406c5304e1)) - - massive changes to definition of components ([`508c560`](https://github.comgit//DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) - - moving to IDs ([`79127ea`](https://github.comgit//DioxusLabs/dioxus/commit/79127ea6cdabf62bf91e777aaacb563e3aa5e619)) - - move to static props ([`c1fd848`](https://github.comgit//DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) - - doesnt share on thread ([`fe67ff9`](https://github.comgit//DioxusLabs/dioxus/commit/fe67ff9fa4c9d5009670c922e192dccedb7cd09a)) - - parity document ([`ba97541`](https://github.comgit//DioxusLabs/dioxus/commit/ba975410f9fe2a5b3a0e407f6a2478bf86577f29)) - - recoil ([`ee67654`](https://github.comgit//DioxusLabs/dioxus/commit/ee67654f58aecca91c640fc49451d0b99bc05981)) - - buff the readme and docs ([`3cfa1fe`](https://github.comgit//DioxusLabs/dioxus/commit/3cfa1fe125886787f35905ed9b05340a739bc654)) - - Todomvc in progress ([`b843dbd`](https://github.comgit//DioxusLabs/dioxus/commit/b843dbd3679abf86a34347d87fd4ce5fe9e2aca5)) - - introduce children for walking down the tree ([`0d44f00`](https://github.comgit//DioxusLabs/dioxus/commit/0d44f009b0176cb9cf8203374cf534f5af7de63c)) - - Clean up repo a bit ([`a99147c`](https://github.comgit//DioxusLabs/dioxus/commit/a99147c85b53b4ee336a94deee463d793cebf572)) - - some code health ([`c28697e`](https://github.comgit//DioxusLabs/dioxus/commit/c28697e1fe3136d1835f2b663715f34aab9f4b17)) - - major overhaul to diffing ([`9810fee`](https://github.comgit//DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) - - Wip ([`c809095`](https://github.comgit//DioxusLabs/dioxus/commit/c809095124d06175e7f49853c34e48d7335573c5)) - - refactor a bit ([`2eeb8f2`](https://github.comgit//DioxusLabs/dioxus/commit/2eeb8f2386409b53836fab687097d89af7b883c3)) - - todos ([`8c541f6`](https://github.comgit//DioxusLabs/dioxus/commit/8c541f66d5f7ef2286f2cdf9b0496a9c404471f9)) - - todomvc ([`cfa0927`](https://github.comgit//DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) - - todomvc ([`ce33031`](https://github.comgit//DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) - - more ergonomics, more examples ([`0bcff1f`](https://github.comgit//DioxusLabs/dioxus/commit/0bcff1f88e4b1a633b7a9b7c6c2e39b8bd3666c4)) - - building large apps, revamp macro ([`9f7f43b`](https://github.comgit//DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) - - more liveview and webview custom client ([`9b560df`](https://github.comgit//DioxusLabs/dioxus/commit/9b560dfedb988b258f5c564986759cb83730a96c)) - - livehost bones ([`7856f2b`](https://github.comgit//DioxusLabs/dioxus/commit/7856f2b1537b52478a6fa1ca55d0a8c5793a91e5)) - - some stuff related to event listeners. POC for lifecyel ([`5b7887d`](https://github.comgit//DioxusLabs/dioxus/commit/5b7887d76c714d11e0cea5207197ffaac856a0a7)) - - diffing approach slightly broken ([`4e48e05`](https://github.comgit//DioxusLabs/dioxus/commit/4e48e0514e1caed9f60bcac4048114008ac76439)) - - remove old macro ([`9d0727e`](https://github.comgit//DioxusLabs/dioxus/commit/9d0727edabbf759dac8a3cffabd7103d08b728c1)) - - add deeply neste example ([`e66827e`](https://github.comgit//DioxusLabs/dioxus/commit/e66827ec92e23bf0602f92d5223894a7831dfd0f)) - - update examples ([`39bd185`](https://github.comgit//DioxusLabs/dioxus/commit/39bd1856f4d7c2364d6ca2c7812ab5d6e71252b9)) - - ensure mutabality is okay when not double-using the components ([`305ff91`](https://github.comgit//DioxusLabs/dioxus/commit/305ff919effa919ff7ea5db2a71cf21eca106588)) - - somewhat working with rc and weak ([`d4f1cea`](https://github.comgit//DioxusLabs/dioxus/commit/d4f1ceaffbc0551ea3b179a101885275690cebec)) - - foregin eq from comparapable comp type. ([`ec801ea`](https://github.comgit//DioxusLabs/dioxus/commit/ec801eab167f9be5325ab877e74e2b65d501e129)) - - staticify? ([`5ad8188`](https://github.comgit//DioxusLabs/dioxus/commit/5ad81885e499bf02ac79e0098f7956d02ee5f2e5)) - - Feat: it's awersome ([`8dc2619`](https://github.comgit//DioxusLabs/dioxus/commit/8dc26195e274874a7de6c806372f9f77a5c82c5d)) - - yeet, synthetic somewhat wired up ([`d959806`](https://github.comgit//DioxusLabs/dioxus/commit/d9598066c2679d9d0b9ca0ce1d3f26110a238cd2)) - - remove FC ([`92d9521`](https://github.comgit//DioxusLabs/dioxus/commit/92d9521a73aefb620b354ae5954617109dd06e7e)) - - more cleanup ([`5a9155b`](https://github.comgit//DioxusLabs/dioxus/commit/5a9155b059acc1fb3c8b8accbeca3701ce4f0ab6)) - - add context to builder ([`cf16090`](https://github.comgit//DioxusLabs/dioxus/commit/cf16090838d127354e333dcbc0b06474835b87d6)) - - listeners now have scope information ([`fcd68e6`](https://github.comgit//DioxusLabs/dioxus/commit/fcd68e61d2400628469ba193b009e7bf1fd3acdf)) - - broken, but solved ([`cb74d70`](https://github.comgit//DioxusLabs/dioxus/commit/cb74d70f831b5510f1ee191d91eaff621ffa6256)) - - accept closures directly in handler ([`f225030`](https://github.comgit//DioxusLabs/dioxus/commit/f225030506967415a21f4af0372477cb5224ee7c)) - - bug that phantom triggered events ([`07f671c`](https://github.comgit//DioxusLabs/dioxus/commit/07f671c8e19a2a2e90afc3db94c4edebcfffe982)) - - wowza got it all working ([`4b8e9f4`](https://github.comgit//DioxusLabs/dioxus/commit/4b8e9f4a125b9d55439d919786f33d9d5df234e8)) - - update readme and examples ([`ffaf687`](https://github.comgit//DioxusLabs/dioxus/commit/ffaf6878963981860089c2362947bf77a84c9058)) - - view -> render ([`c8bb392`](https://github.comgit//DioxusLabs/dioxus/commit/c8bb392cadb22ddb41e53a776ab0677945579a9c)) - - bump core version ([`6fabd8c`](https://github.comgit//DioxusLabs/dioxus/commit/6fabd8ccc87c0b30a95693e85b98bdb4e2b1a936)) - - update and prep for dioxusweb ([`ab655ea`](https://github.comgit//DioxusLabs/dioxus/commit/ab655eac97fcd9ea3542edbdea4c6cf9a06956fd)) - - a few bugs, but the event system works! ([`3b30fa6`](https://github.comgit//DioxusLabs/dioxus/commit/3b30fa61b8f1927f22ffec373a3405ddfdefde39)) - - moving to CbIdx as serializable event system ([`e840f47`](https://github.comgit//DioxusLabs/dioxus/commit/e840f472faf25d8e1d65abeb610daed6a522771d)) - - custom format_args for inlining variables into html templates ([`e4b1f6e`](https://github.comgit//DioxusLabs/dioxus/commit/e4b1f6ea0d0db707cf757dabf8635e9fc91a3e0f)) - - begin WIP on html macro ([`a8b1225`](https://github.comgit//DioxusLabs/dioxus/commit/a8b1225c4853a61c7862e1a33eba64b8ed4e06d5)) - - move webview logic into library ([`32b45e5`](https://github.comgit//DioxusLabs/dioxus/commit/32b45e5ba168390e338a343eef6baba5cca9468b)) - - comments ([`18a7a1f`](https://github.comgit//DioxusLabs/dioxus/commit/18a7a1f9c40eb3b1ac263cbd21b1daa6da9c7093)) - - buff up examples and docs ([`8d3e2ad`](https://github.comgit//DioxusLabs/dioxus/commit/8d3e2ade7aef491921bb51f0d35b7253bbc800f8)) - - wire up rebuild ([`06ae4fc`](https://github.comgit//DioxusLabs/dioxus/commit/06ae4fc17833ff9695b0645f940b5ea32eeb4ef0)) - - update websys with lifecycle ([`4d01455`](https://github.comgit//DioxusLabs/dioxus/commit/4d01455729dac55cf049c50f47a511190d13550e)) - - fix internal lifecycle ([`5204862`](https://github.comgit//DioxusLabs/dioxus/commit/5204862bc220e55afe8d2f8f4422cb530a6ea1cf)) - - add css example ([`edf09c1`](https://github.comgit//DioxusLabs/dioxus/commit/edf09c1892f2521f41bf84372629e84bed86e921)) - - WIP ctx ([`7a6aabe`](https://github.comgit//DioxusLabs/dioxus/commit/7a6aabe4f39aa38bec7b548d030c11b2d9f481cb)) - - desktop app wired up ([`b3e6886`](https://github.comgit//DioxusLabs/dioxus/commit/b3e68863514a33291556ce278b7255fdf53e8b50)) - - re-enable stack machine approach ([`e3ede7f`](https://github.comgit//DioxusLabs/dioxus/commit/e3ede7fcbf7acb5d8762bcddb5f1499104bb0ce7)) - - WIP on deserialize ([`f22ff83`](https://github.comgit//DioxusLabs/dioxus/commit/f22ff8319078d283e675ff8dc735da5bf8efe0df)) - - web example + cli writes to browser screen! ([`8439994`](https://github.comgit//DioxusLabs/dioxus/commit/84399948596c573883bd29786edee48f5d4ef438)) - - wire up a very basic dom updater ([`c4e8d8b`](https://github.comgit//DioxusLabs/dioxus/commit/c4e8d8bb31d54d70c8da2f4a5e3e3926ff7df92b)) - - major overhaul to diffing, using a "diffing machine" now ([`4dfdf91`](https://github.comgit//DioxusLabs/dioxus/commit/4dfdf9123608c69b86a56acbd6d8810b0cf1918c)) - - remove generic paramter on VDOM ([`4c291a0`](https://github.comgit//DioxusLabs/dioxus/commit/4c291a0efdbaadf5c2212248367c0a78046e2f83)) - - wire up some of the changelist for diff ([`d063a19`](https://github.comgit//DioxusLabs/dioxus/commit/d063a199391383288e807ac03d333091bac6ba60)) - - event loop ([`ea2aa4b`](https://github.comgit//DioxusLabs/dioxus/commit/ea2aa4b0c97b3292178284e05756d1415902a9e2)) - - Dioxus-webview ([`9c01736`](https://github.comgit//DioxusLabs/dioxus/commit/9c0173689539210d14847613f9a1694e6cb34506)) - - more docs, dissolve vnode crate into dioxus-core ([`9c616ea`](https://github.comgit//DioxusLabs/dioxus/commit/9c616ea5c092a756a437ccf175c8b04ada50b1b6)) - - WIP ([`ce34d0d`](https://github.comgit//DioxusLabs/dioxus/commit/ce34d0dfcda82d847a6032f8f42749b39e0fba18)) + - Release dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`b804c69`](https://github.com/DioxusLabs/dioxus/commit/b804c691d5ade4776390bb3d334cc9cd8efa4a49)) + - handle bool attrs properly ([`8d685f4`](https://github.com/DioxusLabs/dioxus/commit/8d685f40b7e0ef6521c60310d8687291e9b9c48a)) + - Release dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`a36dab7`](https://github.com/DioxusLabs/dioxus/commit/a36dab7f45920acd8535a69b4aa3695f3bb92111)) + - Release dioxus-core v0.1.7, dioxus-core-macro v0.1.6, dioxus-html v0.1.4, dioxus-desktop v0.1.5, dioxus-hooks v0.1.6, dioxus-mobile v0.0.3, dioxus-router v0.1.0, dioxus-ssr v0.1.2, dioxus-web v0.0.4, dioxus v0.1.7 ([`40d1f85`](https://github.com/DioxusLabs/dioxus/commit/40d1f85d0c3e2c9fd23c08840cca9f459d4e4307)) + - Merge pull request #74 from mrxiaozhuox/master ([`47056fd`](https://github.com/DioxusLabs/dioxus/commit/47056fda4577bcbdaa2a6f63d82eec876e5a5aee)) + - Merge pull request #80 from DioxusLabs/jk/router2dotoh ([`cdc2d8e`](https://github.com/DioxusLabs/dioxus/commit/cdc2d8ec6d123245c2ea5f6d10af02b6a6833994)) + - memoize dom in the prescence of identical components ([`cb2782b`](https://github.com/DioxusLabs/dioxus/commit/cb2782b4bb34cdaadfff590bfee930ae3ac6536c)) + - make hydration more robust ([`bbb6ee1`](https://github.com/DioxusLabs/dioxus/commit/bbb6ee10de824f2e3259576ac01768640c884279)) + - new versions of everything ([`4ea5c99`](https://github.com/DioxusLabs/dioxus/commit/4ea5c990d72b1645724ab0a88ffea2baf28e2835)) + - bump all versions ([`4f92ba4`](https://github.com/DioxusLabs/dioxus/commit/4f92ba41602d706449c1bddabd49829873ee72eb)) + - switch to log tracing ([`e2a6454`](https://github.com/DioxusLabs/dioxus/commit/e2a6454527cb81d24f7bd2a097beb644f34e3c2d)) + - fix the reference code ([`3de776c`](https://github.com/DioxusLabs/dioxus/commit/3de776c42a1a40429d9bd57458cb6297ea792fd0)) + - dioxus web ([`7abb3cc`](https://github.com/DioxusLabs/dioxus/commit/7abb3cc79c6d4905d7529a72638b9182761b24f6)) + - dioxus web ([`c0cd50b`](https://github.com/DioxusLabs/dioxus/commit/c0cd50b1d3e0f4b8867bc511b7a9edf5c1b64864)) + - make tests pass ([`75fa7b4`](https://github.com/DioxusLabs/dioxus/commit/75fa7b4aa672a8a10afcd11016a1b80e0e6f0f02)) + - overhaul examples and clean things up ([`420a30e`](https://github.com/DioxusLabs/dioxus/commit/420a30e5d432722e9da16311deb6aa60ea46b0cb)) + - more API updates ([`a4f280d`](https://github.com/DioxusLabs/dioxus/commit/a4f280d16399205c638033bf9beb858e478e98ff)) + - get web ready gto publish ([`2d58d38`](https://github.com/DioxusLabs/dioxus/commit/2d58d380bef83f799c81738a0a7b012e45cdb9b7)) + - readme and examples syntax ([`3dc0e59`](https://github.com/DioxusLabs/dioxus/commit/3dc0e59876f5aba88ed26f1bbd692820f239d4b0)) + - rip out unsafe task engine ([`c7d001c`](https://github.com/DioxusLabs/dioxus/commit/c7d001cbb457929b9742ad96c4997cdcc695bb1a)) + - upgrade to new version of dioxus core. ([`cda759c`](https://github.com/DioxusLabs/dioxus/commit/cda759c659dfc4b1dde17e3896c35525005026df)) + - clean it up a bit ([`fa106be`](https://github.com/DioxusLabs/dioxus/commit/fa106be1f5a45fa5707e66542e52c9f09e8cea7a)) + - go back to noisy lifetime solution ([`8daf7a6`](https://github.com/DioxusLabs/dioxus/commit/8daf7a6ed86df72522b089aa2647eea7bee0f3b6)) + - clean up the core crate ([`e6c6bbd`](https://github.com/DioxusLabs/dioxus/commit/e6c6bbdc1ec6a8c251b78c05ca104f006b6fad26)) + - rename fc to component ([`1e4a599`](https://github.com/DioxusLabs/dioxus/commit/1e4a599d14af85a2d1c29a442dd489f8dc8df321)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.1 ([`2b92837`](https://github.com/DioxusLabs/dioxus/commit/2b928372fb1b74a4d4e220ff3d798bb7e52f79d2)) + - bubbling ([`19df1bd`](https://github.com/DioxusLabs/dioxus/commit/19df1bda109aba03c40ff631263bcb7035004ca0)) + - some docs and suspense ([`93d4b8c`](https://github.com/DioxusLabs/dioxus/commit/93d4b8ca7c1b133e5dba2a8dc9a310dbe1357001)) + - move examples around ([`1e6e5e6`](https://github.com/DioxusLabs/dioxus/commit/1e6e5e611b61571f272289adefc9cdd7d59c4399)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`0d480a4`](https://github.com/DioxusLabs/dioxus/commit/0d480a4c437d424f0eaff486e510a8fd3f3e6584)) + - keyword length ([`868f673`](https://github.com/DioxusLabs/dioxus/commit/868f6739d2b2c5f2ace0c5240cff8008901e818c)) + - docs and router ([`a5f05d7`](https://github.com/DioxusLabs/dioxus/commit/a5f05d73acc0e47b05cff64a373482519414bc7c)) + - upgrade syntax ([`fd93ee8`](https://github.com/DioxusLabs/dioxus/commit/fd93ee89c19b085a04307ef30217170518defa8e)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`b32665d`](https://github.com/DioxusLabs/dioxus/commit/b32665d7212a5b9a3e21cb7af7abba63ae399fac)) + - tags ([`a33f770`](https://github.com/DioxusLabs/dioxus/commit/a33f7701fcf5f917fea8719253650b5ad92554fd)) + - events bubble now ([`f223406`](https://github.com/DioxusLabs/dioxus/commit/f2234068ba7cd915a00a81e41660d7d6ee1177cc)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`3a706ac`](https://github.com/DioxusLabs/dioxus/commit/3a706ac4168db137723bea90d7a0058190adfc3c)) + - update cargo tomls ([`e4c06ce`](https://github.com/DioxusLabs/dioxus/commit/e4c06ce8e893779d2aad0883a1bb27d193bc5985)) + - Release dioxus-core v0.1.3, dioxus-core-macro v0.1.2, dioxus-html v0.1.0, dioxus-desktop v0.0.0, dioxus-hooks v0.1.3, dioxus-liveview v0.1.0, dioxus-mobile v0.0.0, dioxus-router v0.1.0, dioxus-ssr v0.1.0, dioxus-web v0.0.0, dioxus v0.1.0 ([`270dfc9`](https://github.com/DioxusLabs/dioxus/commit/270dfc9590b2354d083ea8da5cc0e1a1497d30e0)) + - update local examples and docs to support new syntaxes ([`4de16c4`](https://github.com/DioxusLabs/dioxus/commit/4de16c4779648e591b3869b5df31271ae603c812)) + - support innerhtml ([`cfc24f5`](https://github.com/DioxusLabs/dioxus/commit/cfc24f5451cd2d1e9dcd5f1589ee50f705404110)) + - massage lifetimes ([`9726a06`](https://github.com/DioxusLabs/dioxus/commit/9726a065b0d4fb1ede5b53a2ddd58c855e51539f)) + - move everything over to a stack dst ([`0e9d5fc`](https://github.com/DioxusLabs/dioxus/commit/0e9d5fc5306ab508d5af6999a4064f9b8b48460f)) + - event system ([`1f22a06`](https://github.com/DioxusLabs/dioxus/commit/1f22a06a36f72073188b8c9009dd4950b3f4ff9a)) + - support desktop more completely ([`efd0e9b`](https://github.com/DioxusLabs/dioxus/commit/efd0e9b5648c809057f339083ba9d454f810d483)) + - add update functionality to useref ([`a2b0c50`](https://github.com/DioxusLabs/dioxus/commit/a2b0c50a343005c63c7032bcefb8323b78350bb9)) + - lnks to projects ([`460783a`](https://github.com/DioxusLabs/dioxus/commit/460783ad549818a85db634ed9c39ffce210b98ec)) + - overhaul event system ([`7a03c1d`](https://github.com/DioxusLabs/dioxus/commit/7a03c1d2b48590276b182465679387655fe08f3a)) + - threadsafe ([`82953f2`](https://github.com/DioxusLabs/dioxus/commit/82953f2ac37913f83a822333acd0c47e20777d31)) + - all the bugs! ([`478255f`](https://github.com/DioxusLabs/dioxus/commit/478255f40d4de1d2e3f3cc9b6d758b30ff394b39)) + - ssr ([`71f0df6`](https://github.com/DioxusLabs/dioxus/commit/71f0df63745fe5c17468693144c552ea3a0a7101)) + - shared state mechanisms ([`4a4c7af`](https://github.com/DioxusLabs/dioxus/commit/4a4c7afca7e1beadd4b213214074fdb420eb0923)) + - fix web list issue ([`da4423c`](https://github.com/DioxusLabs/dioxus/commit/da4423c141f1f376df5f3f2580e5284831744a7e)) + - move macro crate out of core ([`7bdad1e`](https://github.com/DioxusLabs/dioxus/commit/7bdad1e2e6f67e74c9f67dde2150140cf8a090e8)) + - clean up to web ([`b43a964`](https://github.com/DioxusLabs/dioxus/commit/b43a964f982eb871195278a093cc214c3a8ad66d)) + - clean up the web module ([`823adc0`](https://github.com/DioxusLabs/dioxus/commit/823adc0834b581327aee745c72ce8993f0bba5aa)) + - slightly simplify crm ([`f07e345`](https://github.com/DioxusLabs/dioxus/commit/f07e345eb2a2e4197270396dffebc85c65272fe0)) + - fix some event stuff for web and core ([`725b4a1`](https://github.com/DioxusLabs/dioxus/commit/725b4a1d7f5d629b1b0a163b65bfd93b2f8a151b)) + - a cute crm ([`718fa14`](https://github.com/DioxusLabs/dioxus/commit/718fa14b45df38b40b0c0dff7bdc923cba57026b)) + - on collaborative scheduling ([`1a32383`](https://github.com/DioxusLabs/dioxus/commit/1a323835c8c4f667e5744bbf5447776f1dc51fca)) + - examples ([`1a2f91e`](https://github.com/DioxusLabs/dioxus/commit/1a2f91ed91c13dae553ecde585462ab261b1b95d)) + - mutations ([`fac4233`](https://github.com/DioxusLabs/dioxus/commit/fac42339c272b0e430ebf4f31b6061a0635d3e19)) + - performance looks good, needs more testing ([`4b6ca05`](https://github.com/DioxusLabs/dioxus/commit/4b6ca05f2c3ad647842c858967da9c87f1915825)) + - add test_dom ([`a652090`](https://github.com/DioxusLabs/dioxus/commit/a652090dc5708db334fa7430fededb1bac207880)) + - bottom up dropping ([`f2334c1`](https://github.com/DioxusLabs/dioxus/commit/f2334c17be2612d926361686d7d40a57e3ffe9b9)) + - cleanup ([`1745a44`](https://github.com/DioxusLabs/dioxus/commit/1745a44d949b994b64ea1fb715cbe36963ae7027)) + - select figured out ([`84b5ddd`](https://github.com/DioxusLabs/dioxus/commit/84b5ddded57238a64e966ec07334e6f9bd86ecf8)) + - re-enable suspense ([`687cda1`](https://github.com/DioxusLabs/dioxus/commit/687cda1b6d9595357d1dc8720ebe921f61098d8f)) + - fill out the snippets ([`6051b0e`](https://github.com/DioxusLabs/dioxus/commit/6051b0ec86927704451f4ce6cdf8f988e59702ae)) + - amazingly awesome error handling ([`4a72b31`](https://github.com/DioxusLabs/dioxus/commit/4a72b3140bd244da602deada1eeecded65ff5848)) + - some ideas ([`05c909f`](https://github.com/DioxusLabs/dioxus/commit/05c909f320765aec1bf4c1c55ca59ffd5525a2c7)) + - proper handling of events ([`d7940aa`](https://github.com/DioxusLabs/dioxus/commit/d7940aa2ac2017316d62e0f2eac0701dc6ad1f09)) + - websys dom working properly ([`cfa0247`](https://github.com/DioxusLabs/dioxus/commit/cfa0247cbb1233e1df275374a73f431650a9250f)) + - big updates to the reference ([`583fdfa`](https://github.com/DioxusLabs/dioxus/commit/583fdfa5618e11d660985b97e570d4503be2ff49)) + - broken diff ([`f15e1fa`](https://github.com/DioxusLabs/dioxus/commit/f15e1fa892070f9cf1fc627eb9c36fbaa0dc309b)) + - cleanup workspace ([`8f0bb5d`](https://github.com/DioxusLabs/dioxus/commit/8f0bb5dc5bfa3e775af567c4b569622cdd932af1)) + - changes to scheduler ([`098d382`](https://github.com/DioxusLabs/dioxus/commit/098d3821ed89ad38d99077a6556b48a7e91fc3fc)) + - web stuff ([`acad9ca`](https://github.com/DioxusLabs/dioxus/commit/acad9ca622748f96599dd02ad22aaeaae3621b76)) + - making progress on diffing and hydration ([`49856cc`](https://github.com/DioxusLabs/dioxus/commit/49856ccd6865f88d63765f26d27f7e945b554da0)) + - mvoe away from compound context ([`a2c7d17`](https://github.com/DioxusLabs/dioxus/commit/a2c7d17b0595769f60bc1c2bbf7cbe32cec37486)) + - make hooks free-functions ([`e5c88fe`](https://github.com/DioxusLabs/dioxus/commit/e5c88fe3a49649ecb308decd14c2557963978619)) + - more work on suspense and documentation ([`37ed4be`](https://github.com/DioxusLabs/dioxus/commit/37ed4bed8cf28eb65465d41e15e8d758cb3d9679)) + - omg what a dumb mistake ([`f782e14`](https://github.com/DioxusLabs/dioxus/commit/f782e142118fb7acf1b88a0f3fbb03e4a5e3e91e)) + - suspense! ([`4837d8e`](https://github.com/DioxusLabs/dioxus/commit/4837d8e741343d26f31b55e4478a374dc761e538)) + - refactor ([`8b0eb87`](https://github.com/DioxusLabs/dioxus/commit/8b0eb87c72ea9d444dee99a8b05643f19fea2634)) + - bless up, no more segfaults ([`4a0068f`](https://github.com/DioxusLabs/dioxus/commit/4a0068f09918adbc299150edcf777f342ced0dd3)) + - more suspended nodes! ([`de9f61b`](https://github.com/DioxusLabs/dioxus/commit/de9f61bcf48c0d6e35e46c337b72a713c9f9f7d2)) + - more docs ([`34c3107`](https://github.com/DioxusLabs/dioxus/commit/34c3107418df89620cb9dfbd9300f89a1fe6e68f)) + - basic support for scheduled rendering ([`c52af22`](https://github.com/DioxusLabs/dioxus/commit/c52af221f755601a9e826ffc2c355def138999d0)) + - move over to push based mechanism ([`80e6c25`](https://github.com/DioxusLabs/dioxus/commit/80e6c256980eb3e8c32e30f3dbb43c8b3b9a9cf4)) + - solve some issues regarding listeners ([`dfaf5ad`](https://github.com/DioxusLabs/dioxus/commit/dfaf5adee164f44a679ab21d730caaab3610e01f)) + - architecture document and edit list ([`e723876`](https://github.com/DioxusLabs/dioxus/commit/e7238762ae518c5688f9339d11832d17f99ad553)) + - move to slab ([`6084fbc`](https://github.com/DioxusLabs/dioxus/commit/6084fbcd11d1669db135098d920488e2c01a7014)) + - change in cx to cx ([`9971ff2`](https://github.com/DioxusLabs/dioxus/commit/9971ff215db6f771b7ec1cae2517c85d47d38622)) + - move things into a "shared" object ([`f644d7c`](https://github.com/DioxusLabs/dioxus/commit/f644d7c44159eef091552dcc90acbb151ea76b21)) + - it loads the doggos ([`abf4759`](https://github.com/DioxusLabs/dioxus/commit/abf47596bc2c092bd2f646a77807728416159ad4)) + - task system works ([`3a57b94`](https://github.com/DioxusLabs/dioxus/commit/3a57b942624afb8aa6650aeee05466c3c9ce967e)) + - more overhaul on virtualevents ([`41cc429`](https://github.com/DioxusLabs/dioxus/commit/41cc42919d42453f8f2560aa852211364af4ad3d)) + - more work on web ([`3bf19d8`](https://github.com/DioxusLabs/dioxus/commit/3bf19d8106e0cca7749b7346e9b0adfce654d782)) + - ricraf polyfill ([`59219b9`](https://github.com/DioxusLabs/dioxus/commit/59219b9ef22caa5896046ccaabc8a225cc4b5a53)) + - ....sigh..... so the diffing algorithm is robust ([`68ed1c0`](https://github.com/DioxusLabs/dioxus/commit/68ed1c04e7e773f9e6c0a5148f0ea89b97b6784e)) + - remove global allocation for props ([`8b3ac0b`](https://github.com/DioxusLabs/dioxus/commit/8b3ac0b57ca073c1451e8d5df93882c9360ca52a)) + - ric_raf wired up ([`8b0d04c`](https://github.com/DioxusLabs/dioxus/commit/8b0d04ce585596f561f15e92fc087e2c7063eb07)) + - rebuild doesn't return errors ([`f457b71`](https://github.com/DioxusLabs/dioxus/commit/f457b7113129479cad577237ef21cb735fffe483)) + - more examples ([`56e7eb8`](https://github.com/DioxusLabs/dioxus/commit/56e7eb83a97ebd6d5bcd23464cfb9d718e5ac26d)) + - tests and documentation ([`da81591`](https://github.com/DioxusLabs/dioxus/commit/da8159190b84d13caa9dfe7dea385a809cf84199)) + - append isnt backwards ([`df8aa77`](https://github.com/DioxusLabs/dioxus/commit/df8aa77198712559f72bef093d064e03b2a5245a)) + - it works but the page is backwards ([`cdcd861`](https://github.com/DioxusLabs/dioxus/commit/cdcd8611e87ffb5e24de7b9fe6c656af3053276e)) + - static node infrastructure and ssr changes ([`9abb047`](https://github.com/DioxusLabs/dioxus/commit/9abb0470b7869019d539a2fc21da3872348ae38b)) + - more refactor for async ([`975fa56`](https://github.com/DioxusLabs/dioxus/commit/975fa566f9809f8fa2bb0bdb07fbfc7f855dcaeb)) + - enable arbitrary body in rsx! macro ([`7aec40d`](https://github.com/DioxusLabs/dioxus/commit/7aec40d57e78ec13ff3a90ca8149521cbf1d9ff2)) + - working on async diff ([`f41cff5`](https://github.com/DioxusLabs/dioxus/commit/f41cff571fd11bb00820c0bf9d147e81ed5a6a53)) + - move some examples around ([`98a0933`](https://github.com/DioxusLabs/dioxus/commit/98a09339fd3190799ea4dd316908f0a53fdf2413)) + - fix issues with lifetimes ([`a38a81e`](https://github.com/DioxusLabs/dioxus/commit/a38a81e1290375cae685f7c49d3745e4298fab26)) + - groundwork for noderefs ([`c1afeba`](https://github.com/DioxusLabs/dioxus/commit/c1afeba1efb1a063705466a14648beee08cacb86)) + - more examples ([`11f89e5`](https://github.com/DioxusLabs/dioxus/commit/11f89e5d338d14a7aeece0a6275c24ae65913ce7)) + - add edits back! and more webview support! ([`904b26f`](https://github.com/DioxusLabs/dioxus/commit/904b26f7111c3fc66400744ff6192e4b20bf6d74)) + - enable more diffing ([`e8f29a8`](https://github.com/DioxusLabs/dioxus/commit/e8f29a8f8ac56020bee0048021efa52547307a77)) + - example ([`eb39b00`](https://github.com/DioxusLabs/dioxus/commit/eb39b000d7f0ef16d0b83ec44d3926f4690fd08f)) + - wip ([`952a91d`](https://github.com/DioxusLabs/dioxus/commit/952a91d5408aaf789b496f11d01c3b3f7fcf9059)) + - integrate signals ([`93900aa`](https://github.com/DioxusLabs/dioxus/commit/93900aac4443db2e63631ed928294af74201a9ff)) + - move to slotmap ([`7665f2c`](https://github.com/DioxusLabs/dioxus/commit/7665f2c6cf05cea64bb9131381d4ac11cbdeb932)) + - integrate serialization and string borrowing ([`f4fb5bb`](https://github.com/DioxusLabs/dioxus/commit/f4fb5bb454536d9f108c7e276ce98a8924ab45e1)) + - more work on diffing machine ([`9813f23`](https://github.com/DioxusLabs/dioxus/commit/9813f23cdf7b32bc058771c91db3f182d6224905)) + - rename ctx to cx ([`81382e7`](https://github.com/DioxusLabs/dioxus/commit/81382e7044fb3dba61d4abb1e6086b7b29143116)) + - move around examples ([`70cd46d`](https://github.com/DioxusLabs/dioxus/commit/70cd46dbb2a689ae2d512e142b8aee9c80798430)) + - start moving events to rc ([`b9ff95f`](https://github.com/DioxusLabs/dioxus/commit/b9ff95fa12c46365fe73b64a4926a506d5da2342)) + - rename recoil to atoms ([`36ea39a`](https://github.com/DioxusLabs/dioxus/commit/36ea39ae30aa3f1fb2d718c0fdf08850c6bfd3ac)) + - more examples and docs ([`7fbaf69`](https://github.com/DioxusLabs/dioxus/commit/7fbaf69cabbdde712bb3fd9e4b2a5dc18b9390e9)) + - more work on updating syntad ([`47e8960`](https://github.com/DioxusLabs/dioxus/commit/47e896038ef3655566f3eda83d1d2adfefbc8862)) + - some cleanup and documentation ([`517d7f1`](https://github.com/DioxusLabs/dioxus/commit/517d7f14957c4dae9fc894bfbdcd00a955d09f20)) + - docs ([`f5683a2`](https://github.com/DioxusLabs/dioxus/commit/f5683a23464992ecace463a61414795b5a2c58c8)) + - pre vnodes instead of vnode ([`fe6938c`](https://github.com/DioxusLabs/dioxus/commit/fe6938ceb3dba0796ae8bab52ae41248dc0d3650)) + - events work again! ([`9d7ee79`](https://github.com/DioxusLabs/dioxus/commit/9d7ee79826a3b3fb952a70abcbb16dcd3363d2fb)) + - props memoization is more powerful ([`73047fe`](https://github.com/DioxusLabs/dioxus/commit/73047fe95678d50fcfd62a4ace7c6b406c5304e1)) + - massive changes to definition of components ([`508c560`](https://github.com/DioxusLabs/dioxus/commit/508c560320d78730fa058156421523ffa5695d9d)) + - moving to IDs ([`79127ea`](https://github.com/DioxusLabs/dioxus/commit/79127ea6cdabf62bf91e777aaacb563e3aa5e619)) + - move to static props ([`c1fd848`](https://github.com/DioxusLabs/dioxus/commit/c1fd848f89b0146581d8e485fa0d4a847387b963)) + - doesnt share on thread ([`fe67ff9`](https://github.com/DioxusLabs/dioxus/commit/fe67ff9fa4c9d5009670c922e192dccedb7cd09a)) + - parity document ([`ba97541`](https://github.com/DioxusLabs/dioxus/commit/ba975410f9fe2a5b3a0e407f6a2478bf86577f29)) + - recoil ([`ee67654`](https://github.com/DioxusLabs/dioxus/commit/ee67654f58aecca91c640fc49451d0b99bc05981)) + - buff the readme and docs ([`3cfa1fe`](https://github.com/DioxusLabs/dioxus/commit/3cfa1fe125886787f35905ed9b05340a739bc654)) + - Todomvc in progress ([`b843dbd`](https://github.com/DioxusLabs/dioxus/commit/b843dbd3679abf86a34347d87fd4ce5fe9e2aca5)) + - introduce children for walking down the tree ([`0d44f00`](https://github.com/DioxusLabs/dioxus/commit/0d44f009b0176cb9cf8203374cf534f5af7de63c)) + - Clean up repo a bit ([`a99147c`](https://github.com/DioxusLabs/dioxus/commit/a99147c85b53b4ee336a94deee463d793cebf572)) + - some code health ([`c28697e`](https://github.com/DioxusLabs/dioxus/commit/c28697e1fe3136d1835f2b663715f34aab9f4b17)) + - major overhaul to diffing ([`9810fee`](https://github.com/DioxusLabs/dioxus/commit/9810feebf57f93114e3d7faf6de053ac192593a9)) + - Wip ([`c809095`](https://github.com/DioxusLabs/dioxus/commit/c809095124d06175e7f49853c34e48d7335573c5)) + - refactor a bit ([`2eeb8f2`](https://github.com/DioxusLabs/dioxus/commit/2eeb8f2386409b53836fab687097d89af7b883c3)) + - todos ([`8c541f6`](https://github.com/DioxusLabs/dioxus/commit/8c541f66d5f7ef2286f2cdf9b0496a9c404471f9)) + - todomvc ([`cfa0927`](https://github.com/DioxusLabs/dioxus/commit/cfa0927cdd40bc3dba22996018605dbad91d0391)) + - todomvc ([`ce33031`](https://github.com/DioxusLabs/dioxus/commit/ce33031519fbbbd207f1dffb75acf62bf59e3c9e)) + - more ergonomics, more examples ([`0bcff1f`](https://github.com/DioxusLabs/dioxus/commit/0bcff1f88e4b1a633b7a9b7c6c2e39b8bd3666c4)) + - building large apps, revamp macro ([`9f7f43b`](https://github.com/DioxusLabs/dioxus/commit/9f7f43b6614aaef2d7dded7058e81934f28f5dec)) + - more liveview and webview custom client ([`9b560df`](https://github.com/DioxusLabs/dioxus/commit/9b560dfedb988b258f5c564986759cb83730a96c)) + - livehost bones ([`7856f2b`](https://github.com/DioxusLabs/dioxus/commit/7856f2b1537b52478a6fa1ca55d0a8c5793a91e5)) + - some stuff related to event listeners. POC for lifecyel ([`5b7887d`](https://github.com/DioxusLabs/dioxus/commit/5b7887d76c714d11e0cea5207197ffaac856a0a7)) + - diffing approach slightly broken ([`4e48e05`](https://github.com/DioxusLabs/dioxus/commit/4e48e0514e1caed9f60bcac4048114008ac76439)) + - remove old macro ([`9d0727e`](https://github.com/DioxusLabs/dioxus/commit/9d0727edabbf759dac8a3cffabd7103d08b728c1)) + - add deeply neste example ([`e66827e`](https://github.com/DioxusLabs/dioxus/commit/e66827ec92e23bf0602f92d5223894a7831dfd0f)) + - update examples ([`39bd185`](https://github.com/DioxusLabs/dioxus/commit/39bd1856f4d7c2364d6ca2c7812ab5d6e71252b9)) + - ensure mutabality is okay when not double-using the components ([`305ff91`](https://github.com/DioxusLabs/dioxus/commit/305ff919effa919ff7ea5db2a71cf21eca106588)) + - somewhat working with rc and weak ([`d4f1cea`](https://github.com/DioxusLabs/dioxus/commit/d4f1ceaffbc0551ea3b179a101885275690cebec)) + - foregin eq from comparapable comp type. ([`ec801ea`](https://github.com/DioxusLabs/dioxus/commit/ec801eab167f9be5325ab877e74e2b65d501e129)) + - staticify? ([`5ad8188`](https://github.com/DioxusLabs/dioxus/commit/5ad81885e499bf02ac79e0098f7956d02ee5f2e5)) + - Feat: it's awersome ([`8dc2619`](https://github.com/DioxusLabs/dioxus/commit/8dc26195e274874a7de6c806372f9f77a5c82c5d)) + - yeet, synthetic somewhat wired up ([`d959806`](https://github.com/DioxusLabs/dioxus/commit/d9598066c2679d9d0b9ca0ce1d3f26110a238cd2)) + - remove FC ([`92d9521`](https://github.com/DioxusLabs/dioxus/commit/92d9521a73aefb620b354ae5954617109dd06e7e)) + - more cleanup ([`5a9155b`](https://github.com/DioxusLabs/dioxus/commit/5a9155b059acc1fb3c8b8accbeca3701ce4f0ab6)) + - add context to builder ([`cf16090`](https://github.com/DioxusLabs/dioxus/commit/cf16090838d127354e333dcbc0b06474835b87d6)) + - listeners now have scope information ([`fcd68e6`](https://github.com/DioxusLabs/dioxus/commit/fcd68e61d2400628469ba193b009e7bf1fd3acdf)) + - broken, but solved ([`cb74d70`](https://github.com/DioxusLabs/dioxus/commit/cb74d70f831b5510f1ee191d91eaff621ffa6256)) + - accept closures directly in handler ([`f225030`](https://github.com/DioxusLabs/dioxus/commit/f225030506967415a21f4af0372477cb5224ee7c)) + - bug that phantom triggered events ([`07f671c`](https://github.com/DioxusLabs/dioxus/commit/07f671c8e19a2a2e90afc3db94c4edebcfffe982)) + - wowza got it all working ([`4b8e9f4`](https://github.com/DioxusLabs/dioxus/commit/4b8e9f4a125b9d55439d919786f33d9d5df234e8)) + - update readme and examples ([`ffaf687`](https://github.com/DioxusLabs/dioxus/commit/ffaf6878963981860089c2362947bf77a84c9058)) + - view -> render ([`c8bb392`](https://github.com/DioxusLabs/dioxus/commit/c8bb392cadb22ddb41e53a776ab0677945579a9c)) + - bump core version ([`6fabd8c`](https://github.com/DioxusLabs/dioxus/commit/6fabd8ccc87c0b30a95693e85b98bdb4e2b1a936)) + - update and prep for dioxusweb ([`ab655ea`](https://github.com/DioxusLabs/dioxus/commit/ab655eac97fcd9ea3542edbdea4c6cf9a06956fd)) + - a few bugs, but the event system works! ([`3b30fa6`](https://github.com/DioxusLabs/dioxus/commit/3b30fa61b8f1927f22ffec373a3405ddfdefde39)) + - moving to CbIdx as serializable event system ([`e840f47`](https://github.com/DioxusLabs/dioxus/commit/e840f472faf25d8e1d65abeb610daed6a522771d)) + - custom format_args for inlining variables into html templates ([`e4b1f6e`](https://github.com/DioxusLabs/dioxus/commit/e4b1f6ea0d0db707cf757dabf8635e9fc91a3e0f)) + - begin WIP on html macro ([`a8b1225`](https://github.com/DioxusLabs/dioxus/commit/a8b1225c4853a61c7862e1a33eba64b8ed4e06d5)) + - move webview logic into library ([`32b45e5`](https://github.com/DioxusLabs/dioxus/commit/32b45e5ba168390e338a343eef6baba5cca9468b)) + - comments ([`18a7a1f`](https://github.com/DioxusLabs/dioxus/commit/18a7a1f9c40eb3b1ac263cbd21b1daa6da9c7093)) + - buff up examples and docs ([`8d3e2ad`](https://github.com/DioxusLabs/dioxus/commit/8d3e2ade7aef491921bb51f0d35b7253bbc800f8)) + - wire up rebuild ([`06ae4fc`](https://github.com/DioxusLabs/dioxus/commit/06ae4fc17833ff9695b0645f940b5ea32eeb4ef0)) + - update websys with lifecycle ([`4d01455`](https://github.com/DioxusLabs/dioxus/commit/4d01455729dac55cf049c50f47a511190d13550e)) + - fix internal lifecycle ([`5204862`](https://github.com/DioxusLabs/dioxus/commit/5204862bc220e55afe8d2f8f4422cb530a6ea1cf)) + - add css example ([`edf09c1`](https://github.com/DioxusLabs/dioxus/commit/edf09c1892f2521f41bf84372629e84bed86e921)) + - WIP ctx ([`7a6aabe`](https://github.com/DioxusLabs/dioxus/commit/7a6aabe4f39aa38bec7b548d030c11b2d9f481cb)) + - desktop app wired up ([`b3e6886`](https://github.com/DioxusLabs/dioxus/commit/b3e68863514a33291556ce278b7255fdf53e8b50)) + - re-enable stack machine approach ([`e3ede7f`](https://github.com/DioxusLabs/dioxus/commit/e3ede7fcbf7acb5d8762bcddb5f1499104bb0ce7)) + - WIP on deserialize ([`f22ff83`](https://github.com/DioxusLabs/dioxus/commit/f22ff8319078d283e675ff8dc735da5bf8efe0df)) + - web example + cli writes to browser screen! ([`8439994`](https://github.com/DioxusLabs/dioxus/commit/84399948596c573883bd29786edee48f5d4ef438)) + - wire up a very basic dom updater ([`c4e8d8b`](https://github.com/DioxusLabs/dioxus/commit/c4e8d8bb31d54d70c8da2f4a5e3e3926ff7df92b)) + - major overhaul to diffing, using a "diffing machine" now ([`4dfdf91`](https://github.com/DioxusLabs/dioxus/commit/4dfdf9123608c69b86a56acbd6d8810b0cf1918c)) + - remove generic paramter on VDOM ([`4c291a0`](https://github.com/DioxusLabs/dioxus/commit/4c291a0efdbaadf5c2212248367c0a78046e2f83)) + - wire up some of the changelist for diff ([`d063a19`](https://github.com/DioxusLabs/dioxus/commit/d063a199391383288e807ac03d333091bac6ba60)) + - event loop ([`ea2aa4b`](https://github.com/DioxusLabs/dioxus/commit/ea2aa4b0c97b3292178284e05756d1415902a9e2)) + - Dioxus-webview ([`9c01736`](https://github.com/DioxusLabs/dioxus/commit/9c0173689539210d14847613f9a1694e6cb34506)) + - more docs, dissolve vnode crate into dioxus-core ([`9c616ea`](https://github.com/DioxusLabs/dioxus/commit/9c616ea5c092a756a437ccf175c8b04ada50b1b6)) + - WIP ([`ce34d0d`](https://github.com/DioxusLabs/dioxus/commit/ce34d0dfcda82d847a6032f8f42749b39e0fba18))
## v0.0.0 (2021-12-15) diff --git a/packages/web/README.md b/packages/web/README.md index 22f453482..630a56411 100644 --- a/packages/web/README.md +++ b/packages/web/README.md @@ -8,7 +8,7 @@ [crates-badge]: https://img.shields.io/crates/v/dioxus-web.svg [crates-url]: https://crates.io/crates/dioxus-web [mit-badge]: https://img.shields.io/badge/license-MIT-blue.svg -[mit-url]: https://github.com/dioxuslabs/dioxus/blob/master/LICENSE +[mit-url]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT [actions-badge]: https://github.com/dioxuslabs/dioxus/actions/workflows/main.yml/badge.svg [actions-url]: https://github.com/dioxuslabs/dioxus/actions?query=workflow%3ACI+branch%3Amaster [discord-badge]: https://img.shields.io/discord/899851952891002890.svg?logo=discord&style=flat-square @@ -36,7 +36,7 @@ Run Dioxus in the browser using WebAssembly. This project is licensed under the [MIT license]. -[mit license]: https://github.com/DioxusLabs/dioxus/blob/master/LICENSE-MIT +[mit license]: https://github.com/dioxuslabs/dioxus/blob/main/LICENSE-MIT Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Dioxus by you shall be licensed as MIT without any additional diff --git a/translations/ja-jp/README.md b/translations/ja-jp/README.md index 7482dd60d..9cecc5eb0 100644 --- a/translations/ja-jp/README.md +++ b/translations/ja-jp/README.md @@ -42,7 +42,7 @@ | ガイド | - 中文 + 中文 | PT-BR diff --git a/translations/pt-br/README.md b/translations/pt-br/README.md index c8961c4cc..c5f64b3c1 100644 --- a/translations/pt-br/README.md +++ b/translations/pt-br/README.md @@ -40,11 +40,11 @@ | Exemplos | - Guia + Guia | - 中文 + 中文 | - 日本語 + 日本語 @@ -85,11 +85,11 @@ Se você conhece React, então você já conhece o Dioxus. - - - - - + + + + +
TutorialWebDesktopSSRMóvelTutorialWebDesktopSSRMóvel
@@ -97,7 +97,7 @@ Se você conhece React, então você já conhece o Dioxus. | Navegador de Arquivos (Desktop) | WiFi Scanner (Desktop) | TodoMVC (Todas as Plataformas) | E-commerce com Tailwind (SSR/LiveView) | | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| [![Explorador de Arquivos](https://github.com/DioxusLabs/example-projects/raw/master/file-explorer/image.png)](https://github.com/DioxusLabs/example-projects/blob/master/file-explorer) | [![Wifi Scanner Demo](https://github.com/DioxusLabs/example-projects/raw/master/wifi-scanner/demo_small.png)](https://github.com/DioxusLabs/example-projects/blob/master/wifi-scanner) | [![TodoMVC example](https://github.com/DioxusLabs/example-projects/raw/master/todomvc/example.png)](https://github.com/DioxusLabs/example-projects/blob/master/todomvc) | [![Exemplo de E-commerce](https://github.com/DioxusLabs/example-projects/raw/master/ecommerce-site/demo.png)](https://github.com/DioxusLabs/example-projects/blob/master/ecommerce-site) | +| [![Explorador de Arquivos](https://github.com/DioxusLabs/example-projects/blob/master/file-explorer/assets/image.png)](https://github.com/DioxusLabs/example-projects/blob/master/file-explorer) | [![Wifi Scanner Demo](https://github.com/DioxusLabs/example-projects/raw/master/wifi-scanner/demo_small.png)](https://github.com/DioxusLabs/example-projects/blob/master/wifi-scanner) | [![TodoMVC example](https://github.com/DioxusLabs/example-projects/raw/master/todomvc/example.png)](https://github.com/DioxusLabs/example-projects/blob/master/todomvc) | [![Exemplo de E-commerce](https://github.com/DioxusLabs/example-projects/raw/master/ecommerce-site/demo.png)](https://github.com/DioxusLabs/example-projects/blob/master/ecommerce-site) | Veja a página [awesome-dioxus](https://github.com/DioxusLabs/awesome-dioxus) para uma lista curada do conteúdo dentro do ecossistema do Dioxus. @@ -161,13 +161,12 @@ Dioxus é único no ecossistema do Rust por suportar: - SSR com `hydration` feito pelo Cliente - Suporte à aplicação Desktop -Para mais informações sobre quais funções estão atualmente disponíveis e para o progresso futuro, veja [O Guia](https://dioxuslabs.com/guide/pt-br/). +Para mais informações sobre quais funções estão atualmente disponíveis e para o progresso futuro, veja [O Guia](https://dioxuslabs.com/learn/0.5). ## Projeto dentro do ecossistema Dioxus Quer adentrar e ajudar a construir o futuro do frontend em Rust? Há um vasto número de lugares em que você pode contribuir e fazer uma grande diferença: -- [TUI renderer](https://github.com/dioxusLabs/plasmo) - [Ferramentas CLI](https://github.com/dioxusLabs/cli) - [Documentação e Exemplos de Projeto](https://github.com/dioxusLabs/docsite) - LiveView e Servidor Web