Skip to content
This repository was archived by the owner on Apr 16, 2023. It is now read-only.

Commit f1feb60

Browse files
authored
Merge pull request #26 from nik01010/rel/v1_1_1
Version 1.1.1
2 parents be192da + 1ce1b24 commit f1feb60

13 files changed

+55
-31
lines changed

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Package: dashboardthemes
22
Type: Package
3-
Title: Customise the Appearance of Shiny Dashboard Applications using Themes
4-
Version: 1.1.0
3+
Title: Customise the Appearance of 'shinydashboard' Applications using Themes
4+
Version: 1.1.1
55
Authors@R: person("Nik", "Lilovski", email = "nik.lilovski@outlook.com",
66
role = c("aut", "cre"))
77
Maintainer: Nik Lilovski <nik.lilovski@outlook.com>
88
Description: Allows manual creation of themes and logos to be used in
9-
applications created using the shinydashboard package. Removes the need to
9+
applications created using the 'shinydashboard' package. Removes the need to
1010
change the underlying css code by wrapping it into a set of convenient R
1111
functions.
1212
URL: https://github.com/nik01010/dashboardthemes

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
### dashboardthemes ----------------------------------------
22

3+
### v1.1.1
4+
* Updated DESCRIPTION file to use preferred Title and Description formatting.
5+
* Updated function examples to use \donttest{} instead of \dontrun{} tags.
6+
37
### v1.1.0
48
* Breaking changes:
59
- The boe_website theme has been discontinued, please use flat_red instead.

R/CreateCss_cssGradientThreeColors.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#'
1313
#' @return CSS code. Gradient with three colors.
1414
#' @examples
15-
#' \dontrun{
15+
#' \donttest{
1616
#' cssGradientThreeColors(
1717
#' direction = "right"
1818
#' ,colorStart = "rgba(44,222,235,1)"

R/CreateLogo_shinyDashboardLogo.R

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
#'
1010
#' @return HTML code. Logo for shinydashboard's sidebar.
1111
#' @examples
12-
#' \dontrun{
13-
#' ...
12+
#' \donttest{
13+
#' #...
1414
#' ### ui
15-
#' ui <- dashboardPage(
15+
#' #ui <- dashboardPage(
1616
#'
1717
#' ### ui header
18-
#' dashboardHeader(
18+
#' #dashboardHeader(
1919
#'
2020
#' ### changing logo
2121
#' title = shinyDashboardLogo(
@@ -24,7 +24,7 @@
2424
#' mainText = "App",
2525
#' badgeText = "v1.1"
2626
#' )
27-
#' ...
27+
#' #...
2828
#' }
2929
#' @seealso \code{\link{shinyDashboardLogoDIY}, \link{shinyDashboardThemes}}
3030
#' @note This logo design was inspired from \url{http://www.dataseries.org/}.

R/CreateLogo_shinyDashboardLogoDIY.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#'
1414
#' @return HTML code. Logo for shinydashboard's sidebar.
1515
#' @examples
16-
#' \dontrun{
16+
#' \donttest{
1717
#' customLogo <- shinyDashboardLogoDIY(
1818
#' boldText = "SD"
1919
#' ,mainText = "Themes"

R/CreateTheme_shinyDashboardThemeDIY.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
#'
8585
#' @return CSS code. Theme for a shinydashboard application.
8686
#' @examples
87-
#' \dontrun{
87+
#' \donttest{
8888
#' customTheme <- shinyDashboardThemeDIY(
8989
#'
9090
#' ### general

R/CreateTheme_shinyDashboardThemes.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
#'
1818
#' @return CSS code. Theme for shinydashboard.
1919
#' @examples
20-
#' \dontrun{
21-
#' ...
20+
#' \donttest{
21+
#' #...
2222
#' ### ui body
23-
#' dashboardBody(
23+
#' #dashboardBody(
2424
#'
2525
#' ### changing theme
2626
#' shinyDashboardThemes(
2727
#' theme = "blue_gradient"
2828
#' )
2929
#'
3030
#' ### ui tabs
31-
#' ,tabItems(
32-
#' tabItem(
33-
#' ...
31+
#' #,tabItems(
32+
#' # tabItem(
33+
#' # ...
3434
#' }
3535
#' @seealso \code{\link{shinyDashboardThemeDIY}, \link{shinyDashboardLogo}}
3636
#' @export

cran-comments.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,25 @@
88
* For test coverage reports, see https://codecov.io/gh/nik01010/dashboardthemes
99

1010
## Submission comments
11+
2020-07-01
1112
* No errors, warnings or notes.
1213
* This package has been available on GitHub since early 2018 and has a relatively strong following, v1.1.0 is mostly just a back-end refactor. For further information, see the NEWS release notes (https://github.com/nik01010/dashboardthemes).
14+
15+
## Reviewer comments
16+
2020-07-03 Swetlana Herbrandt
17+
* Thanks, please write package names, software names and API names in single quotes (e.g. 'shiny', 'shinydashboard') in Title and Description.
18+
* Please replace \dontrun{} by \donttest{} or if(interactive()){} in your Rd-files.
19+
* Please fix and resubmit.
20+
21+
22+
# v1.1.1
23+
## Test environments
24+
* Windows 10, R 4.0.2 (on local PC).
25+
* Linux Xenial Ubuntu 16.04.6 LTS, R release, oldrel, devel (on Travis CI).
26+
* Mac OS X 10.13.6, R release, oldrel (on Travis CI).
27+
28+
## Submission comments
29+
2020-07-03
30+
* No errors, warnings or notes. Addressed reviewer comments:
31+
* Updated DESCRIPTION file to use preferred Title and Description formatting.
32+
* Updated function examples to use \donttest{} instead of \dontrun{} tags.

man/cssGradientThreeColors.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/shinyDashboardLogo.Rd

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)