-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update element-desktop to version 1.11.67 / rev 56 via SR 1175898
https://build.opensuse.org/request/show/1175898 by user dheidler + anag+factory - Version 1.11.67 ## ✨ Features * Tooltip: Improve the accessibility of the composer and the rich text editor (matrix-org/matrix-react-sdk#12459). Contributed by @florianduros. * Allow explicit configuration of OIDC dynamic registration metadata (matrix-org/matrix-react-sdk#12514). Contributed by @t3chguy. * Tooltip: improve accessibility for messages (matrix-org/matrix-react-sdk#12487). Contributed by @florianduros. * Collapse UserSettings tabs to just icons on narrow screens (matrix-org/matrix-react-sdk#12505). Contributed by @dbkr. * Add room topic to right panel room info (matrix-org/matrix-react-sdk#12503). Contributed by @t3chguy. * OIDC: pass `id_token
- Loading branch information
1 parent
6801325
commit 50d7df4
Showing
17 changed files
with
438 additions
and
127 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
7-zip is not actually used during build | ||
|
||
--- vendor/node_modules/builder-util/out/7za.js.orig 2024-05-15 21:11:29.747999000 +0200 | ||
+++ vendor/node_modules/builder-util/out/7za.js 2024-05-15 23:22:09.712045854 +0200 | ||
@@ -4,8 +4,7 @@ exports.getPath7x = exports.getPath7za = | ||
const _7zip_bin_1 = require("7zip-bin"); | ||
const fs_extra_1 = require("fs-extra"); | ||
async function getPath7za() { | ||
- await (0, fs_extra_1.chmod)(_7zip_bin_1.path7za, 0o755); | ||
- return _7zip_bin_1.path7za; | ||
+ return '/bin/false' | ||
} | ||
exports.getPath7za = getPath7za; | ||
async function getPath7x() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Do not make cc emit "static" to cargo, that option is broken (rustc tries to repact LTO objects and corrupts them in the process leading to missing symbols). | ||
Make rustc believe everything foreign is a “dylib”. (It's not, but that makes it pass them to intact to GCC to do the linking) | ||
|
||
--- vendor/.hak/hakModules/matrix-seshat/vendor/cc/src/lib.rs.orig 2024-05-16 18:44:16.828468243 +0200 | ||
+++ vendor/.hak/hakModules/matrix-seshat/vendor/cc/src/lib.rs 2024-05-16 19:04:27.036595422 +0200 | ||
@@ -1100,10 +1100,10 @@ impl Build { | ||
} | ||
|
||
if self.link_lib_modifiers.is_empty() { | ||
- self.print(&format!("cargo:rustc-link-lib=static={}", lib_name)); | ||
+ self.print(&format!("cargo:rustc-link-lib={}", lib_name)); | ||
} else { | ||
let m = self.link_lib_modifiers.join(","); | ||
- self.print(&format!("cargo:rustc-link-lib=static:{}={}", m, lib_name)); | ||
+ self.print(&format!("cargo:rustc-link-lib:{}={}", m, lib_name)); | ||
} | ||
self.print(&format!("cargo:rustc-link-search=native={}", dst.display())); | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/ipfs/bafybeigcyht5yttoeiozrfh35jzdpvckvxl4obrt5tzifp4f6bzj7w5koe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/bin/sh | ||
|
||
exec electron /usr/share/element/app.asar "$@" | ||
exec electron /usr/share/element/app "$@" |
Oops, something went wrong.