rename pype to openpype on icons

This commit is contained in:
Milan Kolar 2021-04-01 14:46:49 +02:00
parent fd67d8924b
commit dcce50ea9e
12 changed files with 8 additions and 30 deletions

View file

@ -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(

View file

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 124 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 108 KiB

After

Width:  |  Height:  |  Size: 108 KiB

Before After
Before After

View file

@ -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

View file

@ -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)

View file

@ -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":{}}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

View file

Before

Width:  |  Height:  |  Size: 107 KiB

After

Width:  |  Height:  |  Size: 107 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 80 KiB

After

Width:  |  Height:  |  Size: 80 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 82 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Before After
Before After

View file

@ -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")

View file

@ -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,