Skip to content

Commit f2e1f61

Browse files
update installer for v1.21
1 parent 41014ce commit f2e1f61

File tree

4 files changed

+24
-16
lines changed

4 files changed

+24
-16
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
# ChangeLog
2+
## 1.21.0
3+
- Added the option of linking the shared mongoc library.
4+
- Fix a bug of line endings of HTTP headers on Windows.
5+
- Fix a bug of reloading app libraries.
6+
- Fix to return 404 when the action is not found.
7+
28
## 1.20.0
39
- Implemented rawBody() function in THttpRequest class.
410
- Added some functions for getting query string.

installer/create_installer.bat

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@
44
:: Edit this line to run the batch file for Qt environment.
55
::
66

7-
set VERSION=1.20.0
7+
set VERSION=1.21.0
8+
set QTBASE=D:\Qt
89
set TFDIR=C:\TreeFrog\%VERSION%
10+
911
set BASEDIR=%~dp0
1012
set SLNFILE=%BASEDIR%\treefrog-setup\treefrog-setup.sln
1113
cd %BASEDIR%
1214

1315
:: MinGW
14-
call :build_msi "D:\Qt\Qt5.10.0\5.10.0\mingw53_32\bin\qtenv2.bat" 5.10
15-
call :build_msi "D:\Qt\Qt5.9.3\5.9.3\mingw53_32\bin\qtenv2.bat" 5.9
16+
call :build_msi "%QTBASE%\Qt5.10.0\5.10.0\mingw53_32\bin\qtenv2.bat" 5.10
17+
call :build_msi "%QTBASE%\Qt5.9.3\5.9.3\mingw53_32\bin\qtenv2.bat" 5.9
1618
call :build_setup treefrog-%VERSION%-mingw-setup.exe
1719

1820
:: MSVC2015
1921
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
20-
call :build_msi "D:\Qt\Qt5.10.0\5.10.0\msvc2015_64\bin\qtenv2.bat" 5.10
21-
call :build_msi "D:\Qt\Qt5.9.3\5.9.3\msvc2015_64\bin\qtenv2.bat" 5.9
22+
call :build_msi "%QTBASE%\Qt5.10.0\5.10.0\msvc2015_64\bin\qtenv2.bat" 5.10
23+
call :build_msi "%QTBASE%\Qt5.9.3\5.9.3\msvc2015_64\bin\qtenv2.bat" 5.9
2224
call :build_setup treefrog-%VERSION%-msvc2015_64-setup.exe
2325

2426

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 1.20.0'
9-
Id="BDAAE374-CC84-4FAF-AF55-145895D96281"
10-
UpgradeCode="C0690385-DBE9-4218-AFDB-0F6E27AFD4B8"
8+
<Product Name='TreeFrog Framework 1.20.1'
9+
Id="25600E41-A4B7-4454-9EF2-6AAEDD056D0C"
10+
UpgradeCode="E5A55000-D0F9-4D3A-90B4-C2496F70177E"
1111
Language='1041' Codepage='932'
12-
Version='1.20.0' Manufacturer='TreeFrog Framework Project'>
12+
Version='1.20.1' 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='1.20.0'>
30+
<Directory Id='VERSIONDIR' Name='1.20.1'>
3131
</Directory>
3232
</Directory>
3333
</Directory>
3434
<Directory Id="DesktopFolder" SourceName="Desktop"/>
3535
<Directory Id="ProgramMenuFolder">
36-
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 1.20.0"/>
36+
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 1.20.1"/>
3737
</Directory>
3838
</Directory>
3939

4040
<!-- デスクトップショートカット -->
4141
<DirectoryRef Id="DesktopFolder">
42-
<Component Id="DesktopShortcut" Guid="D8989877-E927-4C61-B58B-35FC4EFDDEF8">
42+
<Component Id="DesktopShortcut" Guid="ADC6690D-3230-4AFB-ABA5-FDCD490D71DD">
4343
<Shortcut Id="PromptDesktopShortcut"
44-
Name="TreeFrog Prompt 1.20.0"
44+
Name="TreeFrog Prompt 1.20.1"
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="4D6035EF-4306-42A4-BF64-B21912A77AAA">
54+
<Component Id="ApplicationShortcut" Guid="0F10775A-30A9-4A8E-AC23-8A68891AB60B">
5555
<CreateFolder Directory="ApplicationProgramsFolder"/>
5656

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

installer/treefrog-setup/treefrog-setup/AssemblyInfo.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ using namespace System::Security::Permissions;
3131
// すべての値を指定するか、下のように '*' を使ってリビジョンおよびビルド番号を
3232
// 既定値にすることができます:
3333

34-
[assembly:AssemblyVersionAttribute("1.20.0")];
34+
[assembly:AssemblyVersionAttribute("1.21.0")];
3535

3636
[assembly:ComVisible(false)];
3737

0 commit comments

Comments
 (0)