diff --git a/CMakeLists.txt b/CMakeLists.txt index 9747f49..eb58c9d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -221,11 +221,14 @@ endif() if(UNIX AND NOT APPLE) include(GNUInstallDirs) install(TARGETS "${PROJECT_NAME}" RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") - install(FILES "${PROJECT_NAME}.desktop" DESTINATION "share/applications") + install(FILES "/Platform/Linux/${PROJECT_NAME}.desktop" DESTINATION "share/applications") + install(FILES "/Platform/Linux/${PROJECT_NAME}.metainfo.xml" DESTINATION "share/metainfo") install(FILES "${PROJECT_NAME}/Icon_16x16.png" DESTINATION "share/icons/hicolor/16x16/apps" RENAME "${PROJECT_NAME}.png") install(FILES "${PROJECT_NAME}/Icon_32x32.png" DESTINATION "share/icons/hicolor/32x32/apps" RENAME "${PROJECT_NAME}.png") install(FILES "${PROJECT_NAME}/Icon_48x48.png" DESTINATION "share/icons/hicolor/48x48/apps" RENAME "${PROJECT_NAME}.png") + install(FILES "${PROJECT_NAME}/Icon_192x192.png" DESTINATION + "share/icons/hicolor/192x192/apps" RENAME "${PROJECT_NAME}.png") endif() diff --git a/Platform/Linux/SpaceCadetPinball.desktop b/Platform/Linux/SpaceCadetPinball.desktop new file mode 100644 index 0000000..e9f3614 --- /dev/null +++ b/Platform/Linux/SpaceCadetPinball.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Version=1.0 +Name=Pinball +Comment=Begins a game of 3-D Pinball. +Exec=SpaceCadetPinball +StartupNotify=true +Terminal=false +Icon=SpaceCadetPinball +Type=Application +Categories=Game;ArcadeGame; diff --git a/Platform/Linux/SpaceCadetPinball.metainfo.xml b/Platform/Linux/SpaceCadetPinball.metainfo.xml new file mode 100644 index 0000000..a4ddec3 --- /dev/null +++ b/Platform/Linux/SpaceCadetPinball.metainfo.xml @@ -0,0 +1,71 @@ + + + com.github.k4zmu2a.spacecadetpinball + 3D Pinball for Windows – Space Cadet + Pinball + Reverse engineering of 3D Pinball for Windows – Space Cadet, a game bundled with Windows. + https://github.com/k4zmu2a/SpaceCadetPinball + https://github.com/k4zmu2a/SpaceCadetPinball/issues + +

+ Reverse engineering of 3D Pinball for Windows – Space Cadet, a game bundled with Windows. + 3D Pinball for Windows – Space Cadet was a pinball video game developed by Cinematronics and published by Maxis in 1995. +

+
+ + Game + ArcadeGame + + com.github.k4zmu2a.spacecadetpinball.desktop + + SpaceCadetPinball + + + + https://github.com/kowalski7cc/com.github.k4zmu2a.spacecadetpinball/blob/main/screenshots/screenshot-1.png?raw=true + + + https://github.com/kowalski7cc/com.github.k4zmu2a.spacecadetpinball/blob/main/screenshots/screenshot-2.png?raw=true + + + https://github.com/kowalski7cc/com.github.k4zmu2a.spacecadetpinball/blob/main/screenshots/screenshot-3.png?raw=true + + + + + +

V2.0

+

First release of cross-platform port.

+

Main highlights:

+
    +
  • Windows dependencies removed.
  • +
  • Graphics and sounds rendered with SDL.
  • +
  • Dear ImGui GUI.
  • +
  • CMake build script, compiles on a lot of platforms.
  • +
  • A number of 3rd party source ports.
  • +
+

All features of v1.x are present, except for text translations.

+

+ Development and releases of v1.x will continue, don’t confuse the two. + All source ports are technically v2.0RC, not v1.x. +

+ +

There are no Linux or macOS binaries attached, compile them yourself.

+ +

+ This release was made better with the help of contributors. + I thank them for their interest in the project. +

+
+
+
+ CC0-1.0 + Andrey Muzychenko + MIT + + pinball + space + cadet + + +
\ No newline at end of file diff --git a/SpaceCadetPinball.desktop b/SpaceCadetPinball.desktop deleted file mode 100644 index d754b01..0000000 --- a/SpaceCadetPinball.desktop +++ /dev/null @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=Space Cadet Pinball -Comment=Decompilation of 3D Pinball for Windows – Space Cadet -Exec=SpaceCadetPinball -Icon=SpaceCadetPinball -Terminal=false -Type=Application -Categories=Game; diff --git a/SpaceCadetPinball/Icon_192x192.png b/SpaceCadetPinball/Icon_192x192.png new file mode 100644 index 0000000..75ce028 Binary files /dev/null and b/SpaceCadetPinball/Icon_192x192.png differ