diff --git a/DESCRIPTION b/DESCRIPTION index 2becf382..5e268ef2 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: rhino Title: A Framework for Enterprise Shiny Applications -Version: 0.6.2 +Version: 0.6.3 Authors@R: c( person("Kamil", "Zyla", role = c("aut", "cre"), email = "kamil@appsilon.com"), @@ -10,7 +10,7 @@ Authors@R: person("Appsilon Sp. z o.o.", role = "cph", email = "opensource@appsilon.com") ) Description: A framework that supports creating and extending enterprise Shiny applications using best practices. -URL: https://appsilon.github.io/rhino, https://github.com/Appsilon/rhino +URL: https://appsilon.github.io/rhino/, https://github.com/Appsilon/rhino BugReports: https://github.com/Appsilon/rhino/issues License: LGPL-3 Encoding: UTF-8 diff --git a/README.md b/README.md index bff6bca3..3457ae3e 100644 --- a/README.md +++ b/README.md @@ -125,7 +125,7 @@ Pull requests are welcome! Please see our [contributing guidelines](.github/CONT ## About -Rhino is distributed under [LGPL-3.0 license]. See [`LICENSE`](LICENSE) for more information. +Rhino is distributed under [LGPL-3.0 license]. Developed with :heart: at [Appsilon]. diff --git a/vignettes/rhino-project-structure.Rmd b/vignettes/rhino-project-structure.Rmd index 1016aa27..71ad2781 100644 --- a/vignettes/rhino-project-structure.Rmd +++ b/vignettes/rhino-project-structure.Rmd @@ -77,7 +77,7 @@ R comes with the `library()` and `source()` functions, but its functionality is limited when it comes to dividing your code into modules and expressing their dependencies. -To address this, Rhino uses the [box](https://klmr.me/box) R package, +To address this, Rhino uses the [box](https://klmr.me/box/) R package, which allows you to modularize your code in a similar way to languages like Python and Java: ```r box::use( @@ -89,7 +89,7 @@ box::use( ) ``` -The best place to learn about box is its official [documentation](https://klmr.me/box). +The best place to learn about box is its official [documentation](https://klmr.me/box/). Some useful box features are also explained in the sections below. ## `__init__.R` files