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:
parent
34f8847f67
commit
a106d380a2
9 changed files with 7 additions and 7 deletions
4
setup.py
4
setup.py
|
@ -40,7 +40,7 @@ setup(
|
||||||
# For a discussion on single-sourcing the version across setup.py and the
|
# For a discussion on single-sourcing the version across setup.py and the
|
||||||
# project code, see
|
# project code, see
|
||||||
# https://packaging.python.org/en/latest/single_source_version.html
|
# 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
|
# This is a one-line description or tagline of what your project does. This
|
||||||
# corresponds to the "Summary" metadata field:
|
# 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
|
# If using Python 2.6 or earlier, then these have to be included in
|
||||||
# MANIFEST.in as well.
|
# MANIFEST.in as well.
|
||||||
package_data={
|
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
|
# Although 'package_data' is the preferred approach, in some case you may
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"version": "0.2",
|
"version": "0.2",
|
||||||
"x11vncOptions": {
|
"x11vncOptions": {
|
||||||
"-ncache": {
|
"-ncache": {
|
||||||
"description": "Cache",
|
"description": "Client side caching",
|
||||||
"long_description": "Enables cache"
|
"long_description": "Enables cache"
|
||||||
},
|
},
|
||||||
"-multiptr": {
|
"-multiptr": {
|
|
@ -45,11 +45,11 @@ X11VNC_LOG_PATH = HOME_PATH + "/x11vnc_log.txt"
|
||||||
X11VNC_PASSWORD_PATH = HOME_PATH + "/x11vnc_passwd"
|
X11VNC_PASSWORD_PATH = HOME_PATH + "/x11vnc_passwd"
|
||||||
CONFIG_PATH = HOME_PATH + "/config.json"
|
CONFIG_PATH = HOME_PATH + "/config.json"
|
||||||
# Path in the program path
|
# Path in the program path
|
||||||
DEFAULT_CONFIG_PATH = BASE_PATH + "/data/config.default.json"
|
|
||||||
ICON_PATH = BASE_PATH + "/icon/icon.png"
|
ICON_PATH = BASE_PATH + "/icon/icon.png"
|
||||||
QML_PATH = BASE_PATH + "/qml"
|
ASSETS_PATH = BASE_PATH + "/assets"
|
||||||
DATA_PATH = QML_PATH + "/data.json"
|
DATA_PATH = ASSETS_PATH + "/data.json"
|
||||||
MAIN_QML_PATH = QML_PATH + "/main.qml"
|
DEFAULT_CONFIG_PATH = ASSETS_PATH + "/config.default.json"
|
||||||
|
MAIN_QML_PATH = ASSETS_PATH + "/main.qml"
|
||||||
|
|
||||||
|
|
||||||
# -------------------------------------------------------------------------------
|
# -------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue