Skip to content

Commit

Permalink
Increment to version 2.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
minorsecond committed Nov 6, 2022
1 parent ed280e4 commit 9443763
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
14 changes: 7 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ if (CMAKE_BUILD_TYPE MATCHES Debug)
add_compile_options(-Wall -Werror -Wextra -g -O0 - pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast)
elseif(CMAKE_BUILD_TYPE MATCHES Release)
message(STATUS "Building release")
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast)
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast -s)
elseif(CMAKE_BUILD_TYPE MATCHES RelLocalCpu)
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native")
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast -s)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native -s")
elseif(CMAKE_BUILD_TYPE MATCHES AppleM1)
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast)
add_compile_options(-Wall -Werror -Wextra -gdwarf-2 -O2 -pedantic -Wno-error=deprecated-enum-enum-conversion -Wno-error=extra-semi -Wno-error=old-style-cast -s)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mcpu=apple-m1")
endif ()

Expand All @@ -99,11 +99,11 @@ IF(APPLE)

set_target_properties(BuzzBot PROPERTIES
MACOSX_BUNDLE_BUNDLE_NAME "BuzzBot"
MACOSX_BUNDLE_BUNDLE_VERSION "2.5.0"
MACOSX_BUNDLE_BUNDLE_VERSION "v2.5.2"
MACOSX_BUNDLE TRUE
MACOSX_BUNDLE_ICON_FILE icon.icns
MACOSX_BUNDLE_LONG_VERSION_STRING "2.5.0"
MACOSX_BUNDLE_SHORT_VERSION_STRING "2.5.0"
MACOSX_BUNDLE_LONG_VERSION_STRING "v2.5.2"
MACOSX_BUNDLE_SHORT_VERSION_STRING "v2.5.2"
MACOSX_BUNDLE_COPYRIGHT "2021 Ross Wardrup"
MACOSX_BUNDLE_GUI_IDENTIFIER com.rwardrup.buzzbot
XCODE_ATTRIBUTE_LD_RUNPATH_SEARCH_PATHS "@loader_path/Libraries"
Expand Down
1 change: 1 addition & 0 deletions VERS
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@
2.4.0 2022-09-25-12-39-36
v2.4.1 2022-10-01-13-58-02
2.5.0 2022-10-16-15-26-24
v2.5.2 2022-11-06-11-09-57
2 changes: 1 addition & 1 deletion src/about.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ About::About() {
this->setFixedSize(237, 272);

// Version text
const std::string version = "2.5.0";
const std::string version = "v2.5.2";
ui.versionLabel->setText(QString::fromStdString("Version " + version));

// Make Qt URL clickable
Expand Down

0 comments on commit 9443763

Please sign in to comment.