Skip to content

Commit

Permalink
- Forgot to increment the Version field in the DESCRIPTION R file
Browse files Browse the repository at this point in the history
- Slightly edited the warning message if the PICAFlow version is not up-to-date
  • Loading branch information
PaulRegnier committed Dec 2, 2024
1 parent e2066c0 commit 616bc33
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: PICAFlow
Title: PICAFlow: a complete R workflow dedicated to flow/mass cytometry data, from data pre-processing to deep and comprehensive analysis
Version: 1.0.2
Version: 1.0.4
Authors@R:
person("Paul", "Régnier", , "paul.regnier@aphp.fr", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-9713-1132"))
Expand Down
2 changes: 1 addition & 1 deletion R/0_Preprocessing.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ checkNewVersion = function(...)

if(installedRelease != latestRelease)
{
print(paste("[WARNING] The version of PICAFlow which is currently installed on this computer ('", installedRelease, "') does not match with the latest version available on GitHub ('", latestRelease, "'). We kindly invite you to update to the latest version to avoid any troubles related to bugs and/or missing features. You can launch the update with the following command: 'devtools::install_github('PaulRegnier/PICAFlow', force = TRUE)'. Thank you for your understanding.", sep = ""))
print(paste("[WARNING] The version of PICAFlow which is currently installed on this computer ('", installedRelease, "') does not match with the latest version available on GitHub ('", latestRelease, "'). We kindly invite you to update to the latest version to avoid any troubles related to bugs and/or missing features. You can launch the update with the following command: 'devtools::install_github('PaulRegnier/PICAFlow', force = TRUE)'. Please see the tutorial for more information. Thank you for your understanding.", sep = ""))
} else
{
print(paste("[NOTE] The version of PICAFlow which is currently installed on this computer (", installedRelease, ") is up-to-date.", sep = ""))
Expand Down

0 comments on commit 616bc33

Please sign in to comment.