I have done a bit more work on this because it affects a new feature I am working on at the moment.<div><br></div><div>Books I have found with Strongs but without the Strongs feature type in their .conf are:</div><div><ul>
<li>OSMHB</li><li>RWebster</li><li>SpaTDP</li><li>Byz</li><li>[RST (no longer unavailable)]</li></ul></div><div><br></div><div>I have come up with a little hack to find if a book has Strongs because I need it now:</div><div>
<div><span class="Apple-tab-span" style="white-space:pre">      </span>private boolean hasStrongs(Book book) {</div><div><span class="Apple-tab-span" style="white-space:pre">              </span>Object globalOptionFilter = book.getBookMetaData().getProperty("GlobalOptionFilter");</div>
<div><span class="Apple-tab-span" style="white-space:pre">              </span>return globalOptionFilter==null ? false : globalOptionFilter.toString().contains("Strongs"); </div><div><span class="Apple-tab-span" style="white-space:pre">      </span>}</div>
</div><div><br></div><div>A secondary problem I have uncovered is that Strong's numbers are not indexed in the above books because the hasStrongs check in LuceneIndex.java uses the FeatureType.STRONGS_NUMBERS discussed above.</div>
<div><br></div><div>Kind regards</div><div>Martin</div>