Commit 330abd9b authored by Lorenz Kapsner's avatar Lorenz Kapsner
Browse files

fix: fixing errors leading to failing of just published cran version

parent 257f5244
Showing with 19 additions and 12 deletions
+19 -12
Package: DQAgui
Title: Graphical User Interface for Data Quality Assessment
Version: 0.1.8
Version: 0.1.9
Authors@R: c(
person("Lorenz A.", "Kapsner", , "lorenz.kapsner@uk-erlangen.de", role = c("cre", "aut"),
comment = c(ORCID = "0000-0003-1866-860X")),
......
......@@ -4,9 +4,22 @@
#### Others
* updated readme to comply with diztools/dizutils
* removed gitlab badges from readme
* added diztools dev-install option to devstuffs
Full set of changes: [`v0.1.8...257f524`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.8...257f524)
## v0.1.8 (2022-02-21)
#### Refactorings
* switch to diztools dependency
#### Others
* updated news.md and readme
Full set of changes: [`v0.1.7...d53af4f`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.7...d53af4f)
Full set of changes: [`v0.1.7...v0.1.8`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.7...v0.1.8)
## v0.1.7 (2022-02-10)
......
......@@ -28,7 +28,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc$del("Maintainer")
# Set the version
my_desc$set_version("0.1.8")
my_desc$set_version("0.1.9")
# The title of your package
my_desc$set(Title = "Graphical User Interface for Data Quality Assessment")
# The description of your package
......
......@@ -31,10 +31,7 @@ shiny::shinyServer(function(input, output, session) {
shiny::observe({
if (is.null(rv$finished_onstart)) {
# Clean old connections (e.g. after reloading the app):
DIZtools::close_all_connections(
logfile_dir = rv$log$logfile_dir,
headless = rv$headless
)
DIZtools::close_all_connections()
# Create new logfile:
DIZtools::cleanup_old_logfile(logfile_dir = rv$log$logfile_dir)
......@@ -65,9 +62,7 @@ shiny::shinyServer(function(input, output, session) {
# if existing, set email address for data-map button
out <- DIZtools::get_config(
config_file = paste0(utils_path, "/MISC/email.yml"),
config_key = "email",
logfile_dir = rv$log$logfile_dir,
headless = rv$headless
config_key = "email"
)
},
error = function(e) {
......@@ -108,8 +103,7 @@ shiny::shinyServer(function(input, output, session) {
logfile_dir = rv$log$logfile_dir,
headless = rv$headless
)
DIZtools::close_all_connections(logfile_dir = rv$log$logfile_dir,
headless = rv$headless)
DIZtools::close_all_connections()
invisible(gc())
session$reload()
})
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment