summarylogtreecommitdiffstats
path: root/remove-update-check.patch
diff options
context:
space:
mode:
authorMatthias Lisin2019-10-12 22:48:18 +0200
committerMatthias Lisin2019-10-12 22:48:18 +0200
commitcad0f1417ac79dcf8bd7d1124fe9ca1dabb718e5 (patch)
treec111f8a5bdb5b0fd6af8699b08d3535d3b88cdc9 /remove-update-check.patch
parent520aa79b524f30adaecd3461897ff8dd1d3d7eb8 (diff)
downloadaur-cad0f1417ac79dcf8bd7d1124fe9ca1dabb718e5.tar.gz
Replace obsolete patches.
Diffstat (limited to 'remove-update-check.patch')
-rw-r--r--remove-update-check.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/remove-update-check.patch b/remove-update-check.patch
deleted file mode 100644
index 6bd23c1cb42a..000000000000
--- a/remove-update-check.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff -ura package.orig/src/html/scripts/ui.pug package.new/src/html/scripts/ui.pug
---- package.orig/src/html/scripts/ui.pug 2019-03-23 21:06:10.110844584 +0100
-+++ package.new/src/html/scripts/ui.pug 2019-03-23 21:17:27.400580327 +0100
-@@ -224,18 +224,3 @@
- if (process.platform === "win32") {
- modals.show('windows-drivers');
- }
--
-- utils.getUpdateAvailable().then((updateAvailable) => {
-- if(updateAvailable) {
-- utils.log.warn("This is not the latest stable release!")
-- if (utils.isSnap()) {
-- $("#snap-update-instructions").show();
-- $("#btn-update-installer").hide();
-- } else {
-- $("#generic-update-instructions").show();
-- }
-- modals.show('new-update');
-- } else {
-- utils.log.debug("Running latest stable version.");
-- }
-- });