Page MenuHomeSolus

D11502.id27825.diff
No OneTemporary

D11502.id27825.diff

diff --git a/abi_symbols b/abi_symbols
--- a/abi_symbols
+++ b/abi_symbols
@@ -3953,6 +3953,7 @@
element-desktop:_ZN2v88internal27OptimizingCompileDispatcher25InstallOptimizedFunctionsEv
element-desktop:_ZN2v88internal27OptimizingCompileDispatcher4StopEv
element-desktop:_ZN2v88internal27OptimizingCompileDispatcher5FlushENS0_16BlockingBehaviorE
+element-desktop:_ZN2v88internal27OptimizingCompileDispatcher7HasJobsEv
element-desktop:_ZN2v88internal27OptimizingCompileDispatcher7UnblockEv
element-desktop:_ZN2v88internal27OptimizingCompileDispatcher9NextInputEPNS0_12LocalIsolateEb
element-desktop:_ZN2v88internal27OptimizingCompileDispatcherD1Ev
diff --git a/files/225.patch b/files/225.patch
deleted file mode 100644
--- a/files/225.patch
+++ /dev/null
@@ -1,102 +0,0 @@
-From 5bbce91e5163f1c697857f2faa66c70abb020b29 Mon Sep 17 00:00:00 2001
-From: David Baker <dave@matrix.org>
-Date: Tue, 6 Jul 2021 19:01:34 +0100
-Subject: [PATCH 1/3] Check target with rustc directly
-
-To avoid depending on rustup (at least when not cross-compiling)
----
- hak/matrix-seshat/check.js | 15 +++++++--------
- 1 file changed, 7 insertions(+), 8 deletions(-)
-
-diff --git a/hak/matrix-seshat/check.js b/hak/matrix-seshat/check.js
-index 4554f5f..5acdf89 100644
---- a/hak/matrix-seshat/check.js
-+++ b/hak/matrix-seshat/check.js
-@@ -15,6 +15,7 @@ limitations under the License.
- */
-
- const childProcess = require('child_process');
-+const fsProm = require('fs').promises;
-
- module.exports = async function(hakEnv, moduleInfo) {
- // of course tcl doesn't have a --version
-@@ -61,17 +62,15 @@ module.exports = async function(hakEnv, moduleInfo) {
- });
- }
-
-- // Ensure Rust target exists
-+ // Ensure Rust target exists (nb. we avoid depending on rustup)
- await new Promise((resolve, reject) => {
-- childProcess.execFile('rustup', ['target', 'list', '--installed'], (err, out) => {
-+ const rustc = childProcess.execFile('rustc', ['--target', hakEnv.getTargetId(), '-o', 'tmp', '-'], (err, out) => {
- if (err) {
-- reject("Can't find rustup");
-+ reject("rustc can't build for target " + hakEnv.getTargetId() + ": ensure the correct toolchain is installed");
- }
-- const target = hakEnv.getTargetId();
-- if (!out.includes(target)) {
-- reject(`Rust target ${target} not installed`);
-- }
-- resolve();
-+ fsProm.unlink('tmp').then(resolve);
- });
-+ rustc.stdin.write('fn main() {}');
-+ rustc.stdin.end();
- });
- };
-
-From b5725da9eae3fe7d7d2df62d15b4b4cb0ed3c8bb Mon Sep 17 00:00:00 2001
-From: David Baker <dave@matrix.org>
-Date: Tue, 6 Jul 2021 19:06:58 +0100
-Subject: [PATCH 2/3] lint
-
----
- hak/matrix-seshat/check.js | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/hak/matrix-seshat/check.js b/hak/matrix-seshat/check.js
-index 5acdf89..7ccbd8f 100644
---- a/hak/matrix-seshat/check.js
-+++ b/hak/matrix-seshat/check.js
-@@ -64,9 +64,14 @@ module.exports = async function(hakEnv, moduleInfo) {
-
- // Ensure Rust target exists (nb. we avoid depending on rustup)
- await new Promise((resolve, reject) => {
-- const rustc = childProcess.execFile('rustc', ['--target', hakEnv.getTargetId(), '-o', 'tmp', '-'], (err, out) => {
-+ const rustc = childProcess.execFile('rustc', [
-+ '--target', hakEnv.getTargetId(), '-o', 'tmp', '-',
-+ ], (err, out) => {
- if (err) {
-- reject("rustc can't build for target " + hakEnv.getTargetId() + ": ensure the correct toolchain is installed");
-+ reject(
-+ "rustc can't build for target " + hakEnv.getTargetId() +
-+ ": ensure the correct toolchain is installed",
-+ );
- }
- fsProm.unlink('tmp').then(resolve);
- });
-
-From 9913b0ff78ffa25feee2ae862f6a81408ff388dc Mon Sep 17 00:00:00 2001
-From: David Baker <dbkr@users.noreply.github.com>
-Date: Wed, 7 Jul 2021 10:58:54 +0100
-Subject: [PATCH 3/3] Fix confused toolchain / target naming
-
-Co-authored-by: J. Ryan Stinnett <jryans@gmail.com>
----
- hak/matrix-seshat/check.js | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/hak/matrix-seshat/check.js b/hak/matrix-seshat/check.js
-index 7ccbd8f..b2a6afc 100644
---- a/hak/matrix-seshat/check.js
-+++ b/hak/matrix-seshat/check.js
-@@ -70,7 +70,8 @@ module.exports = async function(hakEnv, moduleInfo) {
- if (err) {
- reject(
- "rustc can't build for target " + hakEnv.getTargetId() +
-- ": ensure the correct toolchain is installed",
-+ ": ensure target is installed via `rustup target add " + hakEnv.getTargetId() + "` " +
-+ "or your package manager if not using `rustup`",
- );
- }
- fsProm.unlink('tmp').then(resolve);
diff --git a/package.yml b/package.yml
--- a/package.yml
+++ b/package.yml
@@ -1,10 +1,10 @@
name : element
-version : 1.7.32
-release : 94
+version : 1.7.33
+release : 95
homepage : https://element.io/
source :
- - git|https://github.com/vector-im/element-desktop.git : v1.7.32
- - git|https://github.com/vector-im/element-web.git : v1.7.32
+ - git|https://github.com/vector-im/element-desktop.git : v1.7.33
+ - git|https://github.com/vector-im/element-web.git : v1.7.33
license : Apache-2.0
component : network.im
networking : yes
@@ -36,9 +36,6 @@
- libsecret
- sqlcipher
setup : |
- # Remove rustup dependency
- patch -p1 < $pkgfiles/225.patch
-
# Copy element-web to the build directory
cp -a $sources/element-web.git element-web
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
--- a/pspec_x86_64.xml
+++ b/pspec_x86_64.xml
@@ -91,85 +91,85 @@
<Path fileType="data">/usr/share/element/resources/app.asar</Path>
<Path fileType="data">/usr/share/element/resources/img/element.ico</Path>
<Path fileType="data">/usr/share/element/resources/img/element.png</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/0.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/0.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/1.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/1.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/2.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/2.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/26.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/26.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/27.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/27.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/28.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/28.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/29.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/29.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/3.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/3.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/30.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/30.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/31.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/31.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/32.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/32.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/4.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/4.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/5.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/5.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/6.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/6.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/7.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/7.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/bundle.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/bundle.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/bundle.js.LICENSE.txt</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/bundle.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/compatibility-view.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/compatibility-view.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/compatibility-view.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/element-web-app.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/element-web-app.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/element-web-component-index.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/element-web-component-index.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/error-view.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/error-view.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/error-view.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/indexeddb-worker.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/indexeddb-worker.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/init.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/init.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/jitsi.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/jitsi.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/jitsi.js.LICENSE.txt</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/jitsi.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/mobileguide.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/mobileguide.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/recorder-worklet.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/recorder-worklet.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark-custom.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark-custom.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark-custom.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-dark.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy-dark.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy-dark.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy-dark.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-legacy.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light-custom.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light-custom.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light-custom.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light.css</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/theme-light.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/usercontent.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/usercontent.js.map</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/vendors~init.js</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/vendors~init.js.LICENSE.txt</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/bundles/5d39250bca1b2b0ea598/vendors~init.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/0.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/0.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/1.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/1.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/2.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/2.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/26.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/26.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/27.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/27.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/28.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/28.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/29.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/29.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/3.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/3.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/30.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/30.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/31.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/31.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/32.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/32.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/4.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/4.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/5.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/5.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/6.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/6.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/7.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/7.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/bundle.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/bundle.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/bundle.js.LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/bundle.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/compatibility-view.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/compatibility-view.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/compatibility-view.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/element-web-app.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/element-web-app.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/element-web-component-index.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/element-web-component-index.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/error-view.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/error-view.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/error-view.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/indexeddb-worker.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/indexeddb-worker.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/init.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/init.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/jitsi.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/jitsi.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/jitsi.js.LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/jitsi.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/mobileguide.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/mobileguide.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/recorder-worklet.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/recorder-worklet.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark-custom.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark-custom.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark-custom.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-dark.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy-dark.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy-dark.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy-dark.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-legacy.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light-custom.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light-custom.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light-custom.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light.css</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/theme-light.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/usercontent.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/usercontent.js.map</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/vendors~init.js</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/vendors~init.js.LICENSE.txt</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/bundles/cea6b75aebee93d5a084/vendors~init.js.map</Path>
<Path fileType="data">/usr/share/element/resources/webapp/config.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/contribute.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/decoder-ring/datatypes.js</Path>
@@ -264,50 +264,50 @@
<Path fileType="data">/usr/share/element/resources/webapp/fonts/Twemoji_Mozilla/TwemojiMozilla-sbix.fb38407.woff2</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/bg.c999396.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/ca.62d1864.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/cs.b4acbe1.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/cs.288715d.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/da.a884aa6.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/de_DE.f4f4afe.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/de_DE.4e7c435.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/el.eb3a015.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/en_EN.606dfaf.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/en_EN.042cdca.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/en_US.31486ca.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/eo.796db87.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/es.dc8ade4.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/et.70c415a.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/es.29d81a3.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/et.4c223bc.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/eu.54010ec.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/fi.d826ba6.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/fr.e4621d5.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/gl.3ba6622.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/he.041ab0d.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/fr.5f135da.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/gl.6027303.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/he.66689d9.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/hi.4294014.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/hu.5beba99.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/hu.ee28a2e.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/is.a558ff9.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/it.bac2699.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/ja.390d875.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/it.5c70fd9.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/ja.ec746fd.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/jbo.bf20f59.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/kab.913e74c.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/ko.b51c4ce.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/languages.61edf5b.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/languages.7aef263.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/languages.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/lt.979a720.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/lt.9042385.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/lv.67da507.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/nb_NO.6826bdb.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/nl.277e2a4.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/nl.e05f2a0.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/nn.a20b64c.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/pl.7dda26e.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/pl.3696f7f.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/pt.93ac199.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/pt_BR.752e2a9.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/pt_BR.598afff.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/ru.3429243.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/sk.792e13f.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/sq.70c7074.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/sq.b23e538.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/sr.f26c281.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/sv.37f98fd.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/sv.6b91139.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/te.3234605.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/th.d9649f0.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/tr.4882839.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/uk.f84f21c.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/tr.ba0836c.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/uk.21d1b46.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/i18n/vls.7fb88b2.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/zh_Hans.e54f903.json</Path>
- <Path fileType="data">/usr/share/element/resources/webapp/i18n/zh_Hant.6c2aa63.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/zh_Hans.8dbef42.json</Path>
+ <Path fileType="data">/usr/share/element/resources/webapp/i18n/zh_Hant.3d18846.json</Path>
<Path fileType="data">/usr/share/element/resources/webapp/img/betas/spaces.475c2e5.png</Path>
<Path fileType="data">/usr/share/element/resources/webapp/img/camera.2f271b6.svg</Path>
<Path fileType="data">/usr/share/element/resources/webapp/img/cancel-small.495f44c.svg</Path>
@@ -614,12 +614,12 @@
</Replaces>
</Package>
<History>
- <Update release="94">
- <Date>2021-07-10</Date>
- <Version>1.7.32</Version>
+ <Update release="95">
+ <Date>2021-07-21</Date>
+ <Version>1.7.33</Version>
<Comment>Packaging update</Comment>
<Name>Silke Hofstra</Name>
<Email>silke@slxh.eu</Email>
</Update>
</History>
</PISI>
\ No newline at end of file

File Metadata

Mime Type
text/plain
Expires
Fri, Aug 11, 8:05 PM (2 h, 50 m ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5853979
Default Alt Text
D11502.id27825.diff (32 KB)

Event Timeline