Skip to content

Commit

Permalink
Update icon
Browse files Browse the repository at this point in the history
  • Loading branch information
prodrigestivill committed Oct 12, 2024
1 parent 089dcc4 commit 7236a79
Show file tree
Hide file tree
Showing 10 changed files with 114 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="Iaito logo" src="https://raw.githubusercontent.com/radareorg/iaito/master/src/img/org.radare.iaito.svg?sanitize=true">
<img width="150" height="150" align="left" style="float: left; margin: 0 10px 0 0;" alt="Iaito logo" src="https://raw.githubusercontent.com/radareorg/iaito/master/src/img/iaito.svg?sanitize=true">

# iaito

Expand Down
4 changes: 2 additions & 2 deletions src/Iaito.pro
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")
# Doesnt build for Qt6 yet... but will do soon

# Icon for OS X
ICON = img/iaito-o.icns
ICON = img/iaito.icns

# Icon/resources for Windows
win32: RC_ICONS = img/iaito-o.ico
win32: RC_ICONS = img/iaito.ico

QT += core gui widgets svg network
QT_CONFIG -= no-pkg-config
Expand Down
2 changes: 1 addition & 1 deletion src/IaitoApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ IaitoApplication::IaitoApplication(int &argc, char **argv) : QApplication(argc,
{
// Setup application information
setApplicationVersion(IAITO_VERSION_FULL);
setWindowIcon(QIcon(":/img/iaito-o.svg"));
setWindowIcon(QIcon(":/img/iaito.svg"));
#if QT_VERSION < QT_VERSION_CHECK(6,0,0)
setAttribute(Qt::AA_UseHighDpiPixmaps);
#endif
Expand Down
Binary file added src/img/iaito.icns
Binary file not shown.
Binary file added src/img/iaito.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion src/img/iaito.rc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
IDR_MAINFRAME ICON "iaito-o.ico"
IDR_MAINFRAME ICON "iaito.ico"
54 changes: 54 additions & 0 deletions src/img/iaito.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 53 additions & 2 deletions src/img/org.radare.iaito.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/macos/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<string>Licensed under the GPLv3 by the iaito developers.</string>
<key>CFBundleIconFile</key>
<!--string>@ICON@</string-->
<string>iaito-o</string>
<string>iaito</string>
<key>CFBundleIdentifier</key>
<string>org.radare.iaito</string>
<key>CFBundlePackageType</key>
Expand Down
1 change: 1 addition & 0 deletions src/resources.qrc
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@
<file>fonts/InconsolataRegular.ttf</file>
<file>img/iaito-o.svg</file>
<file>img/iaito-o-light.svg</file>
<file>img/iaito.svg</file>
<file>img/icons/copy.svg</file>
<file>img/icons/delete.svg</file>
<file>img/icons/previous.svg</file>
Expand Down

0 comments on commit 7236a79

Please sign in to comment.