1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-03-09 15:40:18 +00:00

Moved qml folder to assets

This commit is contained in:
Bumsik Kim 2018-05-31 01:25:18 -04:00
parent 34f8847f67
commit a106d380a2
No known key found for this signature in database
GPG key ID: E31041C8EC5B01C6
9 changed files with 7 additions and 7 deletions

View file

@ -2,7 +2,7 @@
"version": "0.2",
"x11vncOptions": {
"-ncache": {
"description": "Cache",
"description": "Client side caching",
"long_description": "Enables cache"
},
"-multiptr": {

View file

@ -45,11 +45,11 @@ X11VNC_LOG_PATH = HOME_PATH + "/x11vnc_log.txt"
X11VNC_PASSWORD_PATH = HOME_PATH + "/x11vnc_passwd"
CONFIG_PATH = HOME_PATH + "/config.json"
# Path in the program path
DEFAULT_CONFIG_PATH = BASE_PATH + "/data/config.default.json"
ICON_PATH = BASE_PATH + "/icon/icon.png"
QML_PATH = BASE_PATH + "/qml"
DATA_PATH = QML_PATH + "/data.json"
MAIN_QML_PATH = QML_PATH + "/main.qml"
ASSETS_PATH = BASE_PATH + "/assets"
DATA_PATH = ASSETS_PATH + "/data.json"
DEFAULT_CONFIG_PATH = ASSETS_PATH + "/config.default.json"
MAIN_QML_PATH = ASSETS_PATH + "/main.qml"
# -------------------------------------------------------------------------------