mirror of
https://github.com/arcctgx/ARver
synced 2025-06-04 14:33:46 +02:00
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.
5 lines
110 B
Python
5 lines
110 B
Python
"""Main ARver package."""
|
|
|
|
APPNAME = 'ARver'
|
|
VERSION = 'v1.5.0.dev0'
|
|
URL = 'https://github.com/arcctgx/ARver'
|