Mick Sayson
99c1753a76
fix(preview): Fix exif orientations
...
Previous exif transformations were not valid. The exif spec defines the
orientations as where the 0th row and the 0th column should end. The
previous mappings used in qTox did not respect these mappings and needed
to be updated.
5 years ago
Piraty
e4c7d81ab2
fix(build): make pkg-config verbose about why it fails
...
Switch from `pkg_search_module` to `pkg_check_modules` to find .pc and
evaluate .pc files of dependencies. Now, in case of any errors, a clear
message is issued about what is wrong, making it obvious what to do.
As of c-toxcore-0.2.11, my system's toxcore.pc file contains this line:
```
Requires.private: libsodium opus vpx
```
Previously, with opus missing, cmake/Dependencies.cmake through an error
about toxcore not being found, but never actually told why (also it was
misleading, because opus was missing, not toxcore).
Before:
```
<...>
-- Checking for one of the modules 'toxcore'
-- TOXCORE not found
-- Checking for one of the modules 'toxav'
-- TOXAV not found
<...>
```
After:
```
<...>
-- Checking for module 'toxcore'
-- Package 'opus', required by 'toxcore', not found
-- TOXCORE not found
-- Checking for module 'toxav'
-- No package 'toxav' found
-- TOXAV not found
<...>
```
5 years ago
Anthony Bilinski
cf672375be
revert(toxme): remove toxme from qTox - the service is offline permanently
...
As of 2019-10-09, toxme.io was taken offline permanently. Remove UI and code
in qTox relating to it. Revert this commit if it comes back online in the
future.
Fix #5897
6 years ago
jenli669
04a9bc46f4
docs(copyright): update and add copyright info
...
zealously updates and adds qTox copyright information.
Fixes #5713
6 years ago
Mick Sayson
71f8220925
refactor(chatlog): Add class to manage underlying chatlog state
6 years ago
Mick Sayson
f0d840002a
refactor(messages): Create class to manage sending/receiving group messages from core
6 years ago
Mick Sayson
22a4c38bfd
refactor(messages): Create class to manage sending/receiving friend messages from core
6 years ago
Mick Sayson
e5016337bb
refactor(offlinemsg): Decouple OfflineMsgEngine from other components
6 years ago
Anthony Bilinski
316893ace9
test(db): add db schema upgrade test
6 years ago
Anthony Bilinski
97d05f9d67
refactor(id): make ContactId interface, implement GroupId
...
Precursor for group history, friend blocking
6 years ago
yangfl
70781bb14f
chore(cmake): add libatomic to target_link_libraries when required
...
Looks like CMAKE_REQUIRED_LIBRARIES are not automatically linked against.
6 years ago
sudden6
66e2c01029
feat(notify): add desktop notifications using snorenotify
...
This commit adds very basic support for desktop notifications on friend
request, group invites, friend messages and group messages.
6 years ago
Patrick
cf32ccfa0e
test(core): Add test cases for core, initial
6 years ago
sudden6
489027ea1e
fix(flatpak): use SVG for icon
...
Flatpak doesn't allow compressed SVGs as icons because this is against
the specification.
7 years ago
Anthony Bilinski
013771c13a
feat(build): remove timestamps from build to allow reproducible builds
...
avoid Qt embedding timestamps into translations after copying .ts to .qm to work towards reproducible builds. Now reproducible locally as long as there is absolutely no change to environment.
7 years ago
yangfl
ec9d9850bf
chore(cmake): add missing CheckLibraryExists in CheckAtomic.cmake
7 years ago
sudden6
793d744705
test: add simple testcase for BoostrapNodeUpdater
...
This test just tries to connect to nodes.tox.chat and retrieve nodes.
The result is not checked yet.
7 years ago
yangfl
57fba65a37
chore(cmake): check for libatomic support
...
Sometimes linking against libatomic is required for atomic ops, if
the platform doesn't support lock-free atomics.
Source: https://github.com/llvm-mirror/llvm/blob/master/cmake/modules/CheckAtomic.cmake
7 years ago
sudden6
55c361eb71
test(paths): add tests for paths module
7 years ago
Patrick
ad6d60d1ab
test(toxstring): Add test cases for toxstring.h
7 years ago
Diadlo
671b9456a8
feat: Add spell checking
...
Fix #1301
Spell checking implemented by KF5Sonnet
7 years ago
sudden6
8b4240776c
chore(install): rename .desktop and .appdata.xml
...
The xdg-desktop specification strongly recommends to use a reverse
domain name, so follow that.
7 years ago
Robert-André Mauchin
5db0bdd381
fix(build): move Appdata file installation to /usr/share/metainfo
8 years ago
Maxim Biro
3f0372b2c5
chore(cmake): Lookup toxcore's static dependencies
8 years ago
iphydf
398ba415ce
chore: Update to immutable TES API and one-big-lib change.
8 years ago
sudden6
7ad68e2f43
fix(cmake): fix platform extensions for windows
...
fixes #4860
8 years ago
anthony.bilinski
266f63f6df
fix(install): Fix gzip invalid usage
8 years ago
ezavod
423f095622
fix(cmake): add missing dependency
...
Requires `Qt5Concurrent` to be installed when running cmake.
This is needed by `coreav.cpp`.
8 years ago
Diadlo
ebe6326cdd
chore(cmake): Add gzip svg icon on install
...
Fix #4582
8 years ago
Maxim Biro
21af6875cc
feat(travis): run tests on Windows
8 years ago
Vincas Dargis
d69023c9d7
fix(build): do not build unix-specific test on Windows
...
Modify CMake file to build posixsignalnotifier test only on
UNIX-like systems.
8 years ago
Diadlo
d3babb3fbe
test(toxmedata): Add test for toxmedata class
8 years ago
Diadlo
42c4a74826
test: Add tests for PosixSignalNotifier
8 years ago
sudden6
005f52f82a
chore(cmake): libXss comes with pkg-config files, use them
8 years ago
Maxim Biro
b7ef73d401
fix(build): Fix regression in how cmake finds libraries
8 years ago
Maxim Biro
8108bfdc35
fix(build): Fixed header file of libfilteraudio not being found
8 years ago
anthony.bilinski
414fa178b4
feat(exif): Honour exif orientation tag
...
Fixes #1848
8 years ago
sudden6
5d159e0203
fix(dependency): remove unused qt sql dependency
...
fix #4567
8 years ago
sudden6
8652fe99e3
feat(audio): make the libfilteraudio dependency optional
8 years ago
sudden6
8f2401fee6
fix(build): add install steps for libfilteraudio on OSX
8 years ago
sudden6
9c603e8654
feat(audio): add libfilteraudio
8 years ago
sudden6
0843b770c6
fix(build): remove newline from timestamp
8 years ago
Diadlo
efda01d6a5
test: Remove unused ctest include
8 years ago
sudden6
a9d2b03c7c
fix(build): disable linux specific stuff on windows
...
also fix the output formatting of used libraries
8 years ago
sudden6
b4e9fc7b83
chore(build): fix formatting
8 years ago
sudden6
bbb2166188
chore(build): add openssl dependency for windows
8 years ago
sudden6
77bb85e5e4
chore(build): go back to pkg-config
8 years ago
sudden6
93f2c38376
chore(build): add some debug output
8 years ago
sudden6
ab62221375
fix(build): when building without XSS extension
8 years ago
Diadlo
9a0632b0cf
fix: Using foreach to iterate through CFLAGS_OTHER
...
PkgConfig use 'separate_arguments' for pkgconfig result, so output
converted to the list (in cmake it's semicolumnt separated values).
If we try to append CFLAGS_OTHER as is, it will provide error for
more then one cflag in '.pc' file
Fix #4175 , fix #4457 .
8 years ago