Merge pull request #17 from pypeclub/change_icons

update all icons to openpype version
This commit is contained in:
Milan Kolar 2021-04-01 14:55:35 +02:00 committed by GitHub
commit 15bf6e1fac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
23 changed files with 8 additions and 8 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(

BIN
igniter/openpype.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 124 KiB

BIN
igniter/openpype_icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

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)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 87 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 35 KiB

After

Width:  |  Height:  |  Size: 124 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 56 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 408 B

After

Width:  |  Height:  |  Size: 59 KiB

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 42 KiB

Before After
Before After

Binary file not shown.

After

Width:  |  Height:  |  Size: 108 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 80 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 205 B

After

Width:  |  Height:  |  Size: 69 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,