Skip to content

Releases: Blue-Rocket/BRFullTextSearch

CLucene as a pod

29 Nov 22:05
Compare
Choose a tag to compare
CLucene as a pod Pre-release
Pre-release

The 2.x release does not contain new features. Instead it breaks out the CLucene code into a stand-alone Cocoapod (BRCLucene) so that project can be managed independently from this one. In addition, this release switches from (the now deprecated) libstdc++ to libc++ and requires c++11.

OS X support

17 May 23:36
Compare
Choose a tag to compare

This release adds an OS X framework target, as well as OS X CocoaPods support and a sample OS X application.

Sort by multiple fields

17 May 23:35
Compare
Choose a tag to compare

Adds support for sorting by more than one field and fixes a threading-related crash bug.

Exception handling

12 Oct 17:24
Compare
Choose a tag to compare

Translate CLucene C++ exceptions into Objective-C exceptions, with specific support for query parsing errors and the "too many clauses" exception that can happen from prefix searches on larger data sets.

Lucene patches

12 Oct 04:20
Compare
Choose a tag to compare

Applied patches available from the FreeBSD textproc/clucene port not already applied to the local CLucene source tree, for various small fixes.

Documentation updates

16 Sep 08:48
Compare
Choose a tag to compare

Minor documentation fixes and updates.

1.0.7

07 May 01:04
Compare
Choose a tag to compare

Tweak to the Podspec so that the compiler optimization value is no longer specified. Previously this was set to -O1. If you prefer the old setting, you can specify this value at the target level in your Xcode project.

1.0.6

22 Apr 02:14
Compare
Choose a tag to compare

Easily turn stemming on and off now. The CLuceneSearchService now supports a BOOL stemmingDisabled property that, when enabled, turns off stemming for tokenized text.

1.0.5

10 Apr 01:44
Compare
Choose a tag to compare

Better support for prefix-based (wildcard) searches on stemmed words. The CLuceneSearchService now supports a BOOL supportStemmedPrefixSearches property that, when enabled, indexes the original word along with the stemmed version of the word, so a search for something like capabi* (stems to capabi) can match capability (stems to capabl).