Skip to content

Commit

Permalink
✨ feat(GacUI): update to 1.1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mangoeffect committed Dec 10, 2022
1 parent 90f9de7 commit e448360
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.14)

project(GacUI VERSION 1.1.2.0 LANGUAGES CXX)
project(GacUI VERSION 1.1.3.0 LANGUAGES CXX)

# C++标准要求
set(CMAKE_CXX_STANDARD 20)
Expand Down
2 changes: 1 addition & 1 deletion GacUI
Submodule GacUI updated 141 files
6 changes: 3 additions & 3 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
本项目旨在提供[GacUI](https://github.com/vczh-libraries/Release)库的CMake支持,使用CMake构建GacUI项目并打包安装,支持CMake通用格式导入连接到自己项目中。
使用GacUI之前,请先阅读GacUI原许可[GacUI-License](https://github.com/vczh-libraries/Release/blob/master/LICENSE.md)

**最新版本已更新至1.1.2.0**
**最新版本已更新至1.1.3.0**

# 功能

Expand All @@ -27,8 +27,8 @@ git clone --recursive git@github.com:mangosroom/GacUI-CMake-support.git
```bash
mkdir build
cd build
cmake -G "Visual Studio 16 2019" ..
#cmake -G "Visual Studio 15 2017" ..
cmake -G "Visual Studio 17 2022" ..
#cmake -G "Visual Studio 16 2019" ..
```
3. 编译安装

Expand Down
2 changes: 1 addition & 1 deletion cmake_export/WinMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DefaultSkinPlugin : public Object, public IGuiPlugin

void Load()override
{
RegisterTheme(MakePtr<darkskin::Theme>());
RegisterTheme(Ptr(new darkskin::Theme));
}

void Unload()override
Expand Down
6 changes: 3 additions & 3 deletions cmake_export/lite/Version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
namespace vl
{
const std::string gac_git_branch = "master";
const std::string gac_git_hash = "4d92a48";
const std::string gac_git_hash = "cedfc03";
const std::string gac_version_major = "1";
const std::string gac_version_minor = "1";
const std::string gac_version_patch = "2";
const std::string gac_project_version = "1.1.2.0";
const std::string gac_version_patch = "3";
const std::string gac_project_version = "1.1.3.0";


std::string GetGacUIGitBranch()
Expand Down
2 changes: 1 addition & 1 deletion cmake_export/lite/WinMain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class DefaultSkinPlugin : public Object, public IGuiPlugin

void Load()override
{
RegisterTheme(MakePtr<darkskin::Theme>());
RegisterTheme(Ptr(new darkskin::Theme));
}

void Unload()override
Expand Down

0 comments on commit e448360

Please sign in to comment.