Skip to content

Commit 887305e

Browse files
committed
Update README.md
1 parent f0f4eaa commit 887305e

File tree

1 file changed

+14
-11
lines changed

1 file changed

+14
-11
lines changed

README.md

Lines changed: 14 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,26 @@
55
[scalajs-react](https://github.com/japgolly/scalajs-react) facade for [@material-ui/core](https://github.com/mui-org/material-ui/tree/v3.x/packages/material-ui), [@material-ui/icons](https://github.com/mui-org/material-ui/tree/v3.x/packages/material-ui-icons), [@material-ui/lab](https://github.com/mui-org/material-ui/tree/v3.x/packages/material-ui-lab)
66

77
![build](https://github.com/kinoplan/scalajs-react-material-ui/workflows/build/badge.svg)
8+
[![Mergify Status](https://img.shields.io/endpoint.svg?url=https://api.mergify.com/v1/badges/kinoplan/utils?style=flat)](https://mergify.com)
9+
[![Scala Steward badge](https://img.shields.io/badge/Scala_Steward-helping-blue.svg?style=flat\&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAMAAAARSr4IAAAAVFBMVEUAAACHjojlOy5NWlrKzcYRKjGFjIbp293YycuLa3pYY2LSqql4f3pCUFTgSjNodYRmcXUsPD/NTTbjRS+2jomhgnzNc223cGvZS0HaSD0XLjbaSjElhIr+AAAAAXRSTlMAQObYZgAAAHlJREFUCNdNyosOwyAIhWHAQS1Vt7a77/3fcxxdmv0xwmckutAR1nkm4ggbyEcg/wWmlGLDAA3oL50xi6fk5ffZ3E2E3QfZDCcCN2YtbEWZt+Drc6u6rlqv7Uk0LdKqqr5rk2UCRXOk0vmQKGfc94nOJyQjouF9H/wCc9gECEYfONoAAAAASUVORK5CYII=)](https://scala-steward.org)
10+
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.8.0.svg)](https://www.scala-js.org/)
11+
[![react](https://img.shields.io/badge/react-17.0.2-61DAFB.svg?logo=React)](https://ru.reactjs.org/)
12+
[![scalajs-react](https://img.shields.io/static/v1?label=scalajs-react&message=2.0.0&color=blue)](https://github.com/japgolly/scalajs-react)
13+
[![material-ui](https://img.shields.io/static/v1?label=material-ui&message=3.9.0&color=e52b50)](https://v3.material-ui.com/)
814
[![Maven Central](https://img.shields.io/maven-central/v/io.kinoplan/scalajs-react-material-ui-core_sjs0.6_2.12.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22io.kinoplan%22%20AND%20(a:%22scalajs-react-material-ui-core_sjs0.6_2.12%22%20OR%20a:%22scalajs-react-material-ui-icons_sjs0.6_2.12%22%20OR%20a:%22scalajs-react-material-ui-lab_sjs0.6_2.12%22))
9-
[![Scala.js](https://www.scala-js.org/assets/badges/scalajs-1.1.0.svg)](https://www.scala-js.org/)
10-
[![Scala.js](http://scala-js.org/assets/badges/scalajs-0.6.29.svg)](http://scala-js.org)
11-
[![react](https://img.shields.io/badge/react-16.13.1-61DAFB.svg?logo=React)](https://ru.reactjs.org/)
12-
[![scalajs-react](https://img.shields.io/static/v1?label=scalajs-react&message=1.7.6&color=blue)](https://github.com/japgolly/scalajs-react)
13-
[![material-ui](https://img.shields.io/static/v1?label=material-ui&message=3.9.0&color=ff69b4)](https://v3.material-ui.com/)
1415

1516
</div>
1617

1718
## Usage
18-
The scalajs-react-material-ui libraries is currently available for Scala.js 0.6.33/1.1.1 and Scala 2.12.x/2.13.x.
19+
The scalajs-react-material-ui libraries is currently available for Scala.js 1.8.0+ and Scala 2.13.x.
1920

2021
1. Add `libraryDependencies` to your [scalajs-react](https://github.com/japgolly/scalajs-react) project:
2122

2223
```scala
2324
libraryDependencies ++= Seq(
24-
"io.kinoplan" %%% "scalajs-react-material-ui-core" % "0.2.1",
25-
"io.kinoplan" %%% "scalajs-react-material-ui-icons" % "0.2.1",
26-
"io.kinoplan" %%% "scalajs-react-material-ui-lab" % "0.2.1"
25+
"io.kinoplan" %%% "scalajs-react-material-ui-core" % ${version},
26+
"io.kinoplan" %%% "scalajs-react-material-ui-icons" % ${version},
27+
"io.kinoplan" %%% "scalajs-react-material-ui-lab" % ${version}
2728
)
2829
```
2930

@@ -42,7 +43,7 @@ The scalajs-react-material-ui libraries is currently available for Scala.js 0.6.
4243
See the [demo](/demo) project.
4344

4445
The project has almost all the examples in the js
45-
[Component Demos](https://v3.material-ui.com/getting-started/installation/) written in Scala!
46+
[Component Demos](https://v3.mui.com/getting-started/installation/) written in Scala!
4647

4748
In the demo you can also find very detailed examples of using a bunch of:
4849

@@ -53,7 +54,7 @@ In the demo you can also find very detailed examples of using a bunch of:
5354
- [scalajs-react-material-ui](https://github.com/kinoplan/scalajs-react-material-ui)
5455
- [scalablytyped](https://scalablytyped.org/docs/readme.html)
5556

56-
Start:
57+
Start:[^1]
5758
1. `sbt dev`
5859
2. Open in browser `localhost:8080`
5960

@@ -64,3 +65,5 @@ See [CONTRIBUTING.md](/CONTRIBUTING.md) for more details about how to contribute
6465
## License
6566

6667
This project is licensed under the terms of the [Apache License, Version 2.0](/LICENSE).
68+
69+
[^1]: (See [CONTRIBUTING.md](/CONTRIBUTING.md) for installing the necessary tools to run)

0 commit comments

Comments
 (0)