mirror of
https://github.com/TokTok/c-toxcore
synced 2026-04-14 04:25:51 +00:00
This release focuses on hardening, architectural refinement, and better testing capabilities. On the Hardening front, the ToxAV module has undergone significant security improvements. We have addressed a heap buffer overflow in RTP packet handling and fixed several logic bugs in the bandwidth controller and audio modules that could affect stability. Architectural Refactoring continues with the internalization of core system dependencies. The system clock, random number generation, and memory management are now accessed through abstract interfaces, further decoupling the core from OS-specific implementations and making the codebase more portable and testable.
17 lines
524 B
Plaintext
17 lines
524 B
Plaintext
# .so library version, following the libtool scheme:
|
|
#
|
|
# current:revision:age
|
|
#
|
|
# current: increment if interfaces have been added, removed or changed
|
|
# revision: increment if source code has changed, set to zero if current is
|
|
# incremented
|
|
# age: increment if interfaces have been added, set to zero if
|
|
# interfaces have been removed or changed
|
|
#
|
|
# For a full reference see:
|
|
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
|
|
|
|
CURRENT=24
|
|
REVISION=0
|
|
AGE=22
|