From: Damyan Ivanov Date: Tue, 8 Jun 2021 20:26:14 +0000 (+0300) Subject: fix looking up old transactions with non-ASCII names (broken in 0.18.0) X-Git-Tag: v0.19.2~1 X-Git-Url: https://git.ktnx.net/?a=commitdiff_plain;ds=inline;h=4061b545fb854c78717564520b7ac43fa2eabf9f;hp=4061b545fb854c78717564520b7ac43fa2eabf9f;p=mobile-ledger.git fix looking up old transactions with non-ASCII names (broken in 0.18.0) according to the documentation, SQLite's NOCASE collation affects only ASCII characters. Unicode is explicitly mentioned as not supported. Strangely Unicode still works on some Android versions/variants, but not on others. This change stops relying on NOCASE collation and puts back upper case variant of transaction description in a new column, which is then used when looking up previous transactions for auto-completion ---