summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-06-22 13:37:33 -0400
committerB. Stack <bgstack15@gmail.com>2024-06-22 13:37:33 -0400
commit5b2d5b76cf92d8c841e4abba7e4284d9530961d1 (patch)
treea3e442c38705fa02c0362b8d337f1672b7b13ae3
parentnm 33.1.1 (diff)
downloadstackrpms-5b2d5b76cf92d8c841e4abba7e4284d9530961d1.tar.gz
stackrpms-5b2d5b76cf92d8c841e4abba7e4284d9530961d1.tar.bz2
stackrpms-5b2d5b76cf92d8c841e4abba7e4284d9530961d1.zip
j-m-p: try disabling version check
-rw-r--r--jellyfin-media-player/debian/changelog6
-rw-r--r--jellyfin-media-player/debian/patches/01-disable-version-check.patch22
-rw-r--r--jellyfin-media-player/debian/patches/series1
3 files changed, 29 insertions, 0 deletions
diff --git a/jellyfin-media-player/debian/changelog b/jellyfin-media-player/debian/changelog
index 16a812c..b059f74 100644
--- a/jellyfin-media-player/debian/changelog
+++ b/jellyfin-media-player/debian/changelog
@@ -1,3 +1,9 @@
+jellyfin-media-player (1.11.1-2+stackrpms) unstable; urgency=medium
+
+ * Disable upgrade-available notification.
+
+ -- B. Stack <bgstack15@gmail.com> Sat, 22 Jun 2024 13:30:47 -0400
+
jellyfin-media-player (1.11.1-1+stackrpms) unstable; urgency=medium
* Fork for stackrpms
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 -->
diff --git a/jellyfin-media-player/debian/patches/series b/jellyfin-media-player/debian/patches/series
new file mode 100644
index 0000000..1361e4f
--- /dev/null
+++ b/jellyfin-media-player/debian/patches/series
@@ -0,0 +1 @@
+01-disable-version-check.patch
bgstack15