Skip to content

Commit

Permalink
v2.0.7.9047
Browse files Browse the repository at this point in the history
- fix: Update shinyalalert for HOBO reformat, Issue \#164
  - Shiny removes empty directories, add ‘remove.text’ file before
    upload
  • Loading branch information
leppott committed Dec 27, 2024
1 parent 529015d commit 638f5f5
Show file tree
Hide file tree
Showing 11 changed files with 535 additions and 11,586 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ContDataQC
Title: Quality Control (QC) of Continous Monitoring Data
Version: 2.0.7.9046
Version: 2.0.7.9047
Authors@R: c(
person("Erik W", "Leppo", email="[email protected]",role=c("aut","cre")),
person("Ann","Roseberry Lincoln", role="ctb"),
Expand Down
16 changes: 13 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,24 @@ NEWS-ContDataQC

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2024-12-26 13:39:53.643252
#> Last Update: 2024-12-27 08:13:47.849707

# Version History

## v2.0.7.9047

2024-12-27

- fix: Update shinyalalert for HOBO reformat, Issue \#164
- Shiny removes empty directories, add ‘remove.text’ file before
upload

## v2.0.7.9046

2024-12-26

- fix: Update shinyalert for HOBO reformat for multiple files
- fix: Update shinyalert for HOBO reformat for multiple files, Issue
\#164

## v2.0.7.9045

Expand Down Expand Up @@ -84,7 +93,8 @@ NEWS-ContDataQC

2024-11-04

- refactor: Add pop up on HOBOware reformat for date time conversion
- refactor: Add pop up on HOBOware reformat for date time conversion,
Issue \#164
- Success and failure

## v2.0.7.9034
Expand Down
16 changes: 13 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,24 @@ NEWS-ContDataQC

<!-- NEWS.md is generated from NEWS.Rmd. Please edit that file -->

#> Last Update: 2024-12-26 13:39:53.643252
#> Last Update: 2024-12-27 08:13:47.849707

# Version History

## v2.0.7.9047

2024-12-27

- fix: Update shinyalalert for HOBO reformat, Issue \#164
- Shiny removes empty directories, add ‘remove.text’ file before
upload

## v2.0.7.9046

2024-12-26

- fix: Update shinyalert for HOBO reformat for multiple files
- fix: Update shinyalert for HOBO reformat for multiple files, Issue
\#164

## v2.0.7.9045

Expand Down Expand Up @@ -84,7 +93,8 @@ NEWS-ContDataQC

2024-11-04

- refactor: Add pop up on HOBOware reformat for date time conversion
- refactor: Add pop up on HOBOware reformat for date time conversion,
Issue \#164
- Success and failure

## v2.0.7.9034
Expand Down
12 changes: 10 additions & 2 deletions NEWS.rmd
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,18 @@ cat(paste0("Last Update: ",Sys.time()))

# Version History

## v2.0.7.9047
2024-12-27

* fix: Update shinyalalert for HOBO reformat, Issue #164
+ Shiny removes empty directories, add 'remove.text' file before upload
* tests: Add code to library creation script to add temp file to HOBO folder
+ Avoid having empty directory removed during upload to ShinyApps.io

## v2.0.7.9046
2024-12-26

* fix: Update shinyalert for HOBO reformat for multiple files
* fix: Update shinyalert for HOBO reformat for multiple files, Issue #164

## v2.0.7.9045
2024-12-26
Expand Down Expand Up @@ -85,7 +93,7 @@ cat(paste0("Last Update: ",Sys.time()))
## v2.0.7.9035
2024-11-04

* refactor: Add pop up on HOBOware reformat for date time conversion
* refactor: Add pop up on HOBOware reformat for date time conversion, Issue #164
+ Success and failure

## v2.0.7.9034
Expand Down
6 changes: 6 additions & 0 deletions inst/extdata/ContDataQC_LibraryCreation.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,12 @@ fn_copy <- "remove.txt"
path_from <- file.path(path_shiny, "external", fn_copy)
path_to <- file.path(path_shiny, "data", fn_copy)
file.copy(path_from, path_to)
# also HOBO folder
file.remove(list.files(file.path(path_shiny, "HOBO"),
full.names = TRUE,
include.dirs = TRUE,
recursive = TRUE))
file.copy(path_from, file.path(path_shiny, "HOBO", fn_copy))
# NEWS
# Render then Copy NEWS so picked up in help
Expand Down
12 changes: 9 additions & 3 deletions inst/extdata/ContDataQC_LibraryCreation.nb.html

Large diffs are not rendered by default.

3,694 changes: 0 additions & 3,694 deletions inst/shiny-examples/ContDataQC/HOBO/ECO66G20_AW_20140728_20141013.csv

This file was deleted.

7,397 changes: 0 additions & 7,397 deletions inst/shiny-examples/ContDataQC/HOBO/ECO66G20_AW_20141013_20150316.csv

This file was deleted.

Empty file.
2 changes: 1 addition & 1 deletion inst/shiny-examples/ContDataQC/global.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ library(shinyalert)
# Sys.setenv(PATH = paste(Sys.getenv("PATH"), "C:\\Rtools\\bin", sep = ";"))

# Version Number
version <- "2.0.7.9046"
version <- "2.0.7.9047"

#Maximum individual file size that can be uploaded is 70 MB
options(shiny.maxRequestSize = 70 * 1024^2)
Expand Down
964 changes: 482 additions & 482 deletions inst/shiny-examples/ContDataQC/ui.R

Large diffs are not rendered by default.

0 comments on commit 638f5f5

Please sign in to comment.