Eric House
e5eb1aab6e
override layout defaults to shrink table rows
2020-08-18 16:29:09 -07:00
Eric House
374fd4a0b6
up target sdk from 28 to 29
2020-08-17 12:45:55 -07:00
Eric House
458872c886
use new makeObject to improve API
2020-08-17 10:49:12 -07:00
Eric House
2338b6e017
add and use makeObject utility method
2020-08-17 10:49:12 -07:00
Eric House
ca4e6e29d5
remove misguided assert (debug only)
2020-08-17 10:49:12 -07:00
Eric House
55cb36d091
cleanup
2020-08-16 19:29:42 -07:00
Eric House
d01a71736d
add missing ref release
...
It's only for SMS sends, so that it's missing hasn't likely been causing
a problem.
2020-08-16 16:13:23 -07:00
Eric House
1ce9267381
fix case where several patterns call for choice
...
Null-out patterns so if we have a pattern later we know it came from the
user choosing.
2020-08-16 16:13:23 -07:00
Eric House
6567f6ffcf
debug features on by default on DEBUG builds
2020-08-15 12:03:41 -07:00
Eric House
67be4d2249
remove unused imports (one file only)
2020-08-14 16:56:02 -07:00
Eric House
d44fca3671
up version strings
2020-08-14 10:51:57 -07:00
Eric House
ddf0f185d4
do log db stuff on background thread
2020-08-14 10:51:57 -07:00
Eric House
5b23b40c4f
revert unused changes
2020-08-14 10:51:57 -07:00
Eric House
274ebcef2d
make +Blank button disabled until focus gained
2020-08-13 13:26:26 -07:00
Eric House
fe742b7e81
move note display into menuitem to save space
2020-08-13 13:01:49 -07:00
Eric House
360f454c3e
tweak string
2020-08-13 09:52:45 -07:00
Eric House
0216451bd5
make lib name a constant
2020-08-13 09:52:05 -07:00
Eric House
5d305f7df7
for debug builds, check for upgrades hourly
2020-08-13 09:16:04 -07:00
Eric House
adc8c8d961
add missing deb
2020-08-12 21:50:48 -07:00
Eric House
eab9b7feda
re-change string accidentally reverted in merge
2020-08-12 18:28:51 -07:00
Eric House
e1a485d23e
Merge branch 'android_branch' into android_translate
2020-08-12 17:02:07 -07:00
Eric House
8511c633ee
Merge android_translate branch
2020-08-12 16:50:34 -07:00
Eric House
590b0d0b04
use curly quotes
2020-08-12 16:34:59 -07:00
Eric House
2d0a53978f
Merge remote-tracking branch 'weblate/android_translate' into android_translate
2020-08-12 16:19:55 -07:00
Eric House
88abf58d3a
one-word tweak
2020-08-12 13:21:50 -07:00
Eric House
b521943505
tweak stringsy
2020-08-12 12:46:46 -07:00
naofum
3ff4af3256
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (844 of 844 strings)
2020-08-12 15:32:48 +02:00
John Vandenhaute
d0cfbccf3e
Translated using Weblate (French)
...
Currently translated at 88.0% (743 of 844 strings)
2020-08-12 15:32:47 +02:00
Eric House
ba0d551750
filter tweak to deal with large font/small screen
2020-08-11 17:00:59 -07:00
Eric House
7a43e95aa8
fix crashes when filter strings are too long
2020-08-11 14:13:11 -07:00
Eric House
b6a74b7d15
update change log
2020-08-09 12:18:34 -07:00
Eric House
0e3651131e
get rid of two unnecessary classes
2020-08-09 12:17:34 -07:00
Allan Nordhøy
5f4362c266
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 77.8% (657 of 844 strings)
2020-08-09 15:32:47 +02:00
Allan Nordhøy
db09379118
Translated using Weblate (Japanese)
...
Currently translated at 99.4% (839 of 844 strings)
2020-08-09 15:32:46 +02:00
Allan Nordhøy
7933a70399
Translated using Weblate (English)
...
Currently translated at 100.0% (844 of 844 strings)
2020-08-09 15:32:46 +02:00
Eric House
0b9f628115
fix string
2020-08-07 18:42:39 -07:00
Eric House
d0145779ce
fix string
2020-08-07 18:41:46 -07:00
Eric House
e8175d69aa
fix problems iterating backwards with start-with pattern
2020-08-07 11:05:58 -07:00
Eric House
e5dd43ee1b
Merge branch 'android_translate' into android_branch
2020-08-06 11:44:16 -07:00
Eric House
798f8421da
show delimiter when language requires it
2020-08-06 11:41:50 -07:00
Eric House
0f9bcd9898
let user choose between tile-spellings
2020-08-06 11:37:05 -07:00
Eric House
87337ba789
add a show-faq menu
2020-08-05 14:01:34 -07:00
Eric House
92c1180411
add button taking you to the (new) FAQ
2020-08-05 13:46:44 -07:00
Eric House
b8f359c3e5
add filtering to wordlist browser
...
Add a basic regular expression engine to the dictiter, and to the UI add
the ability to filter for "starts with", "contains" and "ends with",
which translate into ANDed RE_*, _*RE_* and _*RE, respectively (with
_ standing for blank/wildcard). The engine's tightly integrated with the
next/prevWord() functions for greatest possible speed, but unless
there's no pattern does slow things down a bit (especially when "ENDS
WITH" is used.) The full engine is not exposed (users can't provide raw
REs), and while the parser will accept nesting (e.g. ([AB]_*[CD]){2,5}
to mean words from 2-5 tiles long starting with A or B and ending with C
or D) the engine can't handle it. Which is why filtering for word length
is handled separately from REs (but also tightly integrated.)
Users can enter strings that don't map to tiles. They now get an
error. It made sense for the error alert to have a "Show tiles"
button, so there's now a dialog listing all the tiles in a wordlist,
something the browser has needed all along.
2020-08-05 09:47:44 -07:00
Eric House
d71cf6cac6
remove assert
...
It's firing on a device whose screen happens to be the wrong size. Seems
nothing bad happens in spite of proceeding, so let's....
2020-08-01 20:16:41 -07:00
Eric House
1d587caf85
remove dead symlink
...
(part of reverting f-droid mqtt removal I missed)
2020-07-27 20:50:54 -07:00
Eric House
915b47d612
use mavenCentral instead of eclipse's repo
2020-07-27 20:36:42 -07:00
Eric House
965ecc51e2
user newer ndk version (required by f-droid)
2020-07-27 20:36:42 -07:00
Eric House
f59b51268d
Revert "Remove mqtt from f-droid build"
...
This reverts commit 7583c26e41
.
2020-07-27 09:32:27 -07:00
Allan Nordhøy
1445e29d4b
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 75.4% (637 of 844 strings)
2020-07-26 23:41:52 +02:00