Skip to content

Commit

Permalink
fix(dist): temporarily allow-dirty and remove license stuff (#293)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gankra committed Sep 28, 2023
1 parent fba6b9a commit 3968582
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
2 changes: 2 additions & 0 deletions Cargo.toml
Expand Up @@ -175,6 +175,8 @@ windows-archive = ".tar.gz"
unix-archive = ".tar.gz"
# Publish jobs to run in CI
pr-run-mode = "plan"
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["msi"]

[build-dependencies]
embed-resource = "1.3.3"
Expand Down
23 changes: 13 additions & 10 deletions wix/main.wxs
Expand Up @@ -95,14 +95,15 @@
2. Comment out or remove the `ComponentRef` tag with the "License" Id
attribute value further down in this file.
-->
<!--
<Component Id='License' Guid='*'>
<File Id='LicenseFile'
Name='License'
DiskId='1'
Source='License.rtf'
KeyPath='yes'/>
</Component>

-->
<Directory Id='Bin' Name='bin'>
<Component Id='Path' Guid='D7A7057F-9CE2-4FB0-A0CF-1293469361C5' KeyPath='yes'>
<Environment
Expand Down Expand Up @@ -140,8 +141,9 @@
Comment out or remove the following `ComponentRef` tag to remove
the license sidecar file from the installer.
-->
<!--
<ComponentRef Id='License'/>

-->
<ComponentRef Id='binary0'/>

<Feature
Expand All @@ -156,7 +158,7 @@

<SetProperty Id='ARPINSTALLLOCATION' Value='[APPLICATIONFOLDER]' After='CostFinalize'/>


<!--
Uncomment the following `Icon` and `Property` tags to change the product icon.
Expand All @@ -167,7 +169,7 @@
<!--<Property Id='ARPPRODUCTICON' Value='ProductICO' />-->

<Property Id='ARPHELPLINK' Value='https://orogene.dev'/>

<UI>
<UIRef Id='WixUI_FeatureTree'/>
<!--
Expand All @@ -177,18 +179,19 @@
2. Comment out or remove the `<WiXVariable Id='WixUILicenseRtf'...` tag further down
-->
<!--<Publish Dialog='WelcomeDlg' Control='Next' Event='NewDialog' Value='CustomizeDlg' Order='99'>1</Publish>-->
<!--<Publish Dialog='CustomizeDlg' Control='Back' Event='NewDialog' Value='WelcomeDlg' Order='99'>1</Publish>-->
<Publish Dialog='WelcomeDlg' Control='Next' Event='NewDialog' Value='CustomizeDlg' Order='99'>1</Publish>
<Publish Dialog='CustomizeDlg' Control='Back' Event='NewDialog' Value='WelcomeDlg' Order='99'>1</Publish>

</UI>

<!--
Disabling the EULA dialog in the installer requires commenting out
or removing the following `WixVariable` tag
-->
<!--
<WixVariable Id='WixUILicenseRtf' Value='License.rtf'/>

-->

<!--
Uncomment the next `WixVariable` tag to customize the installer's
Graphical User Interface (GUI) and add a custom banner image across
Expand All @@ -199,7 +202,7 @@
-->
<!--<WixVariable Id='WixUIBannerBmp' Value='wix\Banner.bmp'/>-->


<!--
Uncomment the next `WixVariable` tag to customize the installer's
Graphical User Interface (GUI) and add a custom image to the first
Expand Down

0 comments on commit 3968582

Please sign in to comment.