Skip to content

Commit

Permalink
update version strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
treefrogframework committed Dec 20, 2024
1 parent d25197f commit a31bdf6
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion configure.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off
@setlocal

set VERSION=2.10.0
set VERSION=2.10.1
set TFDIR=C:\TreeFrog\%VERSION%
set MONBOC_VERSION=1.26.2
set LZ4_VERSION=1.9.4
Expand Down
2 changes: 1 addition & 1 deletion installer/create_installer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
:: 10行目、28行目、39行目を編集


set VERSION=2.10.0
set VERSION=2.10.1
set QTBASE=C:\Qt
set TFDIR=C:\TreeFrog\%VERSION%

Expand Down
2 changes: 1 addition & 1 deletion installer/treefrog-setup/treefrog-setup/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ using namespace System::Security::Permissions;
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を
// 既定値にすることができます:

[assembly:AssemblyVersionAttribute("2.10.0")];
[assembly:AssemblyVersionAttribute("2.10.1")];

[assembly:ComVisible(false)];

Expand Down
6 changes: 3 additions & 3 deletions src/tglobal.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#pragma once
constexpr auto TF_VERSION_STR = "2.10.0";
constexpr auto TF_VERSION_NUMBER = 0x020a00;
constexpr auto TF_SRC_REVISION = 2956;
constexpr auto TF_VERSION_STR = "2.10.1";
constexpr auto TF_VERSION_NUMBER = 0x020a01;
constexpr auto TF_SRC_REVISION = 2999;

#include <QMetaType>
#include <QIODevice>
Expand Down
2 changes: 1 addition & 1 deletion tfbase.pri
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TF_VER_MAJ=2
TF_VER_MIN=10
TF_VER_PAT=0
TF_VER_PAT=1
TF_VERSION=$${TF_VER_MAJ}.$${TF_VER_MIN}.$${TF_VER_PAT}

0 comments on commit a31bdf6

Please sign in to comment.