Merge pull request #17 from pypeclub/change_icons
update all icons to openpype version
|
|
@ -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(
|
||||
|
|
|
|||
BIN
igniter/openpype.ico
Normal file
|
After Width: | Height: | Size: 124 KiB |
BIN
igniter/openpype_icon.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
igniter/pype.ico
|
Before Width: | Height: | Size: 107 KiB |
|
Before Width: | Height: | Size: 1.7 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)
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 87 KiB |
|
Before Width: | Height: | Size: 35 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 56 KiB |
|
Before Width: | Height: | Size: 408 B After Width: | Height: | Size: 59 KiB |
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 42 KiB |
BIN
pype/resources/icons/openpype_icon.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
pype/resources/icons/openpype_icon_staging.png
Normal file
|
After Width: | Height: | Size: 107 KiB |
BIN
pype/resources/icons/openpype_splash.png
Normal file
|
After Width: | Height: | Size: 80 KiB |
BIN
pype/resources/icons/openpype_splash_staging.png
Normal file
|
After Width: | Height: | Size: 82 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 6.7 KiB |
|
Before Width: | Height: | Size: 205 B After Width: | Height: | Size: 69 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,
|
||||
|
|
|
|||