Skip to content

Commit

Permalink
RELEASE_NOTES + minor adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
chrxh committed Jul 31, 2022
1 parent 43b43ab commit cf8181b
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
4 changes: 4 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion source/Base/Resources.h
Original file line number Diff line number Diff line change
Expand Up @@ -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/";

Expand Down
4 changes: 1 addition & 3 deletions source/Gui/BrowserWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,7 @@ _BrowserWindow::_BrowserWindow(
, _viewport(viewport)
, _temporalControlWindow(temporalControlWindow)
{
if (_on) {
refreshIntern(true);
}
refreshIntern(true);
}

_BrowserWindow::~_BrowserWindow()
Expand Down
2 changes: 1 addition & 1 deletion source/Gui/StartupController.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion source/Gui/StyleRepository.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "alien",
"version": "3.2.0",
"version": "3.2.3",
"dependencies": [
{
"name": "glew",
Expand Down

0 comments on commit cf8181b

Please sign in to comment.