sudden6
a3b234e6dd
chore(formatting): run clang-format
8 years ago
sudden6
a1181e10f2
chore(formatting): disable clang-format for certain code sections
8 years ago
sudden6
d87f222c5c
Merge pull request #4427
...
Zatsepin Nikita (1):
fix(chatform): add space for current copy link
8 years ago
sudden6
46c848c07f
Merge pull request #4424
...
ezavod (1):
fix(ui): do not save splitter state in multiple windows mode
8 years ago
sudden6
86c5bb9414
Merge pull request #4421
...
ezavod (1):
fix(ui): Set `Qt::Window` flag in multi windows mode
8 years ago
Zatsepin Nikita
41a781d3f8
fix(chatform): add space for current copy link
8 years ago
ezavod
7e5387cad2
fix(ui): do not save splitter state in multiple windows mode
...
In multiple windows mode there are no two widgets that are separated by the splitter, there is just one widget.
This changes the splitter state without the users intention.
8 years ago
ezavod
6b767e4765
fix(ui): Set `Qt::Window` flag in multi windows mode
...
This sets the flag to `Qt::Window` for open dialogs in multi windows mode.
Commit changes the appearance of non-chat windows (Settings, Add Friend, ...).
8 years ago
Diadlo
65b1463933
refactor(core): Move setAvatar to profile from core
8 years ago
Diadlo
4664c6249a
refactor(core): Remove unused Core::reset method
8 years ago
Diadlo
c2f82f7808
fix(IPC): Add update profileId in to IPC
...
Fix #4384
8 years ago
sudden6
54a269e8c4
Merge pull request #4407
...
ezavod (1):
fix(ui): switch to settings after multiple windows mode
8 years ago
sudden6
9428092a3d
Merge pull request #4404
...
Mario Preksavec (1):
fix: gcc-7 build
8 years ago
Mario Preksavec
246e23abf3
fix: gcc-7 build
8 years ago
ezavod
0c98f6a548
fix(ui): switch to settings after multiple windows mode
...
Switch back to settings after disabling multiple windows mode instead of switch to add friend page.
8 years ago
sudden6
1ca5a1039d
Merge pull request #4402
...
sudden6 (1):
chore(version): update version
8 years ago
sudden6
50768abbab
Merge pull request #4394
...
Yuri (1):
fix(message size): Replaced TOX_MAX_*_LENGTH with API calls.
8 years ago
sudden6
afeca313ba
Merge pull request #4389
...
ezavod (1):
fix(ui): restore splitter state
8 years ago
sudden6
9aca348db9
Merge pull request #4391
...
Łukasz Żarnowiecki (1):
fix(settings): compute toxcore version in runtime
8 years ago
Zetok Zalbavar
1d71952dc5
docs(MAINTAINING): update instructions for release version bump
8 years ago
Zetok Zalbavar
2f05ff0947
Merge pull request #4403
...
Mario Preksavec (1):
chore(INSTALL): update Slackware links in INSTALL.md
8 years ago
Mario Preksavec
bb32c84b2a
chore(INSTALL): update Slackware links in INSTALL.md
8 years ago
sudden6
bad0c27e33
chore(version): update version
8 years ago
Diadlo
6420dc62ec
chore(qmake): Remove micfeedbackwidget from qtox.pro
...
Fix #4392
8 years ago
sudden6
d78a979021
fix(qtox.pro): add openal.h and openal.cpp
...
fix #4380
8 years ago
Diadlo
22bf431cdd
Merge pull request #4396
...
Maxim Biro (1):
fix(core): use correct byte representation when bootstrapping
8 years ago
Maxim Biro
4e5b191553
fix(core): use correct byte representation when bootstrapping
...
Revert a bug introduced in d126b18d76
where qTox calls tox_bootstrap() and tox_add_relay() with an invalid
argument, which results in qTox not connecting to the bootstrap nodes
from its list of bootsrap nodes and therefore failing to connect to the
Tox DHT network in the case when that list is the only source of nodes
to connect to. The invalid argument is node's public key, which is
non-nullable but is passed a null due to invalid ToxPk object being
constructed. ToxPk's constructor expects the QByteArray argument to be
the byte representation of a public key, but a textual representation
is passed to it instead, which creats an invalid ToxPk that resolves to
null when queried for public key's bytes for calls to tox_bootstrap()
and tox_add_relay().
Fixes #4385
8 years ago
Yuri
3963d3c150
fix(message size): Replaced TOX_MAX_*_LENGTH with API calls.
...
It is good for flexibility to have fewer hardcoded values.
8 years ago
Łukasz Żarnowiecki
2d0a4e794d
fix(settings): compute toxcore version in runtime
...
Past this change toxcore version was set during compilation. This
caused a problem when you changed version of toxcore while qTox would
still display its old. This behaviour was misleading.
8 years ago
ezavod
9d94cd0c50
fix(ui): restore splitter state
...
Fixes #4387 and #2378 .
This restores the state of the splitter correctly from settings in
multiple window mode and if this mode is quited.
8 years ago
Zetok Zalbavar
7f006b35a7
chore(README): add gitter badge to README.md
8 years ago
sudden6
e4d4f14793
Merge pull request #4382
...
Jerome Pinguet (1):
fix(profile): set maxLength on userName QLineEdit
8 years ago
Jerome Pinguet
71a838b53e
fix(profile): set maxLength on userName QLineEdit
...
Set maxLength of userName QLineEdit to TOX_MAX_NAME_LENGTH
Fixes #4335
8 years ago
Diadlo
a913f150e1
Merge pull request #4381
...
Yuri (1):
fix(macro): Fixed clang warning about USING_V4L
8 years ago
Diadlo
eacdafff5f
refactor(group): Changed Group flags types to bool
8 years ago
Diadlo
8634e26694
refactor: Methods renamed
...
existsFriendWidget -> friendWidgetExists
existsGroupWidget -> groupWidgetExists
8 years ago
Diadlo
4afd13839a
refactor(toxuri): Add using GUI to show warning
8 years ago
Diadlo
b126d21922
refactor(core): Merge friendAdded and friendshipChanged
8 years ago
Diadlo
49e9eb8de2
refactor(core): Move saving request to history to Profile
8 years ago
Diadlo
b25f5b5ed6
fix(core): Add action message with friend request text
8 years ago
Diadlo
d77cb084d6
refactor: Remove unused MicFeedback widget
8 years ago
Yuri
dd59f5ee90
fix(macro): Fixed clang warning about USING_V4L
...
Clang produced this warning:
"macro expansion producing 'defined' has undefined behavior"
8 years ago
Zetok Zalbavar
e4d40dcb96
docs(MAINTAINING): update `help wanted` tag in the `Issues` section
8 years ago
Diadlo
7e3ad7ba87
refactor(chatform): Remove Audio dependencies from ChatForm
8 years ago
Diadlo
695abadd7c
refactor(chatform): Remove Audio::play usage from ChatForm
8 years ago
sudden6
28c2298ad9
feat(audio): split the audio interface from the backend library
...
This paves the way to support multiple audio backends
8 years ago
Zetok Zalbavar
496f854897
chore(CHANGELOG): add changelog for the v1.10.0 release
8 years ago
sudden6
13029e3047
fix(groupinvite): prevent multiple groupinvites to the same group from showing up
...
fix #2305
8 years ago
sudden6
c41f533818
Merge pull request #4340
...
ezavod (1):
fix(settings): changing language sets title to "Add Friend"
8 years ago
sudden6
407413c65b
fix(core): add missing nullptr check
...
fix #4324
8 years ago