diff --git a/CMakeLists.txt b/CMakeLists.txt index ae4deea..d788701 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -221,8 +221,8 @@ endif() if(UNIX AND NOT APPLE) include(GNUInstallDirs) install(TARGETS "${PROJECT_NAME}" RUNTIME DESTINATION "${CMAKE_INSTALL_BINDIR}") - install(FILES "Platform/Linux/${PROJECT_NAME}.desktop" DESTINATION "share/applications") - install(FILES "Platform/Linux/${PROJECT_NAME}.metainfo.xml" DESTINATION "share/metainfo") + install(FILES "/Platform/Linux/${PROJECT_NAME}.desktop" DESTINATION "share/applications") + install(FILES "/Platform/Linux/${PROJECT_NAME}.metainfo.xml" DESTINATION "share/metainfo") foreach(S 16 32 48 128 192) install(FILES "${PROJECT_NAME}/Icon_${S}x${S}.png" DESTINATION "share/icons/hicolor/${S}x${S}/apps" RENAME "${PROJECT_NAME}.png") diff --git a/Platform/Linux/SpaceCadetPinball.metainfo.xml b/Platform/Linux/SpaceCadetPinball.metainfo.xml index e544ca8..5d8ebcb 100644 --- a/Platform/Linux/SpaceCadetPinball.metainfo.xml +++ b/Platform/Linux/SpaceCadetPinball.metainfo.xml @@ -28,21 +28,6 @@ - - -

First bug fix release of cross-platform port.

-

Main highlights:

-
    -
  • Improved Linux support: install target, icons, desktop shortcut, alternative data paths.
  • -
  • Improved game controller support.
  • -
  • High precision sleep mode for ~0 frame time jitter.
  • -
  • Integer image scaling mode.
  • -
  • 3DPB <-> FT data switch option, for easier data-set changes when both are available.
  • -
  • FT demo data support.
  • -
  • Bug fixes.
  • -
-
-

First release of cross-platform port.

@@ -78,4 +63,4 @@ cadet - + \ No newline at end of file diff --git a/README.md b/README.md index ef6d217..81e61b8 100644 --- a/README.md +++ b/README.md @@ -67,8 +67,6 @@ To cross-compile for Windows, install a 64-bit version of mingw and its `SDL2` a Some distributions provide a package in their repository. You can use those for easier dependency management and updates. -This project is available as Flatpak on [Flathub](https://flathub.org/apps/details/com.github.k4zmu2a.spacecadetpinball). - ### On macOS * **Homebrew**: Install the `SDL2`, `SDL2_mixer` homebrew packages. diff --git a/SpaceCadetPinball/winmain.cpp b/SpaceCadetPinball/winmain.cpp index 8e42d32..c728af9 100644 --- a/SpaceCadetPinball/winmain.cpp +++ b/SpaceCadetPinball/winmain.cpp @@ -898,7 +898,7 @@ void winmain::a_dialog() ImGui::Separator(); ImGui::TextUnformatted("Decompiled -> Ported to SDL"); - ImGui::TextUnformatted("Version 2.0.1"); + ImGui::TextUnformatted("Version 2.0"); if (ImGui::SmallButton("Project home: https://github.com/k4zmu2a/SpaceCadetPinball")) { #if SDL_VERSION_ATLEAST(2, 0, 14)