aports/testing/signal-desktop/signal-update-links.patch
Antoine Martin b3a3da3714 testing/signal-desktop: upgrade to 7.35.1
* Adds README
* Renames `_check_depends` to `_update_depends` and makes it so that it
  updates the relevant variables using sed
* `builddir` is set as `$srcdir` so that dependencies are built under
  `./src` rather than `./src/Signal-Desktop-$pkgver`. This implicated
  `src/Signal-Desktop-$pkgver` being treated like its extra
  dependencies, thus `-$pkgver` is removed and relevant patches are
  modified to take that into account.  This change fixes an issue where
  `ringrtc` would pickup `node-modules` from `Signal-Desktop` rather
  than use its own.
2024-12-08 20:53:14 +00:00

25 lines
1.1 KiB
Diff

--- ./Signal-Desktop/ts/components/DialogExpiredBuild.tsx.orig
+++ ./Signal-Desktop/ts/components/DialogExpiredBuild.tsx
@@ -23,9 +23,9 @@
containerWidthBreakpoint={containerWidthBreakpoint}
type="error"
onClick={() => {
- openLinkInWebBrowser('https://signal.org/download/');
+ openLinkInWebBrowser('https://pkgs.alpinelinux.org/packages?name=signal-desktop');
}}
- clickLabel={i18n('icu:upgrade')}
+ clickLabel={<code>apk upgrade signal-desktop</code>}
hasAction
>
{i18n('icu:expiredWarning')}{' '}
--- ./Signal-Desktop/ts/types/support.ts.orig
+++ ./Signal-Desktop/ts/types/support.ts
@@ -1,7 +1,7 @@
// Copyright 2023 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
-export const PRODUCTION_DOWNLOAD_URL = 'https://signal.org/download/';
+export const PRODUCTION_DOWNLOAD_URL = 'https://pkgs.alpinelinux.org/packages?name=signal-desktop';
export const BETA_DOWNLOAD_URL = 'https://support.signal.org/beta';
export const UNSUPPORTED_OS_URL =
'https://support.signal.org/hc/articles/5109141421850';