From dff3e916fe82df0d677ee9772c0ad67a87968c8a Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Fri, 19 Dec 2025 00:23:02 +0300 Subject: [PATCH 1/2] bump version --- AUR/PKGBUILD | 2 +- CMakeLists.txt | 2 +- VERSION | 2 +- src/core/common/version.hpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/AUR/PKGBUILD b/AUR/PKGBUILD index 7c1eb68..44ea686 100644 --- a/AUR/PKGBUILD +++ b/AUR/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Daniel Dada pkgname=clrsync -pkgver=0.1.6 +pkgver=0.1.7 pkgrel=1 pkgdesc="Color scheme manager" arch=('x86_64') diff --git a/CMakeLists.txt b/CMakeLists.txt index 340523d..995dd56 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(clrsync VERSION 0.1.6 LANGUAGES CXX) +project(clrsync VERSION 0.1.7 LANGUAGES CXX) include(GNUInstallDirs) diff --git a/VERSION b/VERSION index c946ee6..1180819 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.1.6 +0.1.7 diff --git a/src/core/common/version.hpp b/src/core/common/version.hpp index 0e1fa60..a6e293e 100644 --- a/src/core/common/version.hpp +++ b/src/core/common/version.hpp @@ -6,7 +6,7 @@ namespace clrsync::core { -const std::string GIT_SEMVER = "0.1.6+git.g9be0a15"; +const std::string GIT_SEMVER = "0.1.6+git.g2d65383"; const std::string version_string(); } // namespace clrsync::core From 5b641cdd02f693b9e6c1bc8f9c101813f9bb42e2 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Fri, 19 Dec 2025 08:21:37 +0300 Subject: [PATCH 2/2] fix: typo in font_loader.windows --- src/core/common/version.hpp | 2 +- src/gui/platform/windows/font_loader_windows.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/common/version.hpp b/src/core/common/version.hpp index a6e293e..81a018f 100644 --- a/src/core/common/version.hpp +++ b/src/core/common/version.hpp @@ -6,7 +6,7 @@ namespace clrsync::core { -const std::string GIT_SEMVER = "0.1.6+git.g2d65383"; +const std::string GIT_SEMVER = "0.1.6+git.gdff3e91"; const std::string version_string(); } // namespace clrsync::core diff --git a/src/gui/platform/windows/font_loader_windows.cpp b/src/gui/platform/windows/font_loader_windows.cpp index 1e3ce0e..7a9026e 100644 --- a/src/gui/platform/windows/font_loader_windows.cpp +++ b/src/gui/platform/windows/font_loader_windows.cpp @@ -1,4 +1,4 @@ -#ifdef __WIN32 +#ifdef _WIN32 #include "core/config/config.hpp" #include "gui/platform/font_loader.hpp" #include "imgui_internal.h"