diff --git a/README.md b/README.md
index a40ebbfe..3f6f19c8 100644
--- a/README.md
+++ b/README.md
@@ -28,7 +28,7 @@
# About
-Onionr ("Onion Relay") is a decentralized, peer-to-peer communication network, designed to be anonymous and resistant to (meta)data analysis, spam, and corruption.
+Onionr ("Onion Relay") is a decentralized/distributed peer-to-peer communication network, designed to be anonymous and resistant to (meta)data analysis, spam, and corruption.
Onionr stores data in independent packages referred to as 'blocks'. The blocks are synced to all other nodes in the network. Blocks and user IDs cannot be easily proven to have been created by a particular user. Even if there is enough evidence to believe that a specific user created a block, nodes still operate behind Tor or I2P and as such cannot be trivially unmasked.
diff --git a/docs/usage/firststeps.md b/docs/usage/firststeps.md
index a3d7faaf..b8964df3 100644
--- a/docs/usage/firststeps.md
+++ b/docs/usage/firststeps.md
@@ -2,6 +2,6 @@
After installing Onionr, there are several things to do:
-1. Setup a [deterministic address](usage/deterministic.md) (optional)
+1. Setup a [deterministic address](deterministic.md) (optional)
2. Start your node `/path/to/onionr.sh start`
3. Copy your ID and share it with friends
\ No newline at end of file
diff --git a/onionr/etc/onionrvalues.py b/onionr/etc/onionrvalues.py
index e669cdfb..1373e223 100755
--- a/onionr/etc/onionrvalues.py
+++ b/onionr/etc/onionrvalues.py
@@ -25,11 +25,11 @@ import filepaths
DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA===="
PASSWORD_LENGTH = 25
ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'
-ONIONR_VERSION = '0.0.0' # for debugging and stuff
+ONIONR_VERSION = '0.1.0' # for debugging and stuff
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
-DEVELOPMENT_MODE = True
+DEVELOPMENT_MODE = False
MAX_BLOCK_TYPE_LENGTH = 15
MAX_BLOCK_CLOCK_SKEW = 120
MAIN_PUBLIC_KEY_SIZE = 32
diff --git a/onionr/onionrblocks/insert.py b/onionr/onionrblocks/insert.py
index f836c28a..bfda0c34 100644
--- a/onionr/onionrblocks/insert.py
+++ b/onionr/onionrblocks/insert.py
@@ -12,6 +12,7 @@ import coredb
import onionrproofs
from onionrproofs import subprocesspow
import logger
+
def insert_block(data: Union[str, bytes], header: str ='txt',
sign: bool =False, encryptType:str ='', symKey:str ='',
asymPeer:str ='', meta:dict = {},
@@ -161,4 +162,4 @@ def insert_block(data: Union[str, bytes], header: str ='txt',
else:
events.event('insertblock', {'content': plaintext, 'meta': plaintextMeta, 'hash': retData, 'peer': bytesconverter.bytes_to_str(asymPeer)}, threaded = True)
coredb.daemonqueue.daemon_queue_add('remove_from_insert_list', data=dataNonce)
- return retData
\ No newline at end of file
+ return retData
diff --git a/onionr/onionrutils/mnemonickeys.py b/onionr/onionrutils/mnemonickeys.py
index 38669578..792cf8cd 100644
--- a/onionr/onionrutils/mnemonickeys.py
+++ b/onionr/onionrutils/mnemonickeys.py
@@ -40,4 +40,4 @@ def get_human_readable_ID(pub=''):
def get_base32(words):
'''converts mnemonic to base32'''
- return unpaddedbase32.b32encode(niceware.passphrase_to_bytes(words.replace(DELIMITER, ' ')))
+ return unpaddedbase32.b32encode(niceware.passphrase_to_bytes(words.split(DELIMITER)))
diff --git a/static-data/default_config.json b/static-data/default_config.json
index 89cd28a6..d76ae4fb 100755
--- a/static-data/default_config.json
+++ b/static-data/default_config.json
@@ -12,7 +12,7 @@
"insert_deniable_blocks": true,
"max_block_age": 2678400,
"public_key": "",
- "random_bind_ip": false,
+ "random_bind_ip": true,
"use_bootstrap_list": true,
"store_plaintext_blocks": true,
"show_notifications": true
diff --git a/static-data/www/board/index.html b/static-data/www/board/index.html
index 961fe615..73c10910 100755
--- a/static-data/www/board/index.html
+++ b/static-data/www/board/index.html
@@ -12,6 +12,7 @@
+
@@ -23,6 +24,7 @@
+
@@ -111,7 +113,7 @@