1
0
Fork 0
mirror of https://github.com/kbumsik/VirtScreen.git synced 2025-02-12 11:21:53 +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

@ -40,7 +40,7 @@ setup(
# For a discussion on single-sourcing the version across setup.py and the
# project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='0.1.3', # Required
version='0.2.0', # Required
# This is a one-line description or tagline of what your project does. This
# corresponds to the "Summary" metadata field:
@ -169,7 +169,7 @@ setup(
# If using Python 2.6 or earlier, then these have to be included in
# MANIFEST.in as well.
package_data={
'virtscreen': ['icon/*.png', 'qml/*.qml', 'data/config.default.json'],
'virtscreen': ['icon/*.png', 'assets/*.qml', 'assets/*.json'],
},
# Although 'package_data' is the preferred approach, in some case you may

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"
# -------------------------------------------------------------------------------