Skip to content

Commit 55a4458

Browse files
updated installer.
1 parent b9ef322 commit 55a4458

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

installer/create_installer.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ set LIB=
2525
set PATH=C:\WINDOWS\system32;C:\WINDOWS
2626

2727
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
28-
call :build_msi "%QTBASE%\6.4.2\msvc2019_64\bin\qtenv2.bat" 6.4
28+
call :build_msi "%QTBASE%\6.6.1\msvc2019_64\bin\qtenv2.bat" 6.6
2929

3030
:: Clear environment variables
3131
set VCToolsVersion=
@@ -36,7 +36,7 @@ set LIB=
3636
set PATH=C:\WINDOWS\system32;C:\WINDOWS
3737

3838
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
39-
call :build_msi "%QTBASE%\6.3.2\msvc2019_64\bin\qtenv2.bat" 6.3
39+
call :build_msi "%QTBASE%\6.5.3\msvc2019_64\bin\qtenv2.bat" 6.5
4040

4141
call :build_setup treefrog-%VERSION%-msvc_64-setup.exe
4242

installer/msi/TreeFrog.wxs

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
<!-- *** 基本的に 9行目,10行目,42行目,54行目も修正する (guidgen使用) *** -->
66

77
<!-- プロダクト情報 -->
8-
<Product Name='TreeFrog Framework 2.7.1'
9-
Id="F3BE3299-8536-47B5-9874-1CB8DB21102E"
10-
UpgradeCode="D956C004-0F4D-44BE-98D2-A627FAD49C73"
8+
<Product Name='TreeFrog Framework 2.8.0'
9+
Id="E97EAFE9-A79C-4FFF-8A61-2DF8987D03BA"
10+
UpgradeCode="B182CC33-A14B-4B56-9C9F-1E7486A3B4CF"
1111
Language='1041' Codepage='932'
12-
Version='2.7.1' Manufacturer='TreeFrog Framework Project'>
12+
Version='2.8.0' Manufacturer='TreeFrog Framework Project'>
1313

1414
<!-- パッケージ情報 -->
1515
<Package Id='*' Keywords='Installer'
@@ -27,21 +27,21 @@
2727
<Directory Id='TARGETDIR' Name='SourceDir'>
2828
<Directory Id='WINDOWSVOLUME'>
2929
<Directory Id='INSTALLDIR' Name='TreeFrog'>
30-
<Directory Id='VERSIONDIR' Name='2.7.1'>
30+
<Directory Id='VERSIONDIR' Name='2.8.0'>
3131
</Directory>
3232
</Directory>
3333
</Directory>
3434
<Directory Id="DesktopFolder" SourceName="Desktop"/>
3535
<Directory Id="ProgramMenuFolder">
36-
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 2.7.1"/>
36+
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 2.8.0"/>
3737
</Directory>
3838
</Directory>
3939

4040
<!-- デスクトップショートカット -->
4141
<DirectoryRef Id="DesktopFolder">
42-
<Component Id="DesktopShortcut" Guid="46F98BC2-C1EC-4FA9-A093-1397BA47D327">
42+
<Component Id="DesktopShortcut" Guid="03CDB563-5A09-47B3-A5C5-59DA3CAB78F3">
4343
<Shortcut Id="PromptDesktopShortcut"
44-
Name="TreeFrog Prompt 2.7.1"
44+
Name="TreeFrog Prompt 2.8.0"
4545
Description="TreeFrog Framework Prompt"
4646
Target="[SystemFolder]cmd.exe" Arguments="/K [VERSIONDIR]bin\\tfenv.bat"
4747
WorkingDirectory="PersonalFolder"/>
@@ -51,12 +51,12 @@
5151

5252
<!-- プログラムメニューショートカット -->
5353
<DirectoryRef Id="ApplicationProgramsFolder">
54-
<Component Id="ApplicationShortcut" Guid="209ADB0F-A113-40FD-8D8A-A71CBF6FE464">
54+
<Component Id="ApplicationShortcut" Guid="97B71422-35C6-49DF-85E7-E13C7B2B1C94">
5555
<CreateFolder Directory="ApplicationProgramsFolder"/>
5656

5757
<!-- Shortcut to TF prompt-->
5858
<Shortcut Id="PromptProgramMenuShortcut"
59-
Name="TreeFrog Prompt 2.7.1"
59+
Name="TreeFrog Prompt 2.8.0"
6060
Description="TreeFrog Framework Prompt"
6161
Target="[SystemFolder]cmd.exe" Arguments="/K [VERSIONDIR]bin\\tfenv.bat"
6262
WorkingDirectory="PersonalFolder"/>

installer/treefrog-setup/treefrog-setup/MainForm.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#undef GetTempPath
77

88
//
9-
// リリースする際は50行目を編集!
9+
// リリースする際は50行目を編集!
1010
//
1111

1212

@@ -45,13 +45,13 @@ namespace treefrogsetup {
4545
static initonly String^ TF_ENV_BAT = "C:\\TreeFrog\\" + VersionString() + "\\bin\\tfenv.bat"; // Base Directory
4646

4747
//
48-
// バージョン
48+
// バージョン
4949
//
50-
static initonly String^ VERSION_STR6_NEW = L"6.4";
51-
static initonly String^ VERSION_STR6_PREV = L"6.3";
50+
static initonly String^ VERSION_STR6_NEW = L"6.6";
51+
static initonly String^ VERSION_STR6_PREV = L"6.5";
5252

53-
static initonly int RCID_NEW = IDR_TREEFROG_QT604_MSI;
54-
static initonly int RCID_PREV = IDR_TREEFROG_QT603_MSI;
53+
static initonly int RCID_NEW = IDR_TREEFROG_QT606_MSI;
54+
static initonly int RCID_PREV = IDR_TREEFROG_QT605_MSI;
5555

5656
public:
5757
MainForm(void)
@@ -106,8 +106,8 @@ namespace treefrogsetup {
106106

107107
#pragma region Windows Form Designer generated code
108108
/// <summary>
109-
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
110-
/// コード エディターで変更しないでください。
109+
/// デザイナー サポートに必要なメソッドです。このメソッドの内容を
110+
/// コード エディターで変更しないでください。
111111
/// </summary>
112112
void InitializeComponent(void)
113113
{

0 commit comments

Comments
 (0)