diff --git a/tdesktop-4.12.2-full.tar.gz b/tdesktop-4.12.2-full.tar.gz deleted file mode 100644 index 2e10a8c..0000000 --- a/tdesktop-4.12.2-full.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:7e9e51ae9c40d5b8c964bcfe0e252e35980c6668327934d2270144405c519914 -size 67796891 diff --git a/tdesktop-4.14.1-full.tar.gz b/tdesktop-4.14.1-full.tar.gz new file mode 100644 index 0000000..b2c08dd --- /dev/null +++ b/tdesktop-4.14.1-full.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18a2b606c9cf63defdf3809db6c111ce00b7880f6b92b8cb8848a71f4583af8e +size 67924653 diff --git a/telegram-desktop.changes b/telegram-desktop.changes index 266cdf2..3cc8b84 100644 --- a/telegram-desktop.changes +++ b/telegram-desktop.changes @@ -1,3 +1,31 @@ +------------------------------------------------------------------- +Tue Jan 2 12:25:48 UTC 2024 - Manfred Hollstein + +- Updated to version 4.14.1 + * Fix crash in "Author Hidden" chat in "Saved Messages". + * Improve jump-to-original button layout in "Saved Messages". + * Show my own chat as "My Notes" in "Saved Messages". + * In screen sharing source window select first screen by default. + +- Updated to version 4.14.0 + * Improved saved messages. + * One-time voice messages. + +- Add new script tg_owt-packager.sh for updating tg_owt-master.zip +- Update tg_owt-master.zip to commit afd9d5d31798d3eacf9ed6c30601e91d0f1e4d60 + +------------------------------------------------------------------- +Tue Dec 26 08:42:39 UTC 2023 - Manfred Hollstein + +- Updated to version 4.13.1 + * Fix crash in chat history right click. + * Fix user emoji status display in main menu, profile and settings. + +- Updated to version 4.13.0 + * Support setting channel wallpaper. + * Support setting channel emoji status. + * Allow gifting premium to several recipients at once. + ------------------------------------------------------------------- Sun Dec 3 14:34:27 UTC 2023 - Manfred Hollstein diff --git a/telegram-desktop.spec b/telegram-desktop.spec index d8fd7e5..31795a1 100644 --- a/telegram-desktop.spec +++ b/telegram-desktop.spec @@ -1,7 +1,7 @@ # # spec file for package telegram-desktop # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -34,7 +34,7 @@ %define qt_major_version 6 Name: telegram-desktop -Version: 4.12.2 +Version: 4.14.1 Release: 0 Summary: Messaging application with a focus on speed and security License: GPL-3.0-only @@ -43,8 +43,11 @@ URL: https://github.com/telegramdesktop/tdesktop Source0: https://github.com/telegramdesktop/tdesktop/releases/download/v%{version}/tdesktop-%{version}-full.tar.gz # Use tg_owt-packager.py to prepare tg_owt-master.zip # Usage: python tg_owt-packager.py --repo-dir $PWD/tg_owt-master +# Or use tg_owt-packager.sh to prepare tg_owt-master.zip +# Usage: bash tg_owt-packager.sh Source1: tg_owt-packager.py -Source2: tg_owt-master.zip +Source2: tg_owt-packager.sh +Source3: tg_owt-master.zip %if 0%{?suse_version} > 01500 # PATCH-FIX-OPENSUSE Patch1: 0001-use-bundled-webrtc.patch @@ -230,7 +233,7 @@ mv ../rnnoise-git20210122 ../Libraries/rnnoise %endif cd ../ -unzip -q %{SOURCE2} +unzip -q %{SOURCE3} mv tg_owt-master Libraries/tg_owt %build diff --git a/tg_owt-master.zip b/tg_owt-master.zip index e688372..42e9d6a 100644 --- a/tg_owt-master.zip +++ b/tg_owt-master.zip @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8216af2e92c0e35ff7d22ff68ccac71378481fe92068349009c6504bd80090c3 -size 25189247 +oid sha256:975b988e57e4f7a9007e64ffaedb9db74fbf5cb1bf0cac0c00cdc073560e3f33 +size 25189388 diff --git a/tg_owt-packager.sh b/tg_owt-packager.sh new file mode 100644 index 0000000..3718189 --- /dev/null +++ b/tg_owt-packager.sh @@ -0,0 +1,22 @@ +#! /bin/bash + +# tg_owt origin +# get it from https://github.com/telegramdesktop/tdesktop/blob/dev/Telegram/build/docker/centos_env/Dockerfile around line 823 +tg_owt_origin="afd9d5d31798d3eacf9ed6c30601e91d0f1e4d60" + +rm -rf tg_owt \ + && mkdir tg_owt \ + && cd tg_owt \ + && git init tg_owt \ + && cd tg_owt \ + && git remote add origin https://github.com/desktop-app/tg_owt.git \ + && git fetch --depth=1 origin "$tg_owt_origin" \ + && git reset --hard FETCH_HEAD \ + && git submodule update --init --recursive --depth=1 \ + && rm -rf .git \ + && cd .. \ + && mv tg_owt tg_owt-master \ + && zip tg_owt-master.zip -r tg_owt-master -x '*.git*' \ + && mv tg_owt-master.zip .. + +cd ..; rm -rf tg_owt