make data dir readable only by user by default, make no dep release
This commit is contained in:
parent
b305380447
commit
c8f0427f45
@ -6,6 +6,9 @@ cp -t dist/onionr/ -r docs static-data install src onionr.sh start-daemon.sh set
|
|||||||
cp *.md dist/onionr/
|
cp *.md dist/onionr/
|
||||||
PIP_USER=false
|
PIP_USER=false
|
||||||
export PIP_USER
|
export PIP_USER
|
||||||
|
cd dist
|
||||||
|
tar -czvf onionr-no-deps.tar.gz onionr
|
||||||
|
cd ..
|
||||||
pip3 install --require-hashes -r requirements.txt --target=dist/onionr/src/
|
pip3 install --require-hashes -r requirements.txt --target=dist/onionr/src/
|
||||||
pip3 install --require-hashes -r requirements-notifications.txt --target=dist/onionr/src/
|
pip3 install --require-hashes -r requirements-notifications.txt --target=dist/onionr/src/
|
||||||
cd dist
|
cd dist
|
||||||
|
@ -23,7 +23,7 @@ import filepaths
|
|||||||
DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA"
|
DENIABLE_PEER_ADDRESS = "OVPCZLOXD6DC5JHX4EQ3PSOGAZ3T24F75HQLIUZSDSMYPEOXCPFA"
|
||||||
PASSWORD_LENGTH = 25
|
PASSWORD_LENGTH = 25
|
||||||
ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'
|
ONIONR_TAGLINE = 'Private P2P Communication - GPLv3 - https://Onionr.net'
|
||||||
ONIONR_VERSION = '0.1.3'
|
ONIONR_VERSION = '1.0.0'
|
||||||
ONIONR_VERSION_TUPLE = tuple(ONIONR_VERSION.split('.')) # (MAJOR, MINOR, VERSION)
|
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.
|
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
|
MIN_PY_VERSION = 7 # min version of 7 so we can take advantage of non-cyclic type hints
|
||||||
|
@ -1,9 +1,13 @@
|
|||||||
'''
|
"""Onionr - Private P2P Communication.
|
||||||
Onionr - Private P2P Communication
|
|
||||||
|
|
||||||
Create required Onionr directories
|
Create required Onionr directories
|
||||||
'''
|
"""
|
||||||
'''
|
import os
|
||||||
|
import stat
|
||||||
|
|
||||||
|
from . import identifyhome
|
||||||
|
import filepaths
|
||||||
|
"""
|
||||||
This program is free software: you can redistribute it and/or modify
|
This program is free software: you can redistribute it and/or modify
|
||||||
it under the terms of the GNU General Public License as published by
|
it under the terms of the GNU General Public License as published by
|
||||||
the Free Software Foundation, either version 3 of the License, or
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
@ -16,12 +20,7 @@
|
|||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
'''
|
"""
|
||||||
import os
|
|
||||||
import stat
|
|
||||||
|
|
||||||
from . import identifyhome
|
|
||||||
import filepaths
|
|
||||||
home = identifyhome.identify_home()
|
home = identifyhome.identify_home()
|
||||||
|
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
1580856998
|
1580861160
|
Loading…
Reference in New Issue
Block a user