Skip to content

Releases: rasteric/filestore

Fixed RestoreAtSource

21 Oct 10:41
Compare
Choose a tag to compare
Fixed RestoreAtSource Pre-release
Pre-release
v0.0.18-alpha

Changed RestoreAtSource to correctly handle path information.

Fixed bug with not appending .snappy to local filename

19 Oct 16:25
Compare
Choose a tag to compare
v0.0.17-alpha

Fixed bug with not appending .snappy to local file name in Restore wh…

Fixed typo

07 Oct 13:50
Compare
Choose a tag to compare
Fixed typo Pre-release
Pre-release
v0.0.16-alpha

Fixed typo in SQL.

Removed FuzzySearch entirely

07 Oct 13:41
Compare
Choose a tag to compare
Pre-release

It is not needed since a fulltext search on metaphone words in fuzzy will likely not match a fulltext search not using metaphone conversion first.

Added ParseDBDate and ToDBDate as public functions

23 Sep 18:05
Compare
Choose a tag to compare

They are useful, so they are exposed as public functions now.

Access to FTS5Escape and EncodeMetaphone.

23 Sep 14:21
Compare
Choose a tag to compare

We're handing through these functions to be usable by the client, instead of creating their own.

Removed FTS5 Escaping

23 Sep 14:17
Compare
Choose a tag to compare
Removed FTS5 Escaping Pre-release
Pre-release

FTS5 escaping is removed because it doesn't make sense - it is up to the client to escape FTS5 queries. The reason why it doesn't make sense is that every individual term must be escaped, but a proper FTS5 query may also contain * wildcards and logical connectives. So it is up to the client application to build properly escaped FTS5 queries.

Fixed VersionsFts.file bug

23 Sep 13:42
Compare
Choose a tag to compare
Pre-release
v0.0.11-alpha

Fixed VersionsFts.file reference bug.

Changed order of rank and limit in FTS5 query

23 Sep 13:37
Compare
Choose a tag to compare
v0.0.10-alpha

FTS5 query order of rank vs limit changed.

Escaping FTS5 query strings

23 Sep 13:30
Compare
Choose a tag to compare
Pre-release

FTS5 query strings are now escaped according to the following rules:

  1. Replace any occurrence of " with two quotes ""
  2. Enclose the term in double quotes "term".