Skip to contents

Compares the locally installed version of each on-demand dictionary against the version available on the remote GitLab repository. Core dictionaries are always up to date with the installed package version.

Usage

check_updates(quiet = FALSE)

Arguments

quiet

Logical. Suppress informational messages? Default FALSE.

Value

A data frame with columns:

  • name: Dictionary name

  • local_version: Version currently installed (NA if not installed)

  • remote_version: Version available on the remote repository

  • update_available: TRUE if remote is newer or local is missing

Details

Uses a single batch request to fetch all remote versions at once (from versions.tsv), falling back to per-dictionary requests if the batch endpoint is unavailable.

See also

dict_version to get a single dictionary's version, download_dictionary to download or update dictionaries, update_dictionaries to apply updates in bulk.

Examples

if (FALSE) { # \dontrun{
check_updates()
} # }