nvrs

Grind Compliant

fast new version checker for software releases

documentation for bleeding-edge main can be found at https://nvrs.adamperkowski.dev/main

keep in mind that this website is still a WIP

see at GitHub

MIT License

Copyright (c) 2025 Adam Perkowski

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

features

nvchecker compatibility

check the release notes and configuration docs for compatibility updates and instructions

speed

ka-chow
commandtime per updated packagedetails
nvrs~ 0.03sAPI requests included
depends on internet speed
nvrs --cmp~ 0.0008sdepends on disk speed
nvrs --take~ 0.001sdepends on disk speed

sources

see the project's readme for a list of supported sources

installation

Packaging status

Arch Linux

nvrs is available as a package in the AUR.
you can install it with your preferred AUR helper, example:

paru -S nvrs

or manually:

git clone https://aur.archlinux.org/nvrs.git
cd nvrs
makepkg -si

Cargo

nvrs can be installed via Cargo with:

cargo install nvrs --all-features

note that crates installed using cargo install require manual updating with cargo install --force.

Manual

  1. download the latest binary from GitHub's release page
  2. allow execution
chmod +x nvrs
  1. move the file to a directory in $PATH (using /usr/bin as an example)
sudo mv nvrs /usr/bin/nvrs

configuration

nvrs relies on a TOML configuration file (example) containing basic settings, such as oldver, newver & keyfile paths, as well as package entries. supported config paths:

  • $XDG_CONFIG_HOME/nvrs.toml (~/.config/nvrs.toml if the variable is not set)
  • ./nvrs.toml
  • custom paths set with nvrs --config

__config__ table

this configures the behavior of nvrs. see the example config.

available fields:

namedescriptiontyperequired
oldverpath to the oldver filestring✔️
newverpath to the newver filestring✔️
keyfilepath to a keyfile (see keyfile structure)string

package entries

example

package entries are custom entries in the main config file. they contain values such as:

namedescriptiontyperequiredcustom
sourcesee sourcesstring✔️
source namethe "target". eg. repo path for githubstring✔️✔️
hostdomain name the source is hosted onstring
prefixthe prefix used in releases / tags
example: v for tags like v0.1.0
string
use_max_taguse max git tag instead of the latest releasebool
urlurl to check for source type regexstring
regexregex to search url for source type regexbool

keyfile structure

this file contains API keys for various sources. example can be found here.

[keys]
github = "your_secret_github_api_key_that_you_shouldnt_push_to_a_public_nor_a_private_remote_repo_because_there_will_definitely_be_serious_consequences_sooner_or_later_if_you_do_trust_me_just_dont"
gitlab = "remember_to_replace_the_example_values_here_here_with_your_actual_keys_otherwise_it_wont_work_but_dont_push_keyfiles_to_remote_repos"

"I think that example value is not long enough" - orhun

credits