Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-05-10 | Make toxcore compile on BSD | endoffile78 | |
2018-05-10 | Fix FreeBSD build on Travis | Maxim Biro | |
2018-04-17 | Improve network error reporting on Windows | Maxim Biro | |
Windows doesn't report network errors though errno, it has its own facilities. | |||
2018-04-18 | Release v0.2.2 | Robin Lindén | |
2018-04-18 | fix broken and unmaintained autotools build | Maxim Biro | |
2018-04-15 | Restrict packet kinds that can be sent through onion path. | Evgeny Kurnevsky | |
2018-04-06 | CMake warn if libconfig not found | Braiden Vasco | |
2018-04-06 | remove broken and unmaintained scripts | sudden6 | |
2018-04-03 | Avoid the use of rand() in tests. | iphydf | |
We control the random functions in crypto_core, so we can make them deterministic more easily. This will help test reproducibility in the future. | |||
2018-04-03 | add comment to func cryptpacket_received | hqwrong | |
2018-03-22 | fix build error on macos | hqwrong | |
2018-03-17 | Disallow stderr logger by default. | iphydf | |
2018-03-17 | Add logging to the onion_test. | iphydf | |
Makes debugging easier. | |||
2018-03-17 | Add COVERAGE cmake flag for clang. | iphydf | |
This only works with clang/llvm. Coveralls support needs to be added later. | |||
2018-03-17 | Fix coveralls reporting. | iphydf | |
The new clang version makes gcov segfault. Also, coveralls needs another package that it doesn't install the right version of by default. | |||
2018-03-16 | Add default stderr logger for logging to nullptr. | iphydf | |
This is useful for debugging a function that doesn't have a logger available. It should not be used in production code, since it outputs to stderr. | |||
2018-03-16 | Move struct DHT_Friend into DHT.c. | iphydf | |
2018-03-16 | Remove the use of the 'hh' format specifier. | iphydf | |
It's not supported in mingw. See https://github.com/TokTok/c-toxcore/issues/786. | |||
2018-03-16 | Simplify sendpacket function, deduplicate some logic. | iphydf | |
2018-03-10 | Update changelog for 0.2.1 | Robin Lindén | |
2018-03-09 | Update version to 0.2.1. | iphydf | |
2018-03-09 | Don't set RTP_LARGE_FRAME on rtp audio packets | Robin Lindén | |
2018-03-09 | Don't throw away rtp packets from old Toxcore | Robin Lindén | |
2018-03-07 | Add missing tox_nospam_size() function | Robin Lindén | |
2018-03-02 | Make file transfers 50% faster. | iphydf | |
By increasing a magic number.. Also, added more verbose logging to the file transfer test. | |||
2018-02-28 | Update changelog for 0.2.0 | Robin Lindén | |
2018-02-27 | Remove deprecated conference namelist change callback. | iphydf | |
2018-02-27 | Fix auto_tests to stop using the deprecated conference API. | iphydf | |
2018-02-27 | Change default username to empty string | tox-user | |
Fixes #768 | |||
2018-02-25 | Change README to talk about cmake instead of autoreconf. | iphydf | |
2018-02-25 | Fix warning on Mac OS X and FreeBSD. | iphydf | |
This currently fails the nightly build. | |||
2018-02-24 | Fix a bunch of compiler warnings and remove suppressions. | iphydf | |
2018-02-24 | Some minor cleanups suggested by cppcheck. | iphydf | |
DETECTED=cppcheck | |||
2018-02-24 | Fix memory leak of Logger instance on error paths. | iphydf | |
Found using the infer static analyser. https://github.com/facebook/infer DETECTED=infer | |||
2018-02-24 | Minor cleanups: dead stores and avoiding complex macros. | iphydf | |
2018-02-23 | Link all tests to the android cpufeatures library if available. | iphydf | |
This is needed for libvpx to work on android. This also means that we can upload our test binaries to an android device and actually run them, now that libcheck is no longer a blocker. | |||
2018-02-23 | Add deprecation notices to functions that will go away in v0.3.0. | iphydf | |
2018-02-22 | Fix toxcore.pc generation. | iphydf | |
It's missing vpx and opus at the moment. | |||
2018-02-22 | Add an option that allows us to specify that we require toxav. | iphydf | |
2018-02-21 | Fix OSX tests: find(1) doesn't work like on Linux. | iphydf | |
2018-02-21 | Fix the windows build: pthread needs to be linked after vpx. | iphydf | |
2018-02-20 | Add a bazel test that ensures all our projects are GPL-3.0. | iphydf | |
2018-02-20 | Make the "persistent conference" callback changes new functions. | iphydf | |
We can now revert the changes to the callbacks and keep supporting them until clients have moved off them. | |||
2018-02-20 | make groupnumber uint32_t | sudden6 | |
fixes #606 | |||
2018-02-19 | Remove apidsl from the build. | iphydf | |
apidsl is in feature freeze. We can rely on the web service, instead. | |||
2018-02-19 | Make some sizeof tests linux-only. | iphydf | |
net_crypto has pthread types in its struct, so its size is system dependent. In particular, the sizes are wrong on FreeBSD. | |||
2018-02-18 | Increase range of ports available to Toxes during tests | Robin Lindén | |
2018-02-18 | Run all tests in parallel on Travis. | iphydf | |
The first round some tests will fail and others will segfault. The second round, still some will fail, but the third round it might pass. At some point, tests will pass. The reason for this is that tests assume a lot about which ports they are given, and also toxcore's default port range has too few ports to run all tests in parallel. These issues will be fixed in future PRs. | |||
2018-02-18 | Disable lan discovery in most tests. | iphydf | |
2018-02-18 | Remove tox_test from autotools build. | iphydf | |