All Versions
5
Latest Version
Avg Release Cycle
97 days
Latest Release
2145 days ago
Changelog History
Changelog History
-
v1.2.2 Changes
June 10, 2019๐ Scala 2.13 support
-
v1.2.1 Changes
February 20, 2019Perfomance improvements
.map
and.foreach
methods in hot code replaced towhile
loops.โ About 30% acceleration for
sbt test
achieved. -
v1.2.0 Changes
November 11, 2018๐ฆ Package name simplified
Solved #3.
โ Removed useless domain in package name. New import api:import scalaphash.PHash.\_
-
v1.1.1 Changes
November 11, 2018๐ Fixed #6
-
v1.1.0 Changes
May 19, 2018Safe API
Solved #1. Now you can compute hashes in two ways:
val hash1: Either[Throwable, DCTHash] = dctHash(image) // safe wayval hash2: DCTHash = unsafeDctHash(image) // can throw an exception
๐ Improved readability
โ Added trait
PHashAlgebra
with public functions signatures and docs for comfortable API overview.