feat(network): add selectable privacy-preserving discovery
This commit is contained in:
parent
9cf0c8fc9c
commit
4d31fd1517
26 changed files with 959 additions and 153 deletions
|
|
@ -4,14 +4,14 @@ set -euo pipefail
|
|||
|
||||
readonly SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
||||
readonly PROJECT_ROOT="$(cd -- "${SCRIPT_DIR}/.." && pwd)"
|
||||
readonly BUILD_ROOT="${PROJECT_ROOT}/builds/v0.20.2-alpha"
|
||||
readonly BUILD_ROOT="${PROJECT_ROOT}/builds/v0.20.3-alpha"
|
||||
readonly WINDOWS_DIR="${BUILD_ROOT}/windows-x86_64"
|
||||
readonly LINUX_DIR="${BUILD_ROOT}/linux-x86_64"
|
||||
readonly README_SOURCE="${PROJECT_ROOT}/docs/README-PLAYTEST.txt"
|
||||
readonly SOURCE_COMMIT="$(git -C "${PROJECT_ROOT}" rev-parse HEAD)"
|
||||
readonly SOURCE_URL="https://forge.makearmy.io/woofmeow/straywild"
|
||||
readonly WINDOWS_ZIP="${BUILD_ROOT}/straywild-v0.20.2-alpha-windows-x86_64.zip"
|
||||
readonly LINUX_ZIP="${BUILD_ROOT}/straywild-v0.20.2-alpha-linux-x86_64.zip"
|
||||
readonly WINDOWS_ZIP="${BUILD_ROOT}/straywild-v0.20.3-alpha-windows-x86_64.zip"
|
||||
readonly LINUX_ZIP="${BUILD_ROOT}/straywild-v0.20.3-alpha-linux-x86_64.zip"
|
||||
readonly GODOT_BIN="${GODOT_BIN:-godot}"
|
||||
|
||||
if [[ ! -f "${PROJECT_ROOT}/project.godot" ]]; then
|
||||
|
|
@ -78,7 +78,7 @@ Source repository: ${SOURCE_URL}
|
|||
Source revision at build time: ${SOURCE_COMMIT}
|
||||
|
||||
This private testing release is distributed with an exact corresponding
|
||||
source archive named straywild-v0.20.2-alpha-source.tar.gz.
|
||||
source archive named straywild-v0.20.3-alpha-source.tar.gz.
|
||||
|
||||
If this package includes uncommitted development changes, it must not be
|
||||
publicly redistributed until the exact corresponding source is also made
|
||||
|
|
|
|||
|
|
@ -22,6 +22,7 @@ readonly -a QUICK_TESTS=(
|
|||
"tests/controller_world_interaction_validation.gd"
|
||||
"tests/controller_ui_navigation_validation.gd"
|
||||
"tests/dedicated_server_config_validation.gd"
|
||||
"tests/discovery_privacy_validation.gd"
|
||||
"tests/digging_prototype_validation.gd"
|
||||
"tests/equipment_catalog_validation.gd"
|
||||
"tests/exported_decal_hotfix_validation.gd"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue