Fixed notification tray icon and updated version to 0.64.1

This commit is contained in:
casey langen 2019-03-20 15:14:15 -07:00
parent 64654a8835
commit b082031357
6 changed files with 16 additions and 4 deletions

View File

@ -1,3 +1,12 @@
0.64.1
win32 only release
musikcube:
* fixed a bug where notification tray icon wasn't getting set properly.
--------------------------------------------------------------------------------
0.64.0
musikcube:

View File

@ -8,7 +8,7 @@ cmake_minimum_required(VERSION 3.0)
project(musikcube)
set (musikcube_VERSION_MAJOR 0)
set (musikcube_VERSION_MINOR 64)
set (musikcube_VERSION_PATCH 0)
set (musikcube_VERSION_PATCH 1)
set (musikcube_VERSION "${musikcube_VERSION_MAJOR}.${musikcube_VERSION_MINOR}.${musikcube_VERSION_PATCH}")
include(CMakeToolsHelpers OPTIONAL)

View File

@ -1,6 +1,6 @@
%define name musikcube
%define build_timestamp %{lua: print(os.date("%Y%m%d"))}
%define version 0.64.0
%define version 0.64.1
Name: %{name}
Version: %{version}
Release: %{dist}

View File

@ -4,8 +4,8 @@
#define VERSION_MAJOR 0
#define VERSION_MINOR 64
#define VERSION_PATCH 0
#define VERSION "0.64.0"
#define VERSION_PATCH 1
#define VERSION "0.64.1"
namespace musik {
namespace cube {

View File

@ -153,6 +153,9 @@ void App::InitCurses() {
/* needs to happen after initscr() */
win32::InterceptWndProc();
win32::SetAppTitle(this->appTitle);
if (this->iconId) {
this->SetIcon(this->iconId);
}
#endif
Colors::Init(this->colorMode, this->bgType);

Binary file not shown.