This commit makes LoginScreen return QDialog::Rejected (0) and
QDialog::Accepted (1) instead of C standard return values. This should be more
robust with regards to special cases in Qt implementation.
Fixes#5781
qTox added specialized tray icon backends over time to work around bugs with
the default implementation, since then our GTK+2 backend has stopped working,
our appindicator backend was never selected by default by cmake, and
statusnotifier was never selected at SystemTrayIcon construction, leaving us
only ever using the broken GTK+2 backend, or theoretically the Unity backend,
which I didn't see selected on Ubuntu 16.04 Unity. In all other cases we would
fall back to the Qt backend.
Qt icon has improved over time, and our platform specific icons have become
stale, with GTK+2 becoming deprecated and GTK+3 not having a similar feature,
QSystemTrayIcon has been tested on a variety of DEs and works as well or better
in all cases, as shown in the table at
https://github.com/qTox/qTox/issues/5881#issuecomment-541892457Fix#5881Fix#5859
seccomp is used by the docker host, and the default version shipped with
Ubuntu 16.04 does not support syscalls used by Qt5's configure inside the
docker container. Upgrading libseccomp2 resolves this issue.
Fix#5874
Errors are parsed and printed, but which specific node is being connected to
isn't very relevant to any errors that would occur, and the nodes list is
already updated to prune offline nodes based on nodes.tox.chat periodically.
This provides some extra privacy about which connections are being made,
even though the bootstrap nodes are already public.
ffmpeg dependency unbound attempts to symlink to /usr/local/sbin, failing if
the directory does not exist. /usr/local/sbin does not exist by default on
10.13 High Sierra, so prompt to create it if it doesn't exit, and create it for
travis CI automatically.
Fix#5515
brew install might take a long time to build Qt or ffmpeg. Travis kills us if
we don't output for 10 minutes. Travis also kills us if we output too much, so
verbose isn't an option. So just output some dots...
Allan Nordhøy (3):
feat(l10n): update Norwegian Bokmål translation from Weblate
feat(l10n): update Norwegian Bokmål translation from Weblate
feat(l10n): update Norwegian Bokmål translation from Weblate
Cenk YILDIZLI (1):
feat(l10n): update Turkish translation from Weblate
Coool (1):
feat(l10n): update Latvian translation from Weblate
Dan Baeza (6):
feat(l10n): update Portuguese (Brazil) translation from Weblate
feat(l10n): update French translation from Weblate
feat(l10n): update Portuguese (Brazil) translation from Weblate
feat(l10n): update Spanish translation from Weblate
feat(l10n): update Italian translation from Weblate
feat(l10n): update Spanish translation from Weblate
Gvido Zageris (1):
feat(l10n): add Latvian translation using Weblate
Gvido Zāģeris (6):
feat(l10n): update Latvian translation from Weblate
feat(l10n): update Latvian translation from Weblate
feat(l10n): update Latvian translation from Weblate
feat(l10n): update Latvian translation from Weblate
feat(l10n): update Latvian translation from Weblate
feat(l10n): update Latvian translation from Weblate
H Zeng (1):
feat(l10n): update Chinese (Simplified) translation from Weblate
Jonatan Nyberg (1):
feat(l10n): update Swedish translation from Weblate
Lupa (2):
feat(l10n): update Russian translation from Weblate
feat(l10n): update Russian translation from Weblate
Moo (3):
feat(l10n): update Lithuanian translation from Weblate
feat(l10n): update Lithuanian translation from Weblate
feat(l10n): update Lithuanian translation from Weblate
Rui Mendes (1):
feat(l10n): update Portuguese translation from Weblate
Ryo Nakano (2):
feat(l10n): update Japanese translation from Weblate
feat(l10n): update Japanese translation from Weblate
Sabri Ünal (1):
feat(l10n): update Turkish translation from Weblate
Schwonder Reismus (1):
feat(l10n): update Russian translation from Weblate
Thomas Weber (3):
feat(l10n): update German translation from Weblate
feat(l10n): update German translation from Weblate
feat(l10n): update German translation from Weblate
Viktar Vauchkevich (1):
feat(l10n): update Belarusian translation from Weblate
Vlastimil Čoček (3):
feat(l10n): update Czech translation from Weblate
feat(l10n): update Slovak translation from Weblate
feat(l10n): update Czech translation from Weblate
leela (1):
feat(l10n): update Ukrainian translation from Weblate
remussatala (1):
feat(l10n): update Romanian translation from Weblate
ssantos (1):
feat(l10n): update German translation from Weblate
The button didn't work that well and caused all kinds of issues inside
the code, so I replaced it by a notice that changes to the Advanced
settings only apply after a restart of qTox.
In the process I also removed all code that was exclusively used for
that feature.
We may add it back later when qTox's internal architecture makes it less
cumbersome.
Fix#5763
remove restriction to not update messages not in last slot in chatform,
allowing completed messages to be timestamped at any position. Fixes
stuck spinner in cases where a second message was sent quickly, or an
incoming message was received before the last send message was completed.