From a8d741882b2ed878f3f6aed00739257db973f82e Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 12 Oct 2016 15:12:09 +0200 Subject: [PATCH 1/2] Changed: Also set executable flag for ryzom_installer_qt --HG-- branch : develop --- code/ryzom/client/unix/upgd_nl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/code/ryzom/client/unix/upgd_nl.sh b/code/ryzom/client/unix/upgd_nl.sh index 4a18675ef..0e28a1555 100644 --- a/code/ryzom/client/unix/upgd_nl.sh +++ b/code/ryzom/client/unix/upgd_nl.sh @@ -11,5 +11,6 @@ chmod +x "$ROOTPATH/ryzom_client" chmod +x "$ROOTPATH/crash_report" chmod +x "$ROOTPATH/ryzom_client_patcher" chmod +x "$ROOTPATH/ryzom_configuration_qt" +chmod +x "$ROOTPATH/ryzom_installer_qt" exit 0 From 4d6842495de13381c2950c698047d79ff253d5a5 Mon Sep 17 00:00:00 2001 From: kervala Date: Wed, 12 Oct 2016 15:12:26 +0200 Subject: [PATCH 2/2] Changed: Use a 128x128 icon for Linux --HG-- branch : develop --- code/ryzom/client/unix/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/unix/CMakeLists.txt b/code/ryzom/client/unix/CMakeLists.txt index ee7179c07..3e8d12540 100644 --- a/code/ryzom/client/unix/CMakeLists.txt +++ b/code/ryzom/client/unix/CMakeLists.txt @@ -12,5 +12,5 @@ IF(WITH_UNIX_STRUCTURE) INSTALL(FILES ryzom_128x128.png DESTINATION share/icons/hicolor/128x128/apps RENAME ${RYZOM_CLIENT_ICON}.png) ELSE() # in case of local client, only copy 48x48 icon - INSTALL(FILES ryzom_48x48.png DESTINATION ${RYZOM_ETC_PREFIX} RENAME ${RYZOM_CLIENT_ICON}.png) + INSTALL(FILES ryzom_128x128.png DESTINATION ${RYZOM_ETC_PREFIX} RENAME ${RYZOM_CLIENT_ICON}.png) ENDIF()