- avoid warning: overlapping comparisons always evaluate to true in
parse_int
- replacing: !(str.str[0] >= ‘0’ || str.str[0] <= ‘9’) with
(str.str[0] < ‘0’ || str.str[0] > ‘9’)
- changed url in nametagger_donwload_model to
https://ufal.mff.cuni.cz/nametag/1/users-manual
- nametagger_download_model now allows to download a model for Czech:
czech-cnec-140304
- Add explicit initialization to silence false positive valgrind
report in compressor_save.cpp
- Drop C++11 specification in Makevars
- Remove use of std::iterator by incorporating fixes of
https://github.com/ufal/nametag/commit/2aa1d1de78d2f562c0770423f94cc7d7e1347ff7
in utf8.h and utf16.h
- use snprintf instead of sprintf to handle the R CMD check
deprecating note on M1mac
- added example in README
- Move udpipe to Suggests instead of Imports, remove crfsuite from
Suggests
- Make example conditionally on availability of udpipe
- Initial package based on https://github.com/ufal/nametag commit
598666b5aa2f3ebbb9658976fe06749f551aed02