ARver/arver/__init__.py
arcctgx 853a3ac012 add option to force using ARv1 checksums
By default arver tries to match ARv2 checksum first, and if a match is
found it never tries to match ARv1 checksum. This approach matches the
reference implementation and works well for most CDs. However, there are
some (often older) CDs in the database where ARv1 track checksums have
higher confidence values than corresponding ARv2 checksums. Using ARv1
checksums may be preferred for these CDs.

Add -1/--use-arv1 command-line option. When enabled, arver will not try
to match ARv2 checksums and will only use ARv1. If ARv1 checksums don't
exist in the database, verification will fail.
2025-01-26 16:42:41 +01:00

5 lines
110 B
Python

"""Main ARver package."""
APPNAME = 'ARver'
VERSION = 'v1.5.0.dev0'
URL = 'https://github.com/arcctgx/ARver'