SQLite Forum

Better download file naming
Login
Hello,

There are a couple of Sqlite packages in the Npackd repository: https://www.npackd.org/p?q=sqlite&sort=stars&category0=&repository=

The new versions are detected by downloading the contents of https://www.sqlite.org/download.html and searching via a regular expression like this one

32-bit DLL \(x86\) for SQLite version ([\d\.]+)\.

... and creating a version using a template like this one:

https://www.sqlite.org/2021/sqlite-dll-win32-x86-${v0}${v1}0${v2}00.zip

Unfortunately the naming of the files like sqlite-amalgamation-3360000.zip does not allow a clear version detection. Is it 3.36 or 33.6? The usage of the current year in the URL does not help either.

Would it be possible to change the naming scheme? I guess other package managers also have this problem.