Skip to content

Commit

Permalink
feat: add new tox option to enable DHT groupchat saving
Browse files Browse the repository at this point in the history
Also update static binary script
  • Loading branch information
JFreegman committed Feb 12, 2024
1 parent 9f0916e commit fc53725
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/build-minimal-static-toxic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ mkdir -p "$BUILD_DIR"
cd "$BUILD_DIR"

# The git hash of the c-toxcore version we're using
TOXCORE_VERSION="c08409390fe185c8b65e218d5c36c9347234f3e7"
TOXCORE_VERSION="c71567dc18515f69111c5af7902bc0357f0cd9ea"

# The sha256sum of the c-toxcore tarball for TOXCORE_VERSION
TOXCORE_HASH="28614c74fa8cf4aa5ae1dbd6857dfe3656e0d07f44572dde2fdbdc625bb6af42"
TOXCORE_HASH="31c211385db8022f498dc6f81702908729dc770549787050d4e77b0c23d8971f"

TOXCORE_FILENAME="c-toxcore-$TOXCORE_VERSION.tar.gz"

Expand Down
1 change: 1 addition & 0 deletions src/toxic.c
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,7 @@ static void init_tox_options(const Run_Options *run_opts, struct Tox_Options *to
tox_options_set_proxy_type(tox_opts, run_opts->proxy_type);
tox_options_set_tcp_port(tox_opts, run_opts->tcp_port);
tox_options_set_local_discovery_enabled(tox_opts, !run_opts->disable_local_discovery);
tox_options_set_experimental_groups_persistence(tox_opts, true);

if (run_opts->logging) {
tox_options_set_log_callback(tox_opts, cb_toxcore_logger);
Expand Down

0 comments on commit fc53725

Please sign in to comment.