Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Interactive setup typo #14

Merged
merged 7 commits into from
Nov 14, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ghqc
Title: Manage QC via GitHub Issues using Shiny Apps
Version: 0.1.5
Version: 0.1.7
Authors@R: c(
person("Anne", "Zheng", email = "[email protected]", role = c("aut")),
person("Jenna", "Johnson", email = "[email protected]", role = c("aut")),
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# ghqc

# ghqc 0.1.7

- typo found in `setup_ghqc` related to the info repo global variable. No performance change

# ghqc 0.1.6

- remove version limits for dependencies. Tested version limits down to snapshot date of 2022-08-31
- when using the `use_pak = FALSE` flag in `install_ghqcapp_dependencies`, forcing `utils::install.packages` to remove potential renv issues

# ghqc 0.1.5

- language change in `remove_ghqc_configuration` from "customizing information" to "custom configuration"
Expand Down
2 changes: 1 addition & 1 deletion R/interactive_setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ interactive_info <- function(renv_text) {
cli::cli_inform(c(" ", "GHQC_INFO_REPO is not set in your ~/.Renviron"))
info_read <- readline("Provide the URL to the configuring information repository: ")
} else {
cli::cli_inform(c(" ", "GITHUB_INFO_REPO is set to {info$val} in your ~/.Renviron"))
cli::cli_inform(c(" ", "GHQC_INFO_REPO is set to {info$val} in your ~/.Renviron"))
info_read <- readline(glue::glue("Customizing Information Repository ({info$val}) "))
if (info_read == "") info_read <- info$val
}
Expand Down