Skip to content

Commit

Permalink
Merge pull request #1038 from f3d-app/release
Browse files Browse the repository at this point in the history
merge release into master
  • Loading branch information
mwestphal authored Oct 4, 2023
2 parents bdf5253 + 2df008c commit d686b75
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .codespellrc
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 "")
Expand Down
12 changes: 0 additions & 12 deletions library/src/window_impl.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@
#include <vtkExternalOpenGLRenderWindow.h>
#endif

#if defined(_WIN32)
#include <vtkWindows.h>
#endif

namespace f3d::detail
{
class window_impl::internals
Expand Down Expand Up @@ -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<HWND>(this->Internals->RenWin->GetGenericWindowId());
BringWindowToTop(f3dWindow);
#endif

this->Internals->Initialized = true;
}

Expand Down
2 changes: 1 addition & 1 deletion library/testing/TestSDKCamera.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#include <iostream>
#include <limits>

// 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)
{
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down

0 comments on commit d686b75

Please sign in to comment.