diff --git a/make-release.sh b/make-release.sh index 67175ebc..19fc2d61 100755 --- a/make-release.sh +++ b/make-release.sh @@ -6,7 +6,7 @@ cp -t dist/onionr/ -r docs static-data install src onionr.sh start-daemon.sh set cp *.md dist/onionr/ PIP_USER=false export PIP_USER -pip3 install --require-hashes -r requirements.txt --target=dist/onionr/onionr/ -pip3 install --require-hashes -r requirements-notifications.txt --target=dist/onionr/onionr/ +pip3 install --require-hashes -r requirements.txt --target=dist/onionr/src/ +pip3 install --require-hashes -r requirements-notifications.txt --target=dist/onionr/src/ cd dist tar -czvf onionr.tar.gz onionr diff --git a/src/etc/onionrvalues.py b/src/etc/onionrvalues.py index d4222384..d8a7185f 100755 --- a/src/etc/onionrvalues.py +++ b/src/etc/onionrvalues.py @@ -23,7 +23,7 @@ import filepaths DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA" PASSWORD_LENGTH = 25 ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net' -ONIONR_VERSION = '0.1.1' # for debugging and stuff +ONIONR_VERSION = '0.1.3' ONIONR_VERSION_TUPLE = tuple(ONIONR_VERSION.split('.')) # (MAJOR, MINOR, VERSION) API_VERSION = '0' # increments of 1; only change when something fundamental about how the API works changes. This way other nodes know how to communicate without learning too much information about you. MIN_PY_VERSION = 7 # min version of 7 so we can take advantage of non-cyclic type hints diff --git a/static-data/www/shared/main/stats.js b/static-data/www/shared/main/stats.js index e264613f..55ef8fe7 100755 --- a/static-data/www/shared/main/stats.js +++ b/static-data/www/shared/main/stats.js @@ -62,6 +62,12 @@ switch (httpGet('/config/get/general.security_level')){ case "1": sec_description_str = 'high' break; + case "2": + sec_description_str = 'very high' + break; + case "3": + sec_description_str = 'extreme' + break; } if (sec_description_str !== 'normal'){ diff --git a/tests/runtime-result.txt b/tests/runtime-result.txt index 7829742c..ce87a18c 100644 --- a/tests/runtime-result.txt +++ b/tests/runtime-result.txt @@ -1 +1 @@ -1580849582 \ No newline at end of file +1580852476 \ No newline at end of file