diff --git a/.codespellrc b/.codespellrc index 0d4fb16881..0864665338 100644 --- a/.codespellrc +++ b/.codespellrc @@ -1,3 +1,3 @@ [codespell] -skip = ./testing/**/*,./.git/**/*,./external/cxxopts/cxxopts.hpp +skip = ./testing/**/*,./.git/**/*,./external/cxxopts/cxxopts.hpp,./external/nlohmann_json/nlohmann/json.hpp ignore-words-list=nnumber,unknwn,dota,modle diff --git a/CMakeLists.txt b/CMakeLists.txt index ef8f9f0703..18bde0d10b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -31,7 +31,7 @@ include(f3dVersion) # Handle F3D_VERSION set(F3D_MAJOR_VERSION 2) set(F3D_MINOR_VERSION 2) -set(F3D_PATCH_VERSION 0) +set(F3D_PATCH_VERSION 1) set(F3D_VERSION ${F3D_MAJOR_VERSION}.${F3D_MINOR_VERSION}.${F3D_PATCH_VERSION}) set(F3D_PATCH_VERSION_EXTRA "") diff --git a/library/src/window_impl.cxx b/library/src/window_impl.cxx index e4d7b9c1a8..19e878d04a 100644 --- a/library/src/window_impl.cxx +++ b/library/src/window_impl.cxx @@ -26,10 +26,6 @@ #include #endif -#if defined(_WIN32) -#include -#endif - namespace f3d::detail { class window_impl::internals @@ -218,14 +214,6 @@ void window_impl::Initialize(bool withColoring) { this->Internals->WithColoring = withColoring; this->Internals->Renderer->Initialize(this->Internals->Options.getAsString("scene.up-direction")); - -#if defined(_WIN32) - // On Windows, the Log window can get in front in some case, make sure the render window is on top - // on initialization - HWND f3dWindow = static_cast(this->Internals->RenWin->GetGenericWindowId()); - BringWindowToTop(f3dWindow); -#endif - this->Internals->Initialized = true; } diff --git a/library/testing/TestSDKCamera.cxx b/library/testing/TestSDKCamera.cxx index 2969bcb067..127bb7a947 100644 --- a/library/testing/TestSDKCamera.cxx +++ b/library/testing/TestSDKCamera.cxx @@ -8,7 +8,7 @@ #include #include -// TODO these methodes should be put in types.h at some point. +// TODO these methods should be put in types.h at some point. // https://github.com/f3d-app/f3d/issues/361 bool compareDouble(double a, double b) { diff --git a/pyproject.toml b/pyproject.toml index fd4c2b51dd..8591fe2bb6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "scikit_build_core.build" [project] name = "f3d" requires-python = ">=3.7" -version = "2.2.0" +version = "2.2.1" description = "F3D, a fast and minimalist 3D viewer" readme = "README.md" license = {file = "LICENSE.md"}