From e77d7741288ceccb3a5936adf72bcd9c0499839c Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 25 May 2025 18:15:27 -0300 Subject: [PATCH 1/2] fix version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8e51ac34..a5c086d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.16.0 FATAL_ERROR) # Set the project version and language -project(Starship VERSION 2.0.1 LANGUAGES C CXX ASM) +project(Starship VERSION 2.0.0 LANGUAGES C CXX ASM) include(FetchContent) set(NATO_PHONETIC_ALPHABET From 995cb87475b796f7f931b7c43e9243cf1d36e5d1 Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 25 May 2025 18:22:04 -0300 Subject: [PATCH 2/2] OpenGL Apply Point Filtering to UI Elements --- src/port/ui/ImguiUI.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/port/ui/ImguiUI.cpp b/src/port/ui/ImguiUI.cpp index be909fc6..f488aedf 100644 --- a/src/port/ui/ImguiUI.cpp +++ b/src/port/ui/ImguiUI.cpp @@ -513,9 +513,7 @@ void DrawSettingsMenu(){ ImGui::Text("Texture Filter (Needs reload)"); UIWidgets::EnhancementCombobox("gTextureFilter", filters, 0); - if (Ship::Context::GetInstance()->GetConfig()->GetString("Window.Backend.Name") != windowBackendNames[Ship::WindowBackend::FAST3D_SDL_OPENGL]) { - UIWidgets::PaddedEnhancementCheckbox("Apply Point Filtering to UI Elements", "gHUDPointFiltering", true, false, false, "", UIWidgets::CheckboxGraphics::Cross, true); - } + UIWidgets::PaddedEnhancementCheckbox("Apply Point Filtering to UI Elements", "gHUDPointFiltering", true, false, false, "", UIWidgets::CheckboxGraphics::Cross, true); UIWidgets::Spacer(0); Ship::Context::GetInstance()->GetWindow()->GetGui()->GetGameOverlay()->DrawSettings();