1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
diff --git a/hydrus/client/gui/ClientGUI.py b/hydrus/client/gui/ClientGUI.py
index e5fc71eb..cf59348b 100644
--- a/hydrus/client/gui/ClientGUI.py
+++ b/hydrus/client/gui/ClientGUI.py
@@ -6150,7 +6150,7 @@ class FrameGUI( ClientGUITopLevelWindows.MainFrameThatResizes, CAC.ApplicationCo
python_executable = python_executable.replace( 'pythonw', 'python' )
- server_script_path = os.path.join( HC.BASE_DIR, 'server.py' )
+ server_script_path = '/opt/hydrus/server.py'
cmd = [ python_executable, server_script_path, db_param ]
diff --git a/hydrus/core/HydrusConstants.py b/hydrus/core/HydrusConstants.py
index ad529c75..49ddaeea 100644
--- a/hydrus/core/HydrusConstants.py
+++ b/hydrus/core/HydrusConstants.py
@@ -11,34 +11,9 @@ import yaml
RUNNING_CLIENT = False
RUNNING_SERVER = False
-RUNNING_FROM_FROZEN_BUILD = getattr( sys, 'frozen', False )
-
-if RUNNING_FROM_FROZEN_BUILD:
-
- real_exe_path = os.path.realpath( sys.executable )
-
- BASE_DIR = os.path.dirname( real_exe_path )
-
-else:
-
- try:
-
- hc_realpath_dir = os.path.dirname( os.path.realpath( __file__ ) )
-
- HYDRUS_MODULE_DIR = os.path.split( hc_realpath_dir )[0]
-
- BASE_DIR = os.path.split( HYDRUS_MODULE_DIR )[0]
-
- except NameError: # if __file__ is not defined due to some weird OS
-
- BASE_DIR = os.path.realpath( sys.path[0] )
-
-
- if BASE_DIR == '':
-
- BASE_DIR = os.getcwd()
-
-
+RUNNING_FROM_FROZEN_BUILD = False
+HYDRUS_MODULE_DIR = '/opt/hydrus/hydrus'
+BASE_DIR = os.path.expanduser("~/.local/share/hydrus")
muh_platform = sys.platform.lower()
@@ -66,32 +41,16 @@ elif RUNNING_FROM_FROZEN_BUILD:
elif RUNNING_FROM_MACOS_APP:
NICE_RUNNING_AS_STRING = 'from App'
-BIN_DIR = os.path.join( BASE_DIR, 'bin' )
-HELP_DIR = os.path.join( BASE_DIR, 'help' )
-INCLUDE_DIR = os.path.join( BASE_DIR, 'include' )
-STATIC_DIR = os.path.join( BASE_DIR, 'static' )
+BIN_DIR = "/opt/hydrus/bin"
+HELP_DIR = "/opt/hydrus/help"
+INCLUDE_DIR = "/opt/hydrus/include"
+STATIC_DIR = "/opt/hydrus/static"
DEFAULT_DB_DIR = os.path.join( BASE_DIR, 'db' )
-if PLATFORM_MACOS:
-
- desired_userpath_db_dir = os.path.join( '~', 'Library', 'Hydrus' )
-
-else:
-
- desired_userpath_db_dir = os.path.join( '~', 'Hydrus' )
-
+USERPATH_DB_DIR = DEFAULT_DB_DIR
-USERPATH_DB_DIR = os.path.expanduser( desired_userpath_db_dir )
-
-if USERPATH_DB_DIR == desired_userpath_db_dir:
-
- # could not figure it out, probably a crazy user situation atm
-
- USERPATH_DB_DIR = None
-
-
-LICENSE_PATH = os.path.join( BASE_DIR, 'license.txt' )
+LICENSE_PATH = "/usr/share/licenses/hydrus/license.txt"
#
|