Skip to content

Commit e4cdb75

Browse files
update installer.
1 parent 379f6e8 commit e4cdb75

File tree

4 files changed

+20
-12
lines changed

4 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# ChangeLog
2+
## 1.29.0
3+
- Fix a bug of max-age of cookie.
4+
- Fix a bug of generating select-tag.
5+
- Modified to initialize boolean fields in classes generated.
6+
- Implemented publish() function in TActionController class.
7+
- Rename functions; renderAndStoreInCache() to renderAndCache(),
8+
renderFromCache() to renderOnCache(), removeFromCache() to removeCache().
9+
210
## 1.28.0
311
- Implemented to add a SameSite attribute to cookie.
412
- Modified to add a max-age value to cookie.

installer/create_installer.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
:: 10行目、21行目、22行目を編集
88

99

10-
set VERSION=1.28.0
10+
set VERSION=1.29.0
1111
set QTBASE=C:\Qt
1212
set TFDIR=C:\TreeFrog\%VERSION%
1313

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.28.0'
9-
Id="451F22E0-3C2A-48F4-A792-DE0E676DF6EA"
10-
UpgradeCode="6118066B-30F0-4D50-8131-96BE9CCCCF1F"
8+
<Product Name='TreeFrog Framework 1.29.0'
9+
Id="9B6A28D5-0183-4AF9-9424-30916C1256A8"
10+
UpgradeCode="A011ED7F-BC68-4719-B085-F4383B8C683A"
1111
Language='1041' Codepage='932'
12-
Version='1.28.0' Manufacturer='TreeFrog Framework Project'>
12+
Version='1.29.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='1.28.0'>
30+
<Directory Id='VERSIONDIR' Name='1.29.0'>
3131
</Directory>
3232
</Directory>
3333
</Directory>
3434
<Directory Id="DesktopFolder" SourceName="Desktop"/>
3535
<Directory Id="ProgramMenuFolder">
36-
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 1.28.0"/>
36+
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 1.29.0"/>
3737
</Directory>
3838
</Directory>
3939

4040
<!-- デスクトップショートカット -->
4141
<DirectoryRef Id="DesktopFolder">
42-
<Component Id="DesktopShortcut" Guid="898B4B90-24BC-4E5A-B616-AD50DFEB33F8">
42+
<Component Id="DesktopShortcut" Guid="AE8BF156-E6BA-4EA4-98EB-E44F1387005B">
4343
<Shortcut Id="PromptDesktopShortcut"
44-
Name="TreeFrog Prompt 1.28.0"
44+
Name="TreeFrog Prompt 1.29.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="504BB7D0-10FF-442E-B5D8-9D0B9E872016">
54+
<Component Id="ApplicationShortcut" Guid="E8AD07A6-2EE4-440A-A234-B229FAE12146">
5555
<CreateFolder Directory="ApplicationProgramsFolder"/>
5656

5757
<!-- Shortcut to TF prompt-->
5858
<Shortcut Id="PromptProgramMenuShortcut"
59-
Name="TreeFrog Prompt 1.28.0"
59+
Name="TreeFrog Prompt 1.29.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/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.28.0")];
34+
[assembly:AssemblyVersionAttribute("1.29.0")];
3535

3636
[assembly:ComVisible(false)];
3737

0 commit comments

Comments
 (0)