diff options
author | Joshua Goins <josh@redstrate.com> | 2022-01-26 23:51:29 -0500 |
---|---|---|
committer | Joshua Goins <josh@redstrate.com> | 2022-01-27 00:08:53 -0500 |
commit | ec1e27031a0b1fb9760f650ad8415d9e14e3f9f3 (patch) | |
tree | 82c543a7252377a55848bbf42c43e3ec6332d5c3 /program_info/CMakeLists.txt | |
parent | 02889b7a11842f8d1a34ec5ce6dff1f0b4a486fb (diff) | |
download | PrismLauncher-ec1e27031a0b1fb9760f650ad8415d9e14e3f9f3.tar.gz PrismLauncher-ec1e27031a0b1fb9760f650ad8415d9e14e3f9f3.tar.bz2 PrismLauncher-ec1e27031a0b1fb9760f650ad8415d9e14e3f9f3.zip |
Fix Freedesktop icons
This fixes #51. The desktop file is now exactly the same as the window class,
which is also now corrected to org.polymc.polymc. The file capitalization
is also consistent with other Freedesktop files as well.
Diffstat (limited to 'program_info/CMakeLists.txt')
-rw-r--r-- | program_info/CMakeLists.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program_info/CMakeLists.txt b/program_info/CMakeLists.txt index 77b971fc..26369fe5 100644 --- a/program_info/CMakeLists.txt +++ b/program_info/CMakeLists.txt @@ -1,19 +1,19 @@ set(Launcher_CommonName "PolyMC") set(Launcher_Copyright "PolyMC Contributors" PARENT_SCOPE) -set(Launcher_Domain "github.com/PolyMC" PARENT_SCOPE) +set(Launcher_Domain "polymc.org" PARENT_SCOPE) set(Launcher_Name "${Launcher_CommonName}" PARENT_SCOPE) set(Launcher_DisplayName "${Launcher_CommonName}" PARENT_SCOPE) set(Launcher_UserAgent "${Launcher_CommonName}/${Launcher_RELEASE_VERSION_NAME}" PARENT_SCOPE) set(Launcher_ConfigFile "polymc.cfg" PARENT_SCOPE) set(Launcher_Git "https://github.com/PolyMC/PolyMC" PARENT_SCOPE) -set(Launcher_Desktop "program_info/org.polymc.PolyMC.desktop" PARENT_SCOPE) +set(Launcher_Desktop "program_info/org.polymc.polymc.desktop" PARENT_SCOPE) set(Launcher_MetaInfo "program_info/org.polymc.PolyMC.metainfo.xml" PARENT_SCOPE) set(Launcher_SVG "program_info/org.polymc.PolyMC.svg" PARENT_SCOPE) set(Launcher_Branding_ICNS "program_info/polymc.icns" PARENT_SCOPE) set(Launcher_Branding_WindowsRC "program_info/polymc.rc" PARENT_SCOPE) set(Launcher_Branding_LogoQRC "program_info/polymc.qrc" PARENT_SCOPE) -configure_file(org.polymc.PolyMC.desktop.in org.polymc.PolyMC.desktop) +configure_file(org.polymc.polymc.desktop.in org.polymc.polymc.desktop) configure_file(org.polymc.PolyMC.metainfo.xml.in org.polymc.PolyMC.metainfo.xml) |