Get the versions of STICS that are fully compatible with this package.

get_stics_versions_compat(version_index = NULL)

Arguments

version_index

Absolute positive index, or negative relative index from latest version

Value

A named list with the STICS versions compatible with this package ($versions_list), and the latest version in use ($latest_version) or an existing version selected using version_index.

Examples

# Getting the complete versions list
get_stics_versions_compat()
#> $versions_list
#> [1] "V8.5"    "V9.0"    "V9.1"    "V9.2"    "V10.0"   "V10.1.0"
#> 
#> $latest_version
#> [1] "V10.1.0"
#> 

# Getting the first version
get_stics_versions_compat(1)
#> [1] "V8.5"

# Getting the previous version of the latest one
get_stics_versions_compat(-1)
#> [1] "V10.0"