summaryrefslogtreecommitdiff
path: root/jellyfin-media-player/debian/patches/01-disable-version-check.patch
diff options
context:
space:
mode:
Diffstat (limited to 'jellyfin-media-player/debian/patches/01-disable-version-check.patch')
-rw-r--r--jellyfin-media-player/debian/patches/01-disable-version-check.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/jellyfin-media-player/debian/patches/01-disable-version-check.patch b/jellyfin-media-player/debian/patches/01-disable-version-check.patch
new file mode 100644
index 0000000..823745e
--- /dev/null
+++ b/jellyfin-media-player/debian/patches/01-disable-version-check.patch
@@ -0,0 +1,22 @@
+Author: bgstack15
+Startdate: 2024-06-22-7 13:34
+Purpose: Remove the version check information so my build does not tell me about somebody else's build.
+--- a/bundle/win/JMP.wxs
++++ b/bundle/win/JMP.wxs
+@@ -42,16 +42,7 @@
+ <!-- Upgrade and downgrade handling -->
+ <Upgrade Id="$(var.ProductUUID)">
+ <!-- Detect newer versions -->
+- <UpgradeVersion Minimum="$(var.Version)"
+- IncludeMinimum="no"
+- OnlyDetect="yes"
+- Property="NEWERPRODUCTFOUND" />
+ <!-- Detect older versions -->
+- <UpgradeVersion Minimum="$(var.FirstProductVersion)"
+- Maximum="$(var.Version)"
+- IncludeMinimum="yes"
+- IncludeMaximum="no"
+- Property="PREVIOUSVERSIONINSTALLED" />
+ </Upgrade>
+
+ <!-- Running program termination -->
bgstack15