From 22e68a8b74aed6c795ecd9a31661dc9e9c358e15 Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Sun, 7 Sep 2025 16:20:48 -0400 Subject: [PATCH 1/3] chore: update copyright year --- src/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/window.cpp b/src/window.cpp index d6c188e0..60239bc9 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -292,7 +292,7 @@ void Window::on_about() "

A fast viewer for .stl files.
" "https://github.com/fstl-app/fstl

" - "

© 2014-2024 Matthew Keeter
" + "

© 2014-2025 Matthew Keeter
" "matt.j.keeter@gmail.com

"); } From 83a2c134c4927d3f42f8d55173a6ca14af1c9e9a Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Sun, 7 Sep 2025 16:20:58 -0400 Subject: [PATCH 2/3] chore: update version --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9abe2aed..613d7936 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ endif() # Set the version number set (FSTL_VERSION_MAJOR "0") set (FSTL_VERSION_MINOR "11") -set (FSTL_VERSION_PATCH "0") +set (FSTL_VERSION_PATCH "1") set (PROJECT_VERSION "${FSTL_VERSION_MAJOR}.${FSTL_VERSION_MINOR}.${FSTL_VERSION_PATCH}") message(STATUS "Version: ${PROJECT_VERSION}") From eddbc8bec55cd6ac3214427017a15456b257cd8c Mon Sep 17 00:00:00 2001 From: Paul Tsouchlos Date: Sun, 7 Sep 2025 16:21:37 -0400 Subject: [PATCH 3/3] chore: look for clang-format only, not older versions Users can alias the specific version they have. In the future, we may want to enforce a min version as different versions of `clang-format` format code very differently. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 613d7936..2fbea669 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -12,7 +12,7 @@ set(CXX_STANDARD_REQUIRED ON) option(FSTL_CHECK_FORMAT "Check source code formatting with clang-format" OFF) if(FSTL_CHECK_FORMAT) - find_program(CLANG_FORMAT_EXE NAMES clang-format-10 clang-format-9 clang-format-8 clang-format) + find_program(CLANG_FORMAT_EXE NAMES clang-format) if(NOT CLANG_FORMAT_EXE) message(FATAL_ERROR "Could not find clang-format executable!") endif()