Skip to content

Commit

Permalink
FIX: Missing Start menu shortcut
Browse files Browse the repository at this point in the history
  • Loading branch information
KOOKIIEStudios committed Nov 29, 2023
1 parent c536cdd commit 9f348c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Installer/AppComponents.wxs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<!-- Set an icon for shortcuts -->
<!--<Icon Id="insert_icon_object_here" SourceFile="path_to_file"/>-->
<!--TODO: <Icon Id="insert_icon_object_here" SourceFile="path_to_file"/>-->

<ComponentGroup Id="BaseComponents" Directory="INSTALLFOLDER">
<Component>
Expand All @@ -15,8 +15,8 @@
requirement; they are upgraded whenever CastFORM.exe is upgraded.
-->
<File Id="CastFORM.exe" Source="$(FlutterBuildOutputDir)\CastFORM.exe" KeyPath="yes" />
<!--<Shortcut Name="CastFORM" Description="Pokemon TCG Decklist Generator" Directory="ProgramMenuFolder" Icon="insert_icon_object_here" />
<Shortcut Name="CastFORM" Description="Pokemon TCG Decklist Generator" Directory="DesktopFolder" Icon="insert_icon_object_here" />-->
<Shortcut Name="CastFORM" Description="Pokemon TCG Decklist Generator" Directory="ProgramMenuFolder" /><!-- TODO: Add icon -->
<!--TODO: <Shortcut Name="CastFORM" Description="Pokemon TCG Decklist Generator" Directory="DesktopFolder" Icon="insert_icon_object_here" />-->
</Component>
<Component>
<File Source="$(FlutterBuildOutputDir)\flutter_windows.dll" />
Expand Down
2 changes: 1 addition & 1 deletion Installer/Package.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />

<!-- Set an icon for Windows Settings > Apps -->
<!--<Property Id="ARPPRODUCTICON" Value="insert_icon_object_here" />-->
<!--TODO: <Property Id="ARPPRODUCTICON" Value="insert_icon_object_here" />-->

<!-- Block pre-win10/server2016 fromm installing -->
<Launch Message="CastFORM only supports 64-bit Windows 10/11!" Condition="Installed OR VersionNT64 >= 603"/>
Expand Down

0 comments on commit 9f348c9

Please sign in to comment.