Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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}")
Expand Down
2 changes: 1 addition & 1 deletion src/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ void Window::on_about()
"<p>A fast viewer for <code>.stl</code> files.<br>"
"<a href=\"https://github.com/fstl-app/fstl\""
" style=\"color: #93a1a1;\">https://github.com/fstl-app/fstl</a></p>"
"<p>© 2014-2024 Matthew Keeter<br>"
"<p>© 2014-2025 Matthew Keeter<br>"
"<a href=\"mailto:matt.j.keeter@gmail.com\""
" style=\"color: #93a1a1;\">matt.j.keeter@gmail.com</a></p>");
}
Expand Down