rename pype to openpype on icons
|
|
@ -52,7 +52,7 @@ class InstallDialog(QtWidgets.QDialog):
|
|||
|
||||
self.setWindowTitle(f"Pype Igniter {__version__} - Pype installation")
|
||||
self._icon_path = os.path.join(
|
||||
os.path.dirname(__file__), 'pype_icon.png')
|
||||
os.path.dirname(__file__), 'openpype_icon.png')
|
||||
icon = QtGui.QIcon(self._icon_path)
|
||||
self.setWindowIcon(icon)
|
||||
self.setWindowFlags(
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 108 KiB |
|
|
@ -241,7 +241,7 @@ def set_track_item_pype_tag(track_item, data=None):
|
|||
tag_data = {
|
||||
"editable": "0",
|
||||
"note": "Pype data holder",
|
||||
"icon": "pype_icon.png",
|
||||
"icon": "openpype_icon.png",
|
||||
"metadata": {k: v for k, v in data.items()}
|
||||
}
|
||||
# get available pype tag if any
|
||||
|
|
|
|||
|
|
@ -35,9 +35,9 @@ def pype_icon_filepath(debug=None):
|
|||
debug = bool(os.getenv("PYPE_DEV"))
|
||||
|
||||
if debug:
|
||||
icon_file_name = "pype_icon_dev.png"
|
||||
icon_file_name = "openpype_icon_staging.png"
|
||||
else:
|
||||
icon_file_name = "pype_icon.png"
|
||||
icon_file_name = "openpype_icon.png"
|
||||
return get_resource("icons", icon_file_name)
|
||||
|
||||
|
||||
|
|
@ -46,7 +46,7 @@ def pype_splash_filepath(debug=None):
|
|||
debug = bool(os.getenv("PYPE_DEV"))
|
||||
|
||||
if debug:
|
||||
splash_file_name = "pype_splash_dev.png"
|
||||
splash_file_name = "openpype_splash_staging.png"
|
||||
else:
|
||||
splash_file_name = "pype_splash.png"
|
||||
splash_file_name = "openpype_splash.png"
|
||||
return get_resource("icons", splash_file_name)
|
||||
|
|
|
|||
|
|
@ -1,22 +0,0 @@
|
|||
{"skeleton":{"images":""},
|
||||
"bones":[{"name":"root"}],
|
||||
"slots":[
|
||||
{"name":"workfiles","bone":"root","attachment":"workfiles"},
|
||||
{"name":"circle_green","bone":"root","attachment":"circle_green"},
|
||||
{"name":"circle_red","bone":"root","attachment":"circle_red"},
|
||||
{"name":"lookmanager","bone":"root","attachment":"lookmanager"},
|
||||
{"name":"inventory","bone":"root","attachment":"inventory"},
|
||||
{"name":"loader","bone":"root","attachment":"loader"}
|
||||
],
|
||||
"skins":{
|
||||
"default":{
|
||||
"workfiles":{"workfiles":{"x":3877,"y":1247,"width":500,"height":500}},
|
||||
"circle_green":{"circle_green":{"x":3877,"y":280,"width":500,"height":500}},
|
||||
"circle_red":{"circle_red":{"x":5748,"y":280,"width":500,"height":500}},
|
||||
"lookmanager":{"lookmanager":{"x":5631,"y":1253,"width":500,"height":500}},
|
||||
"inventory":{"inventory":{"x":6335,"y":1265,"width":500,"height":500}},
|
||||
"loader":{"loader":{"x":4827,"y":1247,"width":500,"height":500}}
|
||||
}
|
||||
},
|
||||
"animations":{"animation":{}}
|
||||
}
|
||||
BIN
pype/resources/icons/openpype_icon.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
|
Before Width: | Height: | Size: 107 KiB After Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
|
Before Width: | Height: | Size: 82 KiB After Width: | Height: | Size: 82 KiB |
|
|
@ -9,4 +9,4 @@ def load_stylesheet():
|
|||
|
||||
|
||||
def app_icon_path():
|
||||
return os.path.join(os.path.dirname(__file__), "pype_icon.png")
|
||||
return os.path.join(os.path.dirname(__file__), "openpype_icon.png")
|
||||
|
|
|
|||
2
setup.py
|
|
@ -78,7 +78,7 @@ build_options = dict(
|
|||
optimize=0
|
||||
)
|
||||
|
||||
icon_path = pype_root / "igniter" / "pype.ico"
|
||||
icon_path = pype_root / "igniter" / "openpype.ico"
|
||||
|
||||
executables = [
|
||||
Executable("start.py", base=None,
|
||||
|
|
|
|||