Skip to content

Commit 133e0d4

Browse files
update installer.
1 parent 198031f commit 133e0d4

File tree

5 files changed

+15
-16
lines changed

5 files changed

+15
-16
lines changed

installer/create_installer.bat

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

99

10-
set VERSION=2.5.0
10+
set VERSION=2.6.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 2.5.0'
9-
Id="F71EFAFE-985A-4BF5-8644-897C36766134"
10-
UpgradeCode="237DE2CF-E583-456F-997D-762EE6D27FD9"
8+
<Product Name='TreeFrog Framework 2.6.0'
9+
Id="8ECF6252-436A-4200-BBFF-9D55FB5D9B5A"
10+
UpgradeCode="58D5D3F1-DA92-42B9-8764-AACDED86C1B8"
1111
Language='1041' Codepage='932'
12-
Version='2.5.0' Manufacturer='TreeFrog Framework Project'>
12+
Version='2.6.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.5.0'>
30+
<Directory Id='VERSIONDIR' Name='2.6.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.5.0"/>
36+
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 2.6.0"/>
3737
</Directory>
3838
</Directory>
3939

4040
<!-- デスクトップショートカット -->
4141
<DirectoryRef Id="DesktopFolder">
42-
<Component Id="DesktopShortcut" Guid="B92653AD-BE14-45A2-8460-BB8ADC37F241">
42+
<Component Id="DesktopShortcut" Guid="F0C4BEE7-CDC2-44AE-AFF3-9E5D57B156F4">
4343
<Shortcut Id="PromptDesktopShortcut"
44-
Name="TreeFrog Prompt 2.5.0"
44+
Name="TreeFrog Prompt 2.6.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="6003582C-DCB1-4859-B522-6F854D1AB353">
54+
<Component Id="ApplicationShortcut" Guid="15413D70-5EF2-43DC-8694-22809A7ACB65">
5555
<CreateFolder Directory="ApplicationProgramsFolder"/>
5656

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

installer/msi/license.rtf

-47.3 KB
Binary file not shown.

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ using namespace System::Security::Permissions;
1616
[assembly:AssemblyConfigurationAttribute("")];
1717
[assembly:AssemblyCompanyAttribute("")];
1818
[assembly:AssemblyProductAttribute("treefrogsetup")];
19-
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2010-2022")];
19+
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2010-2023")];
2020
[assembly:AssemblyTrademarkAttribute("")];
2121
[assembly:AssemblyCultureAttribute("")];
2222

@@ -37,4 +37,3 @@ using namespace System::Security::Permissions;
3737

3838
[assembly:CLSCompliantAttribute(true)];
3939

40-
[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];

installer/treefrog-setup/treefrog-setup/treefrog-setup.vcxproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<ItemGroup Label="ProjectConfigurations">
44
<ProjectConfiguration Include="Debug|Win32">
55
<Configuration>Debug</Configuration>
@@ -22,14 +22,14 @@
2222
<UseDebugLibraries>true</UseDebugLibraries>
2323
<CLRSupport>Pure</CLRSupport>
2424
<CharacterSet>Unicode</CharacterSet>
25-
<PlatformToolset>v110</PlatformToolset>
25+
<PlatformToolset>v120</PlatformToolset>
2626
</PropertyGroup>
2727
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
2828
<ConfigurationType>Application</ConfigurationType>
2929
<UseDebugLibraries>false</UseDebugLibraries>
3030
<CLRSupport>Pure</CLRSupport>
3131
<CharacterSet>Unicode</CharacterSet>
32-
<PlatformToolset>v110</PlatformToolset>
32+
<PlatformToolset>v120</PlatformToolset>
3333
</PropertyGroup>
3434
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
3535
<ImportGroup Label="ExtensionSettings">

0 commit comments

Comments
 (0)