diff --git a/CITATION.cff b/CITATION.cff index f7e2ec6a..5578f1a5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,7 +8,7 @@ message: 'To cite package "FreesearchR" in publications use:' type: software license: AGPL-3.0-or-later title: 'FreesearchR: Easy data analysis for clinicians' -version: 26.3.4 +version: 26.3.5 doi: 10.5281/zenodo.14527429 identifiers: - type: url diff --git a/DESCRIPTION b/DESCRIPTION index def9fc81..3a60d461 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: FreesearchR Title: Easy data analysis for clinicians -Version: 26.3.4 +Version: 26.3.5 Authors@R: c( person("Andreas Gammelgaard", "Damsbo",email="agdamsbo@clin.au.dk", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-7559-1154")), @@ -122,6 +122,7 @@ Collate: 'plot_box.R' 'plot_euler.R' 'plot_hbar.R' + 'plot_likert.R' 'plot_ridge.R' 'plot_sankey.R' 'plot_scatter.R' diff --git a/NAMESPACE b/NAMESPACE index 97775d14..9ede131b 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -122,6 +122,7 @@ export(plot_box_single) export(plot_euler) export(plot_euler_single) export(plot_hbars) +export(plot_likert) export(plot_ridge) export(plot_sankey) export(plot_sankey_single) @@ -166,6 +167,7 @@ export(update_factor_server) export(update_factor_ui) export(update_variables_server) export(update_variables_ui) +export(validate_redcap_filter) export(validation_server) export(validation_ui) export(vectorSelectInput) diff --git a/NEWS.md b/NEWS.md index 3476df1d..7c2bbc32 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,10 +1,22 @@ +# FreesearchR 26.3.5 + +*FIX* Labelled categorical variables were not handled correctly importing from REDCap resulting in lost labels. Fixed! + +*CHANGE* Testing in new data I realised, that automatically removing empty levels in categorical variables/factors is not desired. It should be a concious decision to remove levels. This is now possible in the "Modify factor" pop-up. + +*CHANGE* REDCap export now throws an error if no data was exported. The server side filtering prior to export is now validated and feedback is printed. Only valid filter statements are used when exporting data from the REDCap server. This is an advanced use case, but a great way to ensure only the minimum required data is exported from the server. + +*FIX* Applying filters now works also when the data contains text variables. + +*NEW* Initial support for plotting Likert scale survey results. This is expected to be further improved. For based on ggstats::gglikert. + # FreesearchR 26.3.4 *NEW* Color select for plotting across all plots for even more option. Ten palettes have been chosen, to provide varied and interpretable options. The selector will always show a preview of four colors. *NEW* Added app version check against latest release on GitHub. Only runs if internet connection present. No other polling. -*NEW* Added a "Missing" level to the sankey plot function and adjusted the label font size. And fixed support for dichotomous data. +*NEW* Added a "Missing" level to the Sankey plot function and adjusted the label font size. And fixed support for dichotomous data. # FreesearchR 26.3.3 diff --git a/R/app_version.R b/R/app_version.R index c6d7307c..bdf15ee5 100644 --- a/R/app_version.R +++ b/R/app_version.R @@ -1 +1 @@ -app_version <- function()'26.3.4' +app_version <- function()'26.3.5' diff --git a/R/cut-variable-ext.R b/R/cut-variable-ext.R index 508e846c..b7d8eb80 100644 --- a/R/cut-variable-ext.R +++ b/R/cut-variable-ext.R @@ -378,7 +378,7 @@ cut_variable_server <- function(id, data_r = reactive(NULL)) { rlang::exec(cut_var, !!!parameters) }, error = function(err) { - showNotification(paste("We encountered the following error creating the new factor:", err), type = "err") + showNotification(paste("We encountered the following error creating the new factor:", err), type = "error") } ) diff --git a/R/hosted_version.R b/R/hosted_version.R index 6935edfb..19c31921 100644 --- a/R/hosted_version.R +++ b/R/hosted_version.R @@ -1 +1 @@ -hosted_version <- function()'v26.3.4-260324' +hosted_version <- function()'v26.3.5-260330' diff --git a/R/import-file-ext.R b/R/import-file-ext.R index 745bbc0f..709a55c1 100644 --- a/R/import-file-ext.R +++ b/R/import-file-ext.R @@ -353,7 +353,7 @@ import_file_server <- function(id, # showNotification(warn, type = "warning") # }, error = function(err) { - showNotification(err, type = "err") + showNotification(err, type = "error") }) }) @@ -370,7 +370,7 @@ import_file_server <- function(id, minBodyHeight = 250 ) }, error = function(err) { - showNotification(err, type = "err") + showNotification(err, type = "error") }) }) @@ -485,7 +485,7 @@ import_xls <- function(file, sheet, skip, na.strings) { # showNotification(paste0(warn), type = "warning") # }, error = function(err) { - showNotification(paste0(err), type = "err") + showNotification(paste0(err), type = "error") }) } @@ -513,7 +513,7 @@ import_ods <- function(file, sheet, skip, na.strings) { # showNotification(paste0(warn), type = "warning") # }, error = function(err) { - showNotification(paste0(err), type = "err") + ?showNotification(paste0(err), type = "error") }) } diff --git a/R/missings-module.R b/R/missings-module.R index 8b9c1f50..003a35f4 100644 --- a/R/missings-module.R +++ b/R/missings-module.R @@ -172,7 +172,7 @@ data_missings_server <- function(id, data, max_level = 20, ...) { out <- do.call(compare_missings, modifyList(parameters, list(data = df_tbl))) }) }, error = function(err) { - showNotification(paste0("Error: ", err), type = "err") + showNotification(paste0("Error: ", err), type = "error") }) if (is.null(input$missings_var) || diff --git a/R/regression-module.R b/R/regression-module.R index e1bd364f..d569bd54 100644 --- a/R/regression-module.R +++ b/R/regression-module.R @@ -416,7 +416,7 @@ regression_server <- function(id, rv$list$regression$models <- model_lists }, error = function(err) { - showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "err") + showNotification(paste(i18n$t("Creating regression models failed with the following error:"), err), type = "error") } ) } @@ -481,7 +481,7 @@ regression_server <- function(id, showNotification(paste0(warn), type = "warning") }, error = function(err) { - showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "err") + showNotification(paste(i18n$t("Creating a regression table failed with the following error:"), err), type = "error") } ) } @@ -559,7 +559,7 @@ regression_server <- function(id, gg_theme_shiny() }, error = function(err) { - showNotification(paste0(err), type = "err") + showNotification(paste0(err), type = "error") } ) }) @@ -619,7 +619,7 @@ regression_server <- function(id, # showNotification(paste0(warn), type = "warning") # }, error = function(err) { - showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "err") + showNotification(paste(i18n$t("Running model assumptions checks failed with the following error:"), err), type = "error") } ) } @@ -690,7 +690,7 @@ regression_server <- function(id, out <- patchwork::wrap_plots(ls, ncol = if (length(ls) == 1) 1 else 2) }, error = function(err) { - showNotification(err, type = "err") + showNotification(err, type = "error") } ) diff --git a/R/sysdata.rda b/R/sysdata.rda index 4e2466e6..e5718750 100644 Binary files a/R/sysdata.rda and b/R/sysdata.rda differ diff --git a/R/update-factor-ext.R b/R/update-factor-ext.R index 93f35910..7f3380cd 100644 --- a/R/update-factor-ext.R +++ b/R/update-factor-ext.R @@ -245,7 +245,7 @@ update_factor_server <- function(id, data_r = reactive(NULL)) { "We encountered the following error creating the new factor:", err ), - type = "err") + type = "error") }) # browser() diff --git a/SESSION.md b/SESSION.md index 0f0edad0..f232def3 100644 --- a/SESSION.md +++ b/SESSION.md @@ -11,11 +11,11 @@ |collate |en_US.UTF-8 | |ctype |en_US.UTF-8 | |tz |Europe/Copenhagen | -|date |2026-03-24 | +|date |2026-03-30 | |rstudio |2026.01.1+403 Apple Blossom (desktop) | |pandoc |3.6.4 @ /opt/homebrew/bin/ (via rmarkdown) | |quarto |1.7.30 @ /usr/local/bin/quarto | -|FreesearchR |26.3.4.260324 | +|FreesearchR |26.3.5.260330 | -------------------------------------------------------------------------------- @@ -53,6 +53,7 @@ |colorspace |2.1-2 |2025-09-22 |CRAN (R 4.5.0) | |commonmark |2.0.0 |2025-07-07 |CRAN (R 4.5.0) | |crayon |1.5.3 |2024-06-20 |CRAN (R 4.5.0) | +|curl |7.0.0 |2025-08-19 |CRAN (R 4.5.0) | |data.table |1.18.2.1 |2026-01-27 |CRAN (R 4.5.2) | |datamods |1.5.3 |2024-10-02 |CRAN (R 4.5.0) | |datawizard |1.3.0 |2025-10-11 |CRAN (R 4.5.0) | @@ -83,7 +84,7 @@ |foreach |1.5.2 |2022-02-02 |CRAN (R 4.5.0) | |foreign |0.8-91 |2026-01-29 |CRAN (R 4.5.2) | |Formula |1.2-5 |2023-02-24 |CRAN (R 4.5.0) | -|FreesearchR |26.3.4 |NA |NA | +|FreesearchR |26.3.5 |NA |NA | |fs |1.6.7 |2026-03-06 |CRAN (R 4.5.2) | |gdtools |0.5.0 |2026-02-09 |CRAN (R 4.5.2) | |generics |0.1.4 |2025-05-09 |CRAN (R 4.5.0) | @@ -106,6 +107,7 @@ |htmltools |0.5.9 |2025-12-04 |CRAN (R 4.5.2) | |htmlwidgets |1.6.4 |2023-12-06 |CRAN (R 4.5.0) | |httpuv |1.6.16 |2025-04-16 |CRAN (R 4.5.0) | +|httr |1.4.8 |2026-02-13 |CRAN (R 4.5.2) | |IDEAFilter |0.2.1 |2025-07-29 |CRAN (R 4.5.0) | |insight |1.4.6 |2026-02-04 |CRAN (R 4.5.2) | |iterators |1.0.14 |2022-02-05 |CRAN (R 4.5.0) | @@ -115,6 +117,7 @@ |keyring |1.4.1 |2025-06-15 |CRAN (R 4.5.0) | |knitr |1.51 |2025-12-20 |CRAN (R 4.5.2) | |labeling |0.4.3 |2023-08-29 |CRAN (R 4.5.0) | +|labelled |2.16.0 |2025-10-22 |CRAN (R 4.5.0) | |later |1.4.8 |2026-03-05 |CRAN (R 4.5.2) | |lattice |0.22-7 |2025-04-02 |CRAN (R 4.5.2) | |lifecycle |1.0.5 |2026-01-08 |CRAN (R 4.5.2) | @@ -124,7 +127,6 @@ |MASS |7.3-65 |2025-02-28 |CRAN (R 4.5.0) | |Matrix |1.7-4 |2025-08-28 |CRAN (R 4.5.0) | |memoise |2.0.1 |2021-11-26 |CRAN (R 4.5.0) | -|mgcv |1.9-4 |2025-11-07 |CRAN (R 4.5.0) | |mime |0.13 |2025-03-17 |CRAN (R 4.5.0) | |minqa |1.2.8 |2024-08-17 |CRAN (R 4.5.0) | |mvtnorm |1.3-2 |2024-11-04 |CRAN (R 4.5.2) | @@ -148,7 +150,6 @@ |pkgload |1.5.0 |2026-02-03 |CRAN (R 4.5.2) | |plyr |1.8.9 |2023-10-02 |CRAN (R 4.5.0) | |polyclip |1.10-7 |2024-07-23 |CRAN (R 4.5.0) | -|polylabelr |1.0.0 |2026-01-19 |CRAN (R 4.5.2) | |pracma |2.4.6 |2025-10-22 |CRAN (R 4.5.0) | |processx |3.8.6 |2025-02-21 |CRAN (R 4.5.0) | |promises |1.5.0 |2025-11-01 |CRAN (R 4.5.0) | diff --git a/inst/translations/translation_da.csv b/inst/translations/translation_da.csv index ce9abc8e..4f3752bd 100644 --- a/inst/translations/translation_da.csv +++ b/inst/translations/translation_da.csv @@ -55,7 +55,6 @@ "Imported data","Importeret data" "www/intro.md","www/intro.md" "Choose your data","Vælg dine data" -"Factor variable to reorder:","Kategoriske variabel der skal ændres:" "Sort by levels","Sorter efter niveauer" "Sort by count","Sorter efter antal" "Update factor variable","Updater faktor-variabel" @@ -148,16 +147,12 @@ "Import data from REDCap","Importér data fra REDCap" "REDCap server","REDCap-server" "Web address","Serveradresse" -"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Adressen skal være som 'https://redcap.your.institution/' eller 'https://your.institution/redcap/'" "API token","API-nøgle" -"The token is a string of 32 numbers and letters.","En API-nøgle består af ialt 32 tal og bogstaver." "Connect","Forbind" "Data import parameters","Data import parameters" -"Select fields/variables to import and click the funnel to apply optional filters","Vælg variabler, der skal importeres og tryk på tragten for at anvende valgfrie filtre" "Import","Import" "Click to see data dictionary","Tryk for at se metadata (Data Dictionary)" "Connected to server!","Forbindelse til serveren oprettet!" -"The {data_rv$info$project_title} project is loaded.","{data_rv$info$project_title}-projektet er forbundet." "Data dictionary","Data dictionary" "Preview:","Forsmag:" "Imported data set","Importeret datasæt" @@ -165,8 +160,6 @@ "Specify the data format","Specificér dataformatet" "Fill missing values?","Skal manglende observationer udfyldes?" "Requested data was retrieved!","Det udvalgte data blev hentet!" -"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde ID-variablen. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data." -"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data er hentet, men det ser ud til kun at indeholde nogle af de udvalgte variabler. Du skal kontakte din REDCap-administrator og sikre dig at du har adgang til faktisk at hente de udvalgte data." "Click to see the imported data","Tryk for at se de importerede data" "Regression table","Regressionstabel" "Import a dataset from an environment","Importer et datasæt fra et kodemiljø" @@ -291,7 +284,6 @@ "No data present.","Ingen data tilstede." "You have provided a complete dataset with no missing values.","Data er uden manglende observationer." "Start by loading data.","Start med at vælge data." -"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)" "Data classes and missing observations","Data classes and missing observations" "We encountered the following error showing missingness:","We encountered the following error showing missingness:" "Please confirm data reset!","Please confirm data reset!" @@ -323,3 +315,9 @@ "Settings","Settings" "Create new factor","Create new factor" "Choose color palette","Choose color palette" +"Optional filter logic (e.g., ⁠[gender] = 'female')","Optional filter logic (e.g., ⁠[gender] = 'female')" +"Drop empty","Drop empty" +"Choose variable:","Choose variable:" +"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter." +"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter." +"Likert diagram","Likert diagram" diff --git a/inst/translations/translation_sw.csv b/inst/translations/translation_sw.csv index 96a7a109..a375e0a5 100644 --- a/inst/translations/translation_sw.csv +++ b/inst/translations/translation_sw.csv @@ -55,7 +55,6 @@ "Imported data","Data iliyoingizwa" "www/intro.md","www/intro.md" "Choose your data","Chagua data yako" -"Factor variable to reorder:","Kigezo cha vipengele ili kupanga upya:" "Sort by levels","Panga kwa viwango" "Sort by count","Panga kwa hesabu" "Update factor variable","Sasisha kigezo cha kipengele" @@ -148,16 +147,12 @@ "Import data from REDCap","Ingiza data kutoka REDCap" "REDCap server","Seva ya REDCap" "Web address","Anwani ya wavuti" -"Format should be either 'https://redcap.your.institution/' or 'https://your.institution/redcap/'","Muundo unapaswa kuwa 'https://redcap.your.institution/' au 'https://your.institution/redcap/'" "API token","Tokeni ya API" -"The token is a string of 32 numbers and letters.","Tokeni ni mfuatano wa nambari na herufi 32." "Connect","Unganisha" "Data import parameters","Vigezo vya kuingiza data" -"Select fields/variables to import and click the funnel to apply optional filters","Chagua sehemu/vigezo vya kuingiza na ubofye faneli ili kutumia vichujio vya hiari" "Import","Ingiza" "Click to see data dictionary","Bofya ili kuona kamusi ya data" "Connected to server!","Imeunganishwa na seva!" -"The {data_rv$info$project_title} project is loaded.","Mradi wa {data_rv$info$project_title} umepakiwa." "Data dictionary","Kamusi ya data" "Preview:","Hakikisho:" "Imported data set","Seti ya data iliyoingizwa" @@ -165,8 +160,6 @@ "Specify the data format","Bainisha umbizo la data" "Fill missing values?","Jaza thamani zinazokosekana?" "Requested data was retrieved!","Data iliyoombwa ilipatikana!" -"Data retrieved, but it looks like only the ID was retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana ni kitambulisho pekee kilichorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data." -"Data retrieved, but it looks like not all requested fields were retrieved from the server. Please check with your REDCap administrator that you have required permissions for data access.","Data imerejeshwa, lakini inaonekana kama si sehemu zote zilizoombwa zilizorejeshwa kutoka kwa seva. Tafadhali wasiliana na msimamizi wako wa REDCap kama una ruhusa zinazohitajika kwa ufikiaji wa data." "Click to see the imported data","Bofya ili kuona data iliyoingizwa" "Regression table","Jedwali la urejeshaji" "Import a dataset from an environment","Ingiza seti ya data kutoka kwa mazingira" @@ -291,7 +284,6 @@ "No data present.","No data present." "You have provided a complete dataset with no missing values.","You have provided a complete dataset with no missing values." "Start by loading data.","Start by loading data." -"Create a new variable; otherwise replaces (Updating labels always creates new variable)","Create a new variable; otherwise replaces (Updating labels always creates new variable)" "Data classes and missing observations","Data classes and missing observations" "We encountered the following error showing missingness:","We encountered the following error showing missingness:" "Please confirm data reset!","Please confirm data reset!" @@ -323,3 +315,9 @@ "Settings","Settings" "Create new factor","Create new factor" "Choose color palette","Choose color palette" +"Optional filter logic (e.g., ⁠[gender] = 'female')","Optional filter logic (e.g., ⁠[gender] = 'female')" +"Drop empty","Drop empty" +"Choose variable:","Choose variable:" +"An empty data set was imported. Please review data filter.","An empty data set was imported. Please review data filter." +"An error was encountered exporting data. Please review data filter.","An error was encountered exporting data. Please review data filter." +"Likert diagram","Likert diagram" diff --git a/renv.lock b/renv.lock index 567601cc..96709a25 100644 --- a/renv.lock +++ b/renv.lock @@ -35,12 +35,12 @@ }, "DHARMa": { "Package": "DHARMa", - "Version": "0.4.6", + "Version": "0.4.7", "Source": "Repository", "Title": "Residual Diagnostics for Hierarchical (Multi-Level / Mixed) Regression Models", - "Date": "2022-09-08", - "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"))", - "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB' 'GLMMadaptive' and 'spaMM', generalized additive models ('gam' from 'mgcv'), 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial and temporal autocorrelation.", + "Date": "2024-10-16", + "Authors@R": "c(person(\"Florian\", \"Hartig\", email = \"florian.hartig@biologie.uni-regensburg.de\", role = c(\"aut\", \"cre\"), comment=c(ORCID=\"0000-0002-6255-9059\")), person(\"Lukas\", \"Lohse\", role = \"ctb\"), person(\"Melina\", \"de Souza leite\", role = \"ctb\"))", + "Description": "The 'DHARMa' package uses a simulation-based approach to create readily interpretable scaled (quantile) residuals for fitted (generalized) linear mixed models. Currently supported are linear and generalized linear (mixed) models from 'lme4' (classes 'lmerMod', 'glmerMod'), 'glmmTMB', 'GLMMadaptive', and 'spaMM'; phylogenetic linear models from 'phylolm' (classes 'phylolm' and 'phyloglm'); generalized additive models ('gam' from 'mgcv'); 'glm' (including 'negbin' from 'MASS', but excluding quasi-distributions) and 'lm' model classes. Moreover, externally created simulations, e.g. posterior predictive simulations from Bayesian software such as 'JAGS', 'STAN', or 'BUGS' can be processed as well. The resulting residuals are standardized to values between 0 and 1 and can be interpreted as intuitively as residuals from a linear regression. The package also provides a number of plot and test functions for typical model misspecification problems, such as over/underdispersion, zero-inflation, and residual spatial, phylogenetic and temporal autocorrelation.", "Depends": [ "R (>= 3.0.2)" ], @@ -59,7 +59,7 @@ ], "Suggests": [ "knitr", - "testthat", + "testthat (>= 3.0.0)", "rmarkdown", "KernSmooth", "sfsmisc", @@ -68,7 +68,8 @@ "mgcViz (>= 0.1.9)", "spaMM (>= 3.2.0)", "GLMMadaptive", - "glmmTMB (>= 1.1.2.3)" + "glmmTMB (>= 1.1.2.3)", + "phylolm (>= 2.6.5)" ], "Enhances": [ "phyr", @@ -80,11 +81,12 @@ "URL": "http://florianhartig.github.io/DHARMa/", "LazyData": "TRUE", "BugReports": "https://github.com/florianhartig/DHARMa/issues", - "RoxygenNote": "7.2.1", + "RoxygenNote": "7.3.2", "VignetteBuilder": "knitr", "Encoding": "UTF-8", + "Config/testthat/edition": "3", "NeedsCompilation": "no", - "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb]", + "Author": "Florian Hartig [aut, cre] (), Lukas Lohse [ctb], Melina de Souza leite [ctb]", "Maintainer": "Florian Hartig ", "Repository": "CRAN" }, @@ -2345,7 +2347,7 @@ }, "datamods": { "Package": "datamods", - "Version": "1.5.2", + "Version": "1.5.3", "Source": "Repository", "Title": "Modules to Import and Manipulate Data in 'Shiny'", "Authors@R": "c(person(given = \"Victor\", family = \"Perrier\", role = c(\"aut\", \"cre\", \"cph\"), email = \"victor.perrier@dreamrs.fr\"), person(given = \"Fanny\", family = \"Meyer\", role = \"aut\"), person(given = \"Samra\", family = \"Goumri\", role = \"aut\"), person(given = \"Zauad Shahreer\", family = \"Abeer\", role = \"aut\", email = \"shahreyar.abeer@gmail.com\"), person(given = \"Eduard\", family = \"Szöcs\", role = \"ctb\", email = \"eduardszoecs@gmail.com\") )", @@ -8357,7 +8359,7 @@ }, "shinybusy": { "Package": "shinybusy", - "Version": "0.3.2", + "Version": "0.3.3", "Source": "Repository", "Title": "Busy Indicators and Notifications for 'Shiny' Applications", "Authors@R": "c(person(\"Fanny\", \"Meyer\", role = \"aut\"), person(\"Victor\", \"Perrier\", email = \"victor.perrier@dreamrs.fr\", role = c(\"aut\", \"cre\")), person(\"Silex Technologies\", comment = \"https://www.silex-ip.com\", role = \"fnd\"))", @@ -8370,8 +8372,8 @@ "jsonlite", "htmlwidgets" ], - "RoxygenNote": "7.2.3", - "URL": "https://github.com/dreamRs/shinybusy", + "RoxygenNote": "7.3.1", + "URL": "https://github.com/dreamRs/shinybusy, https://dreamrs.github.io/shinybusy/", "BugReports": "https://github.com/dreamRs/shinybusy/issues", "Suggests": [ "testthat",