Skip to content

Commit

Permalink
fix: update to use create_pdf_report function from dqastats
Browse files Browse the repository at this point in the history
  • Loading branch information
kapsner committed May 24, 2024
1 parent 3ad1e26 commit 00324cc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: DQAgui
Title: Graphical User Interface for Data Quality Assessment
Version: 0.2.3.9002
Version: 0.2.3.9003
Date: 2024-05-24
Authors@R: c(
person("Lorenz A.", "Kapsner", , "lorenz.kapsner@gmail.com", role = c("cre", "aut"),
Expand Down
6 changes: 4 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DQAgui NEWS

## Unreleased (2024-05-16)
## Unreleased (2024-05-24)

#### Bug fixes

Expand All @@ -14,13 +14,15 @@

#### Other changes

- added automated gen of readme
([3ad1e26](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/3ad1e26f475fe7c4cc21287a7ffde61a57c4c80d))
- updated dev-version
([2c89999](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/2c89999fe2946ce86b64cab669f37b61a58debde))
- updated news.md and cran-commetns
([1562003](https://gitlab.miracum.org/miracum/dqa/dqagui/tree/1562003e10995a56c53d09e7dc0d870cef41f4f7))

Full set of changes:
[`v0.2.3...927f72a`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.3...927f72a)
[`v0.2.3...3ad1e26`](https://gitlab.miracum.org/miracum/dqa/dqagui/compare/v0.2.3...3ad1e26)

## v0.2.3 (2023-08-30)

Expand Down
2 changes: 1 addition & 1 deletion R/moduleReport.R
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module_report_server <- function(input,
req(rv$create_report)

if (is.null(rv$report_created)) {
DQAstats::create_markdown(
DQAstats::create_pdf_report(
rv = rv,
utils_path = rv$utilspath,
outdir = tempdir(),
Expand Down
2 changes: 1 addition & 1 deletion data-raw/devstuffs.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ my_desc$set_authors(c(
# Remove some author fields
my_desc$del("Maintainer")
# Set the version
my_desc$set_version("0.2.3.9002")
my_desc$set_version("0.2.3.9003")
# The title of your package
my_desc$set(Title = "Graphical User Interface for Data Quality Assessment")
# The description of your package
Expand Down

0 comments on commit 00324cc

Please sign in to comment.