mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 04:47:14 +02:00
* 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.
13 lines
407 B
Diff
13 lines
407 B
Diff
diff --git a/Signal-Desktop/app/main.ts.orig b/Signal-Desktop/app/main.ts
|
|
index aa1bec8..bd7c1d5 100644
|
|
--- a/Signal-Desktop/app/main.ts.orig
|
|
+++ b/Signal-Desktop/app/main.ts
|
|
@@ -690,7 +690,7 @@ async function createWindow() {
|
|
: DEFAULT_HEIGHT;
|
|
|
|
const windowOptions: Electron.BrowserWindowConstructorOptions = {
|
|
- show: false,
|
|
+ show: true,
|
|
width,
|
|
height,
|
|
minWidth: MIN_WIDTH,
|