aboutsummaryrefslogtreecommitdiffstats
path: root/packaging
diff options
context:
space:
mode:
authorJoão Valverde <j@v6e.pt>2023-09-29 19:38:11 +0100
committerJoão Valverde <j@v6e.pt>2023-10-02 19:43:46 +0000
commit15d3e3ff68f5e7b8f13f8c76f2694bbe6402299e (patch)
tree6f2a875a277ab1ac3b0067591e3030a8a8ff7c43 /packaging
parent7f8dc702da8c0e36943c8bb4869bd6533fac69e0 (diff)
GUI: Add release notes to Help menu
Diffstat (limited to 'packaging')
-rw-r--r--packaging/nsis/wireshark.nsi2
-rw-r--r--packaging/wix/ComponentGroups.wxi3
2 files changed, 5 insertions, 0 deletions
diff --git a/packaging/nsis/wireshark.nsi b/packaging/nsis/wireshark.nsi
index 0a3ce0fd4c..62c46ac76d 100644
--- a/packaging/nsis/wireshark.nsi
+++ b/packaging/nsis/wireshark.nsi
@@ -550,6 +550,7 @@ File "${STAGING_DIR}\dumpcap.exe"
File "${STAGING_DIR}\dumpcap.html"
File "${STAGING_DIR}\extcap.html"
File "${STAGING_DIR}\ipmap.html"
+File "${STAGING_DIR}\release-notes.html"
!ifdef USE_VCREDIST
; C-runtime redistributable
@@ -1445,6 +1446,7 @@ Delete "$INSTDIR\browser_sslkeylog.lua"
Delete "$INSTDIR\console.lua"
Delete "$INSTDIR\dtd_gen.lua"
Delete "$INSTDIR\init.lua"
+Delete "$INSTDIR\release-notes.html"
RMDir "$INSTDIR\accessible"
RMDir "$INSTDIR\audio"
diff --git a/packaging/wix/ComponentGroups.wxi b/packaging/wix/ComponentGroups.wxi
index fe129a3190..bffd3dd4cc 100644
--- a/packaging/wix/ComponentGroups.wxi
+++ b/packaging/wix/ComponentGroups.wxi
@@ -65,6 +65,8 @@
</Component>
<Component Id="cmpIpmap_html" Guid="*">
<File Id="filIpmap_html" KeyPath="yes" Source="$(var.Staging.Dir)\ipmap.html" />
+ <Component Id="cmpReleaseNotes_html" Guid="*">
+ <File Id="filReleaseNotes_html" KeyPath="yes" Source="$(var.Staging.Dir)\release-notes.html" />
</Component>
</DirectoryRef>
</Fragment>
@@ -86,6 +88,7 @@
<ComponentRef Id="cmpDumpcap_html" />
<ComponentRef Id="cmpExtcap_html" />
<ComponentRef Id="cmpIpmap_html" />
+ <ComponentRef Id="cmpReleaseNotes_html" />
</ComponentGroup>
</Fragment>