new release

This commit is contained in:
Andreas Gammelgaard Damsbo 2025-10-27 10:28:22 +01:00
commit b9008543ee
No known key found for this signature in database
22 changed files with 1297 additions and 192 deletions

View file

@ -1 +1 @@
app_version <- function()'25.10.3'
app_version <- function()'25.10.4'

View file

@ -1 +1 @@
hosted_version <- function()'v25.10.3-251021'
hosted_version <- function()'v25.10.4-251027'

View file

@ -126,7 +126,7 @@ plot_sankey <- function(data, pri, sec, ter = NULL, color.group = "pri", colors
plot_sankey_single <- function(data, pri, sec, color.group = c("pri", "sec"), colors = NULL,missing.level="Missing", ...) {
color.group <- match.arg(color.group)
browser()
# browser()
data_orig <- data
data[c(pri, sec)] <- data[c(pri, sec)] |>
dplyr::mutate(

View file

@ -26,6 +26,8 @@ m_redcap_readUI <- function(id, title = TRUE, url = NULL) {
width = "100%"
),
shiny::helpText(i18n$t("Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'")),
shiny::br(),
shiny::br(),
shiny::passwordInput(
inputId = ns("api"),
label = i18n$t("API token"),

Binary file not shown.

View file

@ -254,7 +254,7 @@ ui_elements <- function(selection) {
width = 9,
shiny::tags$p(
i18n$t("Below, are several options for simple data manipulation like update variables by renaming, creating new labels (for nicer tables in the report) and changing variable classes (numeric, factor/categorical etc.)."),
i18n$t("There are more advanced options to modify factor/categorical variables as well as create new factor from a continous variable or new variables with R code. At the bottom you can restore the original data."),
i18n$t("There are more advanced options to modify factor/categorical variables as well as create new factor from an existing variable or new variables with R code. At the bottom you can restore the original data."),
i18n$t("Please note that data modifications are applied before any filtering.")
)
)