Commit 75822ea5 authored by Lorenz Kapsner's avatar Lorenz Kapsner
Browse files

feat: added more time-frame presets

Showing with 18 additions and 8 deletions
+18 -8
Package: DQAgui
Title: Graphical User Interface for Data Quality Assessment
Version: 0.1.9.9004
Version: 0.1.9.9005
Authors@R: c(
person("Lorenz A.", "Kapsner", , "lorenz.kapsner@uk-erlangen.de", role = c("cre", "aut"),
comment = c(ORCID = "0000-0003-1866-860X")),
......@@ -14,7 +14,7 @@ License: GPL-3
URL: https://github.com/miracum/dqa-dqagui
BugReports: https://github.com/miracum/dqa-dqagui/issues
Encoding: UTF-8
Date: 2022-03-07
Date: 2022-03-14
Imports:
data.table,
daterangepicker,
......@@ -38,3 +38,7 @@ Suggests:
lintr,
processx,
testthat
Remotes:
url::https://gitlab.miracum.org/miracum/misc/dizutils/-/archive/development/dizutils-development.zip,
url::https://gitlab.miracum.org/miracum/dqa/dqastats/-/archive/development/dqastats-development.zip
RoxygenNote: 7.1.2
# DQAgui NEWS
## Unreleased (2022-03-07)
## Unreleased (2022-03-14)
#### New Features
* adding config info to dashboard
#### Fixes
* fixes missing system display if displayname was set [#44](https://gitlab.miracum.org/miracum/dqa/dqagui/issues/44)
* sql statements to target system, if source=target
#### Others
* update debugging scrips
* added diztools version
* better wrapping of dashboard welcome text
* fixed typo in dash-config verbatim
* updated debugging script
* added cran-comments to git-repo
Full set of changes: [`v0.1.9...58177c5`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.9...58177c5)
Full set of changes: [`v0.1.9...ba50d2f`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.1.9...ba50d2f)
## v0.1.9 (2022-02-21)
......@@ -189,7 +191,7 @@ Full set of changes: [`v0.0.7...v0.1.0`](https://gitlab.miracum.org/miracum/dqa/
Full set of changes: [`v0.0.6...v0.0.7`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.6...v0.0.7)
## v0.0.6 (2020-01-29)
## v0.0.6 (2020-01-30)
Full set of changes: [`v0.0.4...v0.0.6`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.0.4...v0.0.6)
......
......@@ -576,6 +576,7 @@ print_runtime <-
datepicker_get_list_of_ranges <- function() {
res <- list(
"DQ check" = c(Sys.Date() - 7, Sys.Date() - 100),
"Today" = c(Sys.Date(), Sys.Date()),
"Yesterday" = c(Sys.Date() - 1, Sys.Date()),
# "Last 3 days" = c(Sys.Date() - 2, Sys.Date()),
......@@ -586,6 +587,9 @@ datepicker_get_list_of_ranges <- function() {
)), as.Date(format(
Sys.Date(), paste0("%Y-%m-", lubridate::days_in_month(Sys.Date())[[1]])
))),
">= 2010" = c(as.Date("2010-01-01"), Sys.Date()),
">= 2015" = c(as.Date("2015-01-01"), Sys.Date()),
">= 2020" = c(as.Date("2020-01-01"), Sys.Date()),
"Everything" = c(as.Date("1970-01-01"), Sys.Date())
)
......
......@@ -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.9.9004")
my_desc$set_version("0.1.9.9005")
# The title of your package
my_desc$set(Title = "Graphical User Interface for Data Quality Assessment")
# The description of your package
......@@ -114,7 +114,7 @@ if (tools_tag == "cran") {
)
}
utils_tag <- "cran" # e.g. "v0.1.7", "development" or "cran"
utils_tag <- "development" # e.g. "v0.1.7", "development" or "cran"
if (utils_tag == "cran") {
remotes::update_packages("DIZutils", upgrade = "always")
} else{
......@@ -134,7 +134,7 @@ if (utils_tag == "cran") {
}
}
stats_tag <- "cran" # e.g. "v0.1.7", "development" or "cran"
stats_tag <- "development" # e.g. "v0.1.7", "development" or "cran"
if (stats_tag == "cran") {
remotes::update_packages("DQAstats", upgrade = "always")
} else{
......
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