Skip to content

Commit

Permalink
update installer.
Browse files Browse the repository at this point in the history
  • Loading branch information
treefrogframework committed Jan 1, 2023
1 parent 198031f commit 133e0d4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
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.5.0
set VERSION=2.6.0
set QTBASE=C:\Qt
set TFDIR=C:\TreeFrog\%VERSION%

Expand Down
20 changes: 10 additions & 10 deletions installer/msi/TreeFrog.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<!-- *** 基本的に 9行目,10行目,42行目,54行目も修正する (guidgen使用) *** -->

<!-- プロダクト情報 -->
<Product Name='TreeFrog Framework 2.5.0'
Id="F71EFAFE-985A-4BF5-8644-897C36766134"
UpgradeCode="237DE2CF-E583-456F-997D-762EE6D27FD9"
<Product Name='TreeFrog Framework 2.6.0'
Id="8ECF6252-436A-4200-BBFF-9D55FB5D9B5A"
UpgradeCode="58D5D3F1-DA92-42B9-8764-AACDED86C1B8"
Language='1041' Codepage='932'
Version='2.5.0' Manufacturer='TreeFrog Framework Project'>
Version='2.6.0' Manufacturer='TreeFrog Framework Project'>

<!-- パッケージ情報 -->
<Package Id='*' Keywords='Installer'
Expand All @@ -27,21 +27,21 @@
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='WINDOWSVOLUME'>
<Directory Id='INSTALLDIR' Name='TreeFrog'>
<Directory Id='VERSIONDIR' Name='2.5.0'>
<Directory Id='VERSIONDIR' Name='2.6.0'>
</Directory>
</Directory>
</Directory>
<Directory Id="DesktopFolder" SourceName="Desktop"/>
<Directory Id="ProgramMenuFolder">
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 2.5.0"/>
<Directory Id="ApplicationProgramsFolder" Name="TreeFrog Framework 2.6.0"/>
</Directory>
</Directory>

<!-- デスクトップショートカット -->
<DirectoryRef Id="DesktopFolder">
<Component Id="DesktopShortcut" Guid="B92653AD-BE14-45A2-8460-BB8ADC37F241">
<Component Id="DesktopShortcut" Guid="F0C4BEE7-CDC2-44AE-AFF3-9E5D57B156F4">
<Shortcut Id="PromptDesktopShortcut"
Name="TreeFrog Prompt 2.5.0"
Name="TreeFrog Prompt 2.6.0"
Description="TreeFrog Framework Prompt"
Target="[SystemFolder]cmd.exe" Arguments="/K [VERSIONDIR]bin\\tfenv.bat"
WorkingDirectory="PersonalFolder"/>
Expand All @@ -51,12 +51,12 @@

<!-- プログラムメニューショートカット -->
<DirectoryRef Id="ApplicationProgramsFolder">
<Component Id="ApplicationShortcut" Guid="6003582C-DCB1-4859-B522-6F854D1AB353">
<Component Id="ApplicationShortcut" Guid="15413D70-5EF2-43DC-8694-22809A7ACB65">
<CreateFolder Directory="ApplicationProgramsFolder"/>

<!-- Shortcut to TF prompt-->
<Shortcut Id="PromptProgramMenuShortcut"
Name="TreeFrog Prompt 2.5.0"
Name="TreeFrog Prompt 2.6.0"
Description="TreeFrog Framework Prompt"
Target="[SystemFolder]cmd.exe" Arguments="/K [VERSIONDIR]bin\\tfenv.bat"
WorkingDirectory="PersonalFolder"/>
Expand Down
Binary file modified installer/msi/license.rtf
Binary file not shown.
3 changes: 1 addition & 2 deletions installer/treefrog-setup/treefrog-setup/AssemblyInfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ using namespace System::Security::Permissions;
[assembly:AssemblyConfigurationAttribute("")];
[assembly:AssemblyCompanyAttribute("")];
[assembly:AssemblyProductAttribute("treefrogsetup")];
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2010-2022")];
[assembly:AssemblyCopyrightAttribute("Copyright (c) 2010-2023")];
[assembly:AssemblyTrademarkAttribute("")];
[assembly:AssemblyCultureAttribute("")];

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

[assembly:CLSCompliantAttribute(true)];

[assembly:SecurityPermission(SecurityAction::RequestMinimum, UnmanagedCode = true)];
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
Expand All @@ -22,14 +22,14 @@
<UseDebugLibraries>true</UseDebugLibraries>
<CLRSupport>Pure</CLRSupport>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<CLRSupport>Pure</CLRSupport>
<CharacterSet>Unicode</CharacterSet>
<PlatformToolset>v110</PlatformToolset>
<PlatformToolset>v120</PlatformToolset>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
Expand Down

0 comments on commit 133e0d4

Please sign in to comment.