From cf8181b1af530334b07718a45616eeaa3faeddb9 Mon Sep 17 00:00:00 2001 From: Christian Heinemann Date: Sun, 31 Jul 2022 12:04:21 +0200 Subject: [PATCH] RELEASE_NOTES + minor adjustment --- RELEASE-NOTES.md | 4 ++++ source/Base/Resources.h | 2 +- source/Gui/BrowserWindow.cpp | 4 +--- source/Gui/StartupController.cpp | 2 +- source/Gui/StyleRepository.h | 2 +- vcpkg.json | 2 +- 6 files changed, 9 insertions(+), 7 deletions(-) diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md index bba0a94f3..c6f038c8c 100644 --- a/RELEASE-NOTES.md +++ b/RELEASE-NOTES.md @@ -1,5 +1,9 @@ # Release notes +## [3.2.3] - 2022-07-31 +### Added +- toolbar for browser window: refresh, login, logout, upload + ## [3.2.2] - 2022-07-24 ### Added - show downloads in browser diff --git a/source/Base/Resources.h b/source/Base/Resources.h index b76fd74a1..7316f6711 100644 --- a/source/Base/Resources.h +++ b/source/Base/Resources.h @@ -2,7 +2,7 @@ namespace Const { - std::string const ProgramVersion = "3.2.2"; + std::string const ProgramVersion = "3.2.3"; std::string const BasePath = "resources/"; diff --git a/source/Gui/BrowserWindow.cpp b/source/Gui/BrowserWindow.cpp index 1e29252bc..925364477 100644 --- a/source/Gui/BrowserWindow.cpp +++ b/source/Gui/BrowserWindow.cpp @@ -34,9 +34,7 @@ _BrowserWindow::_BrowserWindow( , _viewport(viewport) , _temporalControlWindow(temporalControlWindow) { - if (_on) { - refreshIntern(true); - } + refreshIntern(true); } _BrowserWindow::~_BrowserWindow() diff --git a/source/Gui/StartupController.cpp b/source/Gui/StartupController.cpp index 6ad53d24f..7c5fdd196 100644 --- a/source/Gui/StartupController.cpp +++ b/source/Gui/StartupController.cpp @@ -123,7 +123,7 @@ void _StartupController::processWindow() ImDrawList* drawList = ImGui::GetBackgroundDrawList(); - ImColor textColor = Const::ProgrammVersionColor; + ImColor textColor = Const::ProgramVersionColor; textColor.Value.w = ImGui::GetStyle().Alpha; drawList->AddText( diff --git a/source/Gui/StyleRepository.h b/source/Gui/StyleRepository.h index 95e322fb6..f3bde116e 100644 --- a/source/Gui/StyleRepository.h +++ b/source/Gui/StyleRepository.h @@ -8,7 +8,7 @@ namespace Const { - ImColor const ProgrammVersionColor = ImColor::HSV(0.63f, 0.3f, 1.0f, 1.0f); + ImColor const ProgramVersionColor = ImColor::HSV(0.5f, 0.1f, 1.0f, 1.0f); int64_t const SimulationSliderColor_Base = 0xff4c4c4c; int64_t const SimulationSliderColor_Active = 0xff6c6c6c; diff --git a/vcpkg.json b/vcpkg.json index f2223da3a..d0077c7c9 100644 --- a/vcpkg.json +++ b/vcpkg.json @@ -1,6 +1,6 @@ { "name": "alien", - "version": "3.2.0", + "version": "3.2.3", "dependencies": [ { "name": "glew",