Skip to content

Commit

Permalink
Minor fix, update version and copyright years (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeveloperPaul123 authored Oct 16, 2024
1 parent 5a67921 commit 2fd910d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#### Fast .stl viewer #####
# Original Project Author: Matt Keeter Copyright 2014 -2017
# Author: Paul Tsouchlos Copyright 2017
# Original Project Author: Matt Keeter Copyright 2014-2024
# Author: Paul Tsouchlos Copyright 2017-2024

cmake_minimum_required(VERSION 3.3)

Expand All @@ -13,7 +13,7 @@ set(CXX_STANDARD_REQUIRED ON)

# Set the version number
set (FSTL_VERSION_MAJOR "0")
set (FSTL_VERSION_MINOR "10")
set (FSTL_VERSION_MINOR "11")
set (FSTL_VERSION_PATCH "0")
set (PROJECT_VERSION "${FSTL_VERSION_MAJOR}.${FSTL_VERSION_MINOR}.${FSTL_VERSION_PATCH}")

Expand Down
3 changes: 2 additions & 1 deletion src/canvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,8 @@ void Canvas::common_view_change(enum ViewPoint c)
currentTransform.rotate(90, QVector3D(1, 0, 0));
currentTransform.rotate(180, QVector3D(0, 0, 1));
}
[[fallthrough]] case bottomview:
case bottomview:
[[fallthrough]];
default:
break;
}
Expand Down
2 changes: 1 addition & 1 deletion src/window.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,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-2022 Matthew Keeter<br>"
"<p>© 2014-2024 Matthew Keeter<br>"
"<a href=\"mailto:[email protected]\""
" style=\"color: #93a1a1;\">[email protected]</a></p>");
}
Expand Down

0 comments on commit 2fd910d

Please sign in to comment.