4.9.0
Release blog post: https://soupault.app/blog/soupault-4.9.0-release
New features and improvements
- New
startup
hook that runs before soupault processes any pages and can modify theglobal_data
variable.
New plugin API functions
New Digest
module offers functions for calculating cryptographic hash sums of strings.
All those functions return hex digests.
Digest.md5(str)
Digest.sha1(str)
Digest.sha256(str)
Digest.sha512(str)
Digest.blake2s(str)
Digest.blake2b(str)
Other new functions:
Sys.basename_url(str)
andSys.dirname_url(str)
— aliases forSys.basename_unix
andSys.dirname_unix
, respectively.