From e6d4af525f45f95773bd5551679113cd37100aee Mon Sep 17 00:00:00 2001 From: Nav Date: Mon, 27 Sep 2021 23:08:53 +0100 Subject: [PATCH] Tidying and version number bump --- CMakeLists.txt | 2 +- src/Application.hpp | 2 +- .../TargetRegisterInspector/TargetRegisterInspectorWindow.cpp | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7911b21c..6527d11c 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.12) -project(Bloom LANGUAGES CXX VERSION 0.3.0) +project(Bloom LANGUAGES CXX VERSION 0.4.0) set(CMAKE_VERBOSE_MAKEFILE off) diff --git a/src/Application.hpp b/src/Application.hpp index 12edf06f..bab3997a 100644 --- a/src/Application.hpp +++ b/src/Application.hpp @@ -29,7 +29,7 @@ namespace Bloom class Application: public Thread { public: - static const inline std::string VERSION_STR = "0.3.0"; + static const inline std::string VERSION_STR = "0.4.0"; private: /** diff --git a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegisterInspector/TargetRegisterInspectorWindow.cpp b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegisterInspector/TargetRegisterInspectorWindow.cpp index 105621fb..d22fb18e 100644 --- a/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegisterInspector/TargetRegisterInspectorWindow.cpp +++ b/src/Insight/UserInterfaces/InsightWindow/Widgets/TargetRegisterInspector/TargetRegisterInspectorWindow.cpp @@ -367,6 +367,5 @@ void TargetRegisterInspectorWindow::applyChanges() { } void TargetRegisterInspectorWindow::openHelpPage() { -// QDesktopServices::openUrl(QUrl("https://bloom.oscillate.io/docs/register-inspection")); - QDesktopServices::openUrl(QUrl("http://bloom.local/docs/register-inspection")); + QDesktopServices::openUrl(QUrl("https://bloom.oscillate.io/docs/register-inspection")); }