Eric House
387d88bdde
fix assertions when duplicateMode on
...
Hadn't tested in a while and fixing undo problems added some invalid
assumptions.
2020-04-10 07:12:56 -07:00
Eric House
a8a9b25c62
include translations in release notes
2020-04-10 07:12:56 -07:00
Eric House
e8432c3c44
fix app name capitalization
2020-04-10 07:12:56 -07:00
Eric House
916102b088
fix uninstall script
2020-04-10 07:12:56 -07:00
Eric House
d5122843b1
change strings for new release
2020-04-10 07:12:56 -07:00
Eric House
6602e3daae
hack: limit chat field length to 255
...
The common code truncates to 255 *bytes*, not chars, so this isn't even
right, but at least for ascii users it'll make it less likely that
what's typed doesn't all get sent. The right fix is to change the format
to not limit sent str len to 255 bytes. See commit 512a8e1af
.
2020-04-10 07:12:56 -07:00
Eric House
ac6373afa7
fix crash when chat message is too long
...
Len byte was limited to 255, but would get clipped (masked with 0xFF)
then all the string data would get written. So on receipt, the clipped
length was taken to be that of the string data, with the rest of the
string to be interpreted as something else. An array index, in this
case.
2020-04-10 07:12:56 -07:00
Eric House
c1597cc941
recover from corrupt chat player index
...
This should never happen, but it did and I want to stop local crashes to
investigate.
2020-04-10 07:12:56 -07:00
Allan Nordhøy
c9b4d76c74
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 77.0% (636 of 825 strings)
2020-04-05 06:24:48 +02:00
Allan Nordhøy
0e476bf28f
Translated using Weblate (Norwegian Bokmål)
...
Currently translated at 76.9% (635 of 825 strings)
2020-04-04 04:38:00 +02:00
Nathan
109075e629
Translated using Weblate (French)
...
Currently translated at 91.5% (755 of 825 strings)
2020-03-30 03:18:49 +02:00
Bernard Massot
c42de3b146
Translated using Weblate (French)
...
Currently translated at 89.5% (739 of 825 strings)
2020-03-26 13:46:24 +01:00
Eric House
d90314b153
fix formatter specifiers in Japanese
2020-03-24 16:50:51 -07:00
Eric House
53bc8ecdb0
Merge branch 'android_branch' into android_translate
2020-03-24 16:27:25 -07:00
Eric House
cd0cf0c3f2
tweaks to logging
2020-03-24 15:59:33 -07:00
Eric House
8bd623d91a
fix NFC
...
A change in how sendMsg() figured out what address types to use dropped
NFC, breaking sending on Android. Fix.
2020-03-24 15:58:06 -07:00
Eric House
2451b0c53c
fix formatting exception in rarely-seen string
...
I have no idea how to fix the translated strings, of course, so just
stuck the missing specifier in at the beginning.
2020-03-24 11:04:48 -07:00
Cassio Lamarck Silva Freitas
f8fe45323f
Translated using Weblate (Portuguese)
...
Currently translated at 47.3% (391 of 825 strings)
2020-03-23 04:46:59 +01:00
Eric House
acfca164ca
fix reversed arrow icons
2020-03-20 19:36:40 -07:00
Eric House
5611d17849
fix so games don't stall after undo
...
With these changes the test script no longer produces games that don't
finish. I think they are recovering from the problems produced by one
device doing an undo while another is making a move, or other problems
produced by undo being allowed to happen on any device at any time, but
haven't analyzed the games beyond the test script's verifying that they
all finish with a Winner after all tiles are consumed.
2020-03-19 16:53:44 -07:00
Eric House
3c1a748272
fix dictionary sum checking server-side
2020-03-18 22:28:58 -07:00
Eric House
b3a3d38ca4
remove unused (I think) icons
2020-03-18 16:56:23 -07:00
Eric House
224f2a29da
convert two more .svg files
2020-03-18 16:27:47 -07:00
Eric House
a7862d2efe
replace .png arrows with .svg
2020-03-18 16:11:10 -07:00
Eric House
0df0878c0a
use DrawableVector for middle square marker
2020-03-18 13:35:24 -07:00
Eric House
197c7e61b0
convert to using VectorDrawable for two files
...
Proof-of-concept. I hate that this can't be automated readily using
stuff in ubuntu, but we'll see how it works.
2020-03-18 12:51:39 -07:00
Eric House
251cbfefd5
change targetsdk for travis
2020-03-18 12:32:49 -07:00
Eric House
7f8f0d096c
make arrows more pointed
2020-03-18 12:31:38 -07:00
Grace Guo
e3b471cbdb
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (825 of 825 strings)
2020-03-18 08:36:28 +01:00
Eric House
5cae732a60
fix release builds
2020-03-17 20:33:24 -07:00
Eric House
6e27196aed
specify svg files to be used as sources
...
To move away from generating .png files, I need to be able to specify
which of the .svg files is used as a source at build time. (The rest
will be converted manually into .xml files that are checked in.)
2020-03-17 20:25:33 -07:00
Eric House
dbb897826e
tweak logging
2020-03-14 19:33:58 -07:00
katianderic
1d8bb1d0db
fix Android build (requires adding new comms method)
2020-03-14 18:52:28 -07:00
katianderic
b1f7b13e78
toward fixing stalls when undo used
...
There are still some stalls turning up when running the test script,
especially with more than two players in a game, but but it'll be
easier to do the final debugging off my pathetic travel-only
chromebook. And things are already much better. :-)
2020-03-14 14:47:26 -07:00
katianderic
901b70a5f2
get rid of legacy "incorrect" stuff around hashing
2020-03-14 13:44:56 -07:00
katianderic
1a082f7f15
let move stack determine whose turn it is
...
When something goes wrong with a move (typically because of undo), the
move stack and server's idea of whose turn it is get out of
sync. Since it being my turn means it's up to me to put the next move
on the stack, let the stack own "next turn". (Can probably eventually
get rid of the ServerCtxt variable that tracks it.)
2020-03-14 13:44:56 -07:00
katianderic
781021d6ca
trivial changes to aid debugging
2020-03-14 13:44:56 -07:00
katianderic
5d6c2514fd
include milliseconds in log timestamps
2020-03-14 13:43:43 -07:00
katianderic
126172220f
changes to fix curses app test script
...
especially on the 'sms' side it was broken. Now Android's broken for sure.
2020-03-14 13:43:43 -07:00
katianderic
0486b956c8
better display of "sms" message passing
2020-03-14 13:43:42 -07:00
Eric House
c54eba2ee5
make core file pattern specifiable
2020-03-14 13:32:47 -07:00
Michal Biesiada
23b28cfec8
Translated using Weblate (Polish)
...
Currently translated at 88.2% (728 of 825 strings)
2020-02-20 23:32:48 +01:00
katianderic
96236e8713
fix broken android build
...
Was missing new logging macro. And remove assert firing when undo
happens in curses app.
2020-02-18 07:57:22 +01:00
katianderic
38a4e494a4
make sms work via invitations too
2020-02-16 22:34:33 -08:00
katianderic
c7c1946793
use deviceID to invite via relay; make 3- and 4-device games work
2020-02-16 19:12:22 -08:00
katianderic
b1bd506e22
harvest relaydevid (for use in invitations later)
2020-02-16 19:12:21 -08:00
katianderic
e5255f59eb
add flag without which new game isn't created by default
2020-02-16 19:12:15 -08:00
Hosted Weblate
f9d5651b29
Merge branch 'origin/android_translate' into Weblate.
2020-02-15 11:09:37 +01:00
naofum
e3e5d58438
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2020-02-11 11:09:07 -08:00
naofum
f40c6f7525
Translated using Weblate (Japanese)
...
Currently translated at 100.0% (778 of 778 strings)
2020-02-11 11:50:18 +01:00