-
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.79 / rev 66 via SR 1205715
https://build.opensuse.org/request/show/1205715 by user dheidler + anag+factory - Version 1.11.79 * No changes ## ✨ Features * element-hq/matrix-react-sdk#106). Contributed by @RiotRobot. - Fix build on 15.6 with old python3.6 * Patch: no-walrus-operator.patch - Fix home dir for osc in prepare.sh - Version 1.11.78 ## ✨ Features * Add Release announcement for the pinning message list (element-hq/matrix-react-sdk#46). Contributed by @florianduros. * Unlabs feature pinning (element-hq/matrix-react-sdk#22). Contributed by @florianduros. * Add mobile registration (element-hq/matrix-react-sdk#42). Contributed by @langleyd. * Add support for `org.matrix.cross_signing_reset` UIA stage flow (element-hq/matrix-react-sdk#34). Contributed by
- Loading branch information
1 parent
023019a
commit 699d2a6
Showing
9 changed files
with
105 additions
and
3 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 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/bafybeifjl4zembkwq6q7hslalylq6xfe2rh7xzywk6yjw6trvmriil2mem |
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,46 @@ | ||
------------------------------------------------------------------- | ||
Wed Oct 2 12:43:45 UTC 2024 - Dominik Heidler <[email protected]> | ||
|
||
- Version 1.11.79 | ||
* No changes | ||
|
||
## ✨ Features | ||
|
||
* https://github.com/element-hq/matrix-react-sdk/pull/106). Contributed by @RiotRobot. | ||
|
||
------------------------------------------------------------------- | ||
Thu Sep 26 21:00:37 UTC 2024 - Dominik Heidler <[email protected]> | ||
|
||
- Fix build on 15.6 with old python3.6 | ||
* Patch: no-walrus-operator.patch | ||
|
||
------------------------------------------------------------------- | ||
Thu Sep 26 11:47:13 UTC 2024 - Dominik Heidler <[email protected]> | ||
|
||
- Fix home dir for osc in prepare.sh | ||
|
||
------------------------------------------------------------------- | ||
Thu Sep 26 11:02:53 UTC 2024 - Dominik Heidler <[email protected]> | ||
|
||
- Version 1.11.78 | ||
## ✨ Features | ||
|
||
* Add Release announcement for the pinning message list (https://github.com/element-hq/matrix-react-sdk/pull/46). Contributed by @florianduros. | ||
* Unlabs feature pinning (https://github.com/element-hq/matrix-react-sdk/pull/22). Contributed by @florianduros. | ||
* Add mobile registration (https://github.com/element-hq/matrix-react-sdk/pull/42). Contributed by @langleyd. | ||
* Add support for `org.matrix.cross_signing_reset` UIA stage flow (https://github.com/element-hq/matrix-react-sdk/pull/34). Contributed by @t3chguy. | ||
* Add timezone to user profile (https://github.com/element-hq/matrix-react-sdk/pull/20). Contributed by @Half-Shot. | ||
* Add config option to force verification (https://github.com/element-hq/matrix-react-sdk/pull/29). Contributed by @dbkr. | ||
* Reduce pinned message banner size (https://github.com/element-hq/matrix-react-sdk/pull/28). Contributed by @florianduros. | ||
* Enable message pinning labs by default (https://github.com/element-hq/matrix-react-sdk/pull/25). Contributed by @florianduros. | ||
* Remove release announcement of the new header (https://github.com/element-hq/matrix-react-sdk/pull/23). Contributed by @florianduros. | ||
|
||
## 🐛 Bug Fixes | ||
|
||
* Fix timeout type (https://github.com/element-hq/matrix-react-sdk/pull/40). Contributed by @dbkr. | ||
* Fix huge usage bandwidth and performance issue of pinned message banner. (https://github.com/element-hq/matrix-react-sdk/pull/37). Contributed by @florianduros. | ||
* Reverse order of pinned message list (https://github.com/element-hq/matrix-react-sdk/pull/19). Contributed by @florianduros. | ||
|
||
------------------------------------------------------------------- | ||
Wed Sep 11 10:58:18 UTC 2024 - Dominik Heidler <[email protected]> | ||
|
||
|
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,24 @@ | ||
--- foo/node_modules/node-gyp/gyp/pylib/gyp/common.py 2024-09-26 12:47:30.529999000 +0200 | ||
+++ ./common.py 2024-09-26 22:52:44.247875969 +0200 | ||
@@ -432,13 +432,17 @@ | ||
def replace_sep(s): | ||
return s.replace(os.sep, "/") if os.sep != "/" else s | ||
|
||
- if CC := os.environ.get("CC_target") or os.environ.get("CC"): | ||
+ CC = os.environ.get("CC_target") or os.environ.get("CC") | ||
+ CXX = os.environ.get("CXX_target") or os.environ.get("CXX") | ||
+ CFLAGS = os.environ.get("CFLAGS") | ||
+ CXXFLAGS = os.environ.get("CXXFLAGS") | ||
+ if CC: | ||
cmd += shlex.split(replace_sep(CC)) | ||
- if CFLAGS := os.environ.get("CFLAGS"): | ||
+ if CFLAGS: | ||
cmd += shlex.split(replace_sep(CFLAGS)) | ||
- elif CXX := os.environ.get("CXX_target") or os.environ.get("CXX"): | ||
+ elif CXX: | ||
cmd += shlex.split(replace_sep(CXX)) | ||
- if CXXFLAGS := os.environ.get("CXXFLAGS"): | ||
+ if CXXFLAGS: | ||
cmd += shlex.split(replace_sep(CXXFLAGS)) | ||
else: | ||
return {} |
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 +1 @@ | ||
/ipfs/bafybeihe5itvsh3eqpdepvjqigibtf4sanugozheiypr7md3qqfsikj4mm | ||
/ipfs/bafybeicomx44ngugf2huj7ellywonevyymrfooj435msbc7do77hbsebk4 |