Use lowercase in icon name

This commit is contained in:
Andrey Sitnik 2020-01-17 00:46:53 -07:00
parent 8f3a083dab
commit 64696a7145
10 changed files with 7 additions and 7 deletions

View File

@ -1,2 +1,2 @@
resources/yubioath-desktop.desktop usr/share/applications
resources/icons/com.yubico.YubiOath.png usr/share/pixmaps
resources/icons/com.yubico.yubioath.png usr/share/pixmaps

View File

@ -46,7 +46,7 @@ RUN mkdir -p yubioath-desktop/appDir/usr \
&& qmake \
&& make \
&& cp resources/yubioath-desktop.desktop appDir/ \
&& cp resources/icons/com.yubico.YubiOath.png appDir/ \
&& cp resources/icons/com.yubico.yubioath.png appDir/ \
&& cp ./yubioath-desktop appDir/usr/bin/ \
&& wget -c "https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage" \
&& wget -c "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-x86_64.AppImage" \

View File

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View File

Before

Width:  |  Height:  |  Size: 7.3 KiB

After

Width:  |  Height:  |  Size: 7.3 KiB

View File

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 50 KiB

View File

@ -1,7 +1,7 @@
!include "MUI2.nsh"
!include "nsProcess.nsh"
!define MUI_ICON "../../resources/icons/com.yubico.YubiOath.ico"
!define MUI_ICON "../../resources/icons/com.yubico.yubioath.ico"
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Yubico\Yubico Authenticator"

View File

@ -1,7 +1,7 @@
!include "MUI2.nsh"
!include "nsProcess.nsh"
!define MUI_ICON "../../resources/icons/com.yubico.YubiOath.ico"
!define MUI_ICON "../../resources/icons/com.yubico.yubioath.ico"
;Start Menu Folder Page Configuration
!define MUI_STARTMENUPAGE_DEFAULTFOLDER "Yubico\Yubico Authenticator"

View File

@ -3,7 +3,7 @@ Name=Yubico Authenticator
GenericName=Yubico Authenticator
Comment=Graphical interface for displaying OATH codes with a YubiKey.
Exec=yubioath-desktop
Icon=com.yubico.YubiOath
Icon=com.yubico.yubioath
StartupNotify=false
Terminal=false
Type=Application

View File

@ -56,11 +56,11 @@ macx {
include(deployment.pri)
# Icon file
RC_ICONS = resources/icons/com.yubico.YubiOath.ico
RC_ICONS = resources/icons/com.yubico.yubioath.ico
# Mac specific configuration
macx {
ICON = resources/icons/com.yubico.YubiOath.icns
ICON = resources/icons/com.yubico.yubioath.icns
QMAKE_INFO_PLIST = resources/mac/Info.plist.in
QMAKE_POST_LINK += cp -rnf pymodules/lib/python3*/site-packages/ yubioath-desktop.app/Contents/MacOS/pymodules/
}