Skip to content

Commit

Permalink
1.0.4 CRAN release (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
cb4ds authored Nov 7, 2023
1 parent fc30410 commit 0c5da78
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: periscope
Type: Package
Title: Enterprise Streamlined 'Shiny' Application Framework
Version: 1.0.2
Version: 1.0.4
Authors@R: c(
person("Constance", "Brett", email="connie@aggregate-genius.com", role = c("aut", "cre")),
person("Isaac", "Neuhaus", role = "aut", comment = "canvasXpress JavaScript Library Maintainer"),
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#Revisions and Change Log

#### v1.0.4
* Minor bugfix for reactive return on downloadableTables when using initial selections

#### v1.0.3
* Resolved outstanding Roxygen 7+ issue: https://github.com/r-lib/roxygen2/issues/1491

### v1.0.2
* Minor bugfixes - handled classes and packageversion checking in compliance with latest R requirements to resolve notes

Expand Down
2 changes: 1 addition & 1 deletion R/downloadFile.R
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ download_file <- function(input,
show_rownames <- attr(data, "show_rownames")
openxlsx::write.xlsx(data, file,
asTable = TRUE,
row.names = !is.null(show_rownames) && show_rownames)
rowNames = !is.null(show_rownames) && show_rownames)
}
} else {
writexl::write_xlsx(data, file)
Expand Down
1 change: 1 addition & 0 deletions R/downloadableTable.R
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,7 @@ download_table <- function(input, output, session,
dtInfo$selection <- NULL
}
dtInfo$selection <- result
dtInfo$selected <- rownames(result)
})

shiny::observe({
Expand Down
1 change: 1 addition & 0 deletions R/periscope.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
#' @docType package
#'
#' @name periscope
#' @aliases periscope-package
NULL

.g_sdp_installed <- FALSE
Expand Down
4 changes: 2 additions & 2 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Comments from Maintainer

Bugfixes for the changes in utils::packageVersion and class checks in the package and tests
Updated package documentation per issue instructions

---

Expand All @@ -10,7 +10,7 @@ Bugfixes for the changes in utils::packageVersion and class checks in the packag
RStudio Server Pro (Ubuntu 20.04)
* R 4.0.5
* R 4.2.3
* R 4.3.0
* R 4.3.1

CircleCI

Expand Down
1 change: 1 addition & 0 deletions man/periscope.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions vignettes/new-application.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ vignette: >
This framework was created for the express purpose of making it easy for shiny
developers to create consistent-looking and functioning applications. This is
important because it reduces the time a user must spend to learn the interface
for new applications (this reducing application support time and increasing
for new applications (thus reducing application support time and increasing
the user's satisfaction across applications).

In addition to creating a consistent UI experience this framework reduces
Expand Down Expand Up @@ -59,7 +59,8 @@ add tabbed pages, etc.

The right sidebar is, like the left sidebar, reserved for configuration options, settings,
and general user application controls and functionality that will affect the body of the
application.
application.

Users can create their own tabs in the right sidebar up to a maximum of 5.

The right sidebar is collapsed by default, it can be opened by clicking on the (customizable) icon.
Expand Down Expand Up @@ -175,7 +176,7 @@ Different parts of the generated application can be customized with a custom yam
This is a high-functionality set of custom-styled buttons with the built-in
ability to download data in different file formats.

*See the downloadFileButton Vignette for more detailed information*
*See the downloadFile Vignette for more detailed information*

#### downloadableTable

Expand Down

0 comments on commit 0c5da78

Please sign in to comment.