diff --git a/.gitignore b/.gitignore
index feee598a..c0416284 100644
--- a/.gitignore
+++ b/.gitignore
@@ -10,3 +10,5 @@ inst/examples/**/rsconnect
.vscode
*.icloud
docs
+
+/.quarto/
diff --git a/R/sysdata.rda b/R/sysdata.rda
index 770fa745..55b073f9 100644
Binary files a/R/sysdata.rda and b/R/sysdata.rda differ
diff --git a/README.md b/README.md
index 1af7de88..02ddda27 100644
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@
-
![](https://community.rstudio.com/uploads/default/original/2X/e/eb1013fd09ccf10cbe13da3f0168eebfcb0eba75.gif)
+
-
![](https://analytichealth.co.uk/wp-content/uploads/2021/10/PA-bs4Dash.gif)
-
-
-
+
![](https://analytichealth.co.uk/wp-content/uploads/2021/10/PA-bs4Dash.gif)
-
-## New users moving to bs4Dash v2.0.0
+## From shinydashboard to bs4Dash
Taking the simple `{shinydashboard}` example:
-```r
+``` r
library(shiny)
library(shinydashboard)
@@ -70,9 +72,10 @@ server <- function(input, output) {
shinyApp(ui, server)
```
-Starting from v2.0.0, moving to `{bs4Dash}` is rather simple:
+Moving to `{bs4Dash}` is rather simple, as we just replace
+`library(shinydashboard)`:
-```r
+``` r
library(bs4Dash)
ui <- dashboardPage(
dashboardHeader(title = "Basic dashboard"),
@@ -103,17 +106,9 @@ server <- function(input, output) {
shinyApp(ui, server)
```
-
-## Upgrading bs4Dash to 2.0.0
-- `{bs4Dash}` is undergoing major rework to make it easier to come from `{shinydashboard}`. The current development version 2.0.0 provides a 1:1 supports, in other word moving from `{shinydashboard}` to `{bs4Dash}` is accomplished by changing `library(shinydashboard)` to `library(bs4Dash)`.
-
-- `{bs4Dash}` v2.0.0 also provides 1:1 with `{shinydashboardPlus}` to ease compatibility.
-
-- Apps built with `{bs4Dash}` version <= 0.5.0 are definitely not compatible with v2.0.0 due to substantial breaking changes in the API. We advise users to keep the old version for old apps and move to to the new version for newer apps.
-
## Installation
-```r
+``` r
# latest devel version
devtools::install_github("RinteRface/bs4Dash")
# from CRAN
@@ -122,23 +117,25 @@ install.packages("bs4Dash")
## Demo
-See a working example on shinyapps.io [here](https://dgranjon.shinyapps.io/bs4DashDemo/).
You may also run:
-```r
+``` r
library(bs4Dash)
bs4DashGallery()
```
## Issues
-Issues are listed [here](https://github.com/RinteRface/bs4Dash/issues).
-
+Issues are listed [here](https://github.com/RinteRface/bs4Dash/issues).
## Acknowledgement
-I warmly thank [Glyphicons](https://www.glyphicons.com) creator for providing them for free with Bootstrap.
+I warmly thank [Glyphicons](https://www.glyphicons.com) creator for
+providing them for free with Bootstrap.
## Code of Conduct
-
-Please note that the bs4Dash project is released with a [Contributor Code of Conduct](https:/contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html). By contributing to this project, you agree toabide by its terms.
+
+Please note that the bs4Dash project is released with a [Contributor
+Code of
+Conduct](https:/contributor-covenant.org/version/2/0/CODE_OF_CONDUCT.html).
+By contributing to this project, you agree toabide by its terms.