diff --git a/README.md b/README.md index ddbed26..1ff4ae3 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,30 @@ # Fable.Solid -Fable bindings for [SolidJS](https://www.solidjs.com/). You can use it in combination with Feliz.JSX.Solid to write React-like apps without a Virtual DOM. Read [this post](https://fable.io/blog/2022/2022-10-18-fable-solid.html) for more information. -To test run `npm install && npm start`. +This repository contains: + +### Fable.Solid +![NuGet Version](https://img.shields.io/nuget/v/Fable.Solid) + +Fable bindings for [SolidJS](https://www.solidjs.com/). +You can use it in combination with [Feliz.JSX.Solid](https://github.com/fable-compiler/Feliz.JSX) to write React-like apps without a Virtual DOM. +Read [this post](https://fable.io/blog/2022/2022-10-18-fable-solid.html) for more information. + +(in folder [src/Fable.Solid](src/Fable.Solid)) + +### Elmish.Solid +![NuGet Version](https://img.shields.io/nuget/v/Elmish.Solid) + +Elmish bindings for SolidJS. +To use the [Elmish](https://elmish.github.io/elmish/) architecture with SolidJS +(in folder [src/Elmish.Solid](src/Elmish.Solid)) + +### A sample app +You can see it live [here](https://fable-compiler.github.io/Fable.Solid/) +To compile and watch via Vite run `npm install && npm start`. +In folder [src/App](src/App) -> Note: Requires Fable 4 ![Screen cast](./screencast.gif) + +> Note: Requires Fable 4 \ No newline at end of file diff --git a/src/Elmish.Solid/Elmish.Solid.fsproj b/src/Elmish.Solid/Elmish.Solid.fsproj index da3df3d..b40bd06 100644 --- a/src/Elmish.Solid/Elmish.Solid.fsproj +++ b/src/Elmish.Solid/Elmish.Solid.fsproj @@ -2,7 +2,7 @@ 1.0.0 - 1.0.0-beta-002 + 1.0.0-beta-003 netstandard2.0 true diff --git a/src/Elmish.Solid/RELEASE_NOTES.md b/src/Elmish.Solid/RELEASE_NOTES.md index 5325241..26e7903 100644 --- a/src/Elmish.Solid/RELEASE_NOTES.md +++ b/src/Elmish.Solid/RELEASE_NOTES.md @@ -1,3 +1,7 @@ +### 1.0.0-beta-003 + +- Update to Solid 1.8 + ### 1.0.0-beta-002 - Terminate Elmish program on cleanup diff --git a/src/Fable.Solid/Fable.Solid.fsproj b/src/Fable.Solid/Fable.Solid.fsproj index 394f0bd..90e99ac 100644 --- a/src/Fable.Solid/Fable.Solid.fsproj +++ b/src/Fable.Solid/Fable.Solid.fsproj @@ -2,7 +2,7 @@ 1.0.0 - 1.0.0-beta-004 + 1.0.0-beta-005 netstandard2.0 true diff --git a/src/Fable.Solid/RELEASE_NOTES.md b/src/Fable.Solid/RELEASE_NOTES.md index 5d2c1ec..1fd37ef 100644 --- a/src/Fable.Solid/RELEASE_NOTES.md +++ b/src/Fable.Solid/RELEASE_NOTES.md @@ -1,3 +1,8 @@ +### 1.0.0-beta-005 + +* Update to Solid 1.8 +* Fix Show binding + ### 1.0.0-beta-004 * Add ErrorBoundary