Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
MIRACUM
dqa
DQAgui
Commits
330abd9b
Commit
330abd9b
authored
3 years ago
by
Lorenz Kapsner
Browse files
Options
Download
Email Patches
Plain Diff
fix: fixing errors leading to failing of just published cran version
parent
257f5244
master
colored_diff_summary
development
development-Differences
fix_settings_from_env
lab-module
latest
time_compare_fix
trino
v0.2.4
v0.2.3
v0.2.2
v0.2.1
v0.2.0
v0.1.9
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
DESCRIPTION
+1
-1
DESCRIPTION
NEWS.md
+14
-1
NEWS.md
data-raw/devstuffs.R
+1
-1
data-raw/devstuffs.R
inst/application/server.R
+3
-9
inst/application/server.R
with
19 additions
and
12 deletions
+19
-12
DESCRIPTION
+
1
-
1
View file @
330abd9b
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")),
...
...
This diff is collapsed.
Click to expand it.
NEWS.md
+
14
-
1
View file @
330abd9b
...
...
@@ -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)
...
...
This diff is collapsed.
Click to expand it.
data-raw/devstuffs.R
+
1
-
1
View file @
330abd9b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
inst/application/server.R
+
3
-
9
View file @
330abd9b
...
...
@@ -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
()
})
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help