forked from pool/telegram-desktop
Accepting request 1136214 from server:messaging
OBS-URL: https://build.opensuse.org/request/show/1136214 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/telegram-desktop?expand=0&rev=105
This commit is contained in:
commit
75d5949a9b
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:7e9e51ae9c40d5b8c964bcfe0e252e35980c6668327934d2270144405c519914
|
||||
size 67796891
|
3
tdesktop-4.14.1-full.tar.gz
Normal file
3
tdesktop-4.14.1-full.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:18a2b606c9cf63defdf3809db6c111ce00b7880f6b92b8cb8848a71f4583af8e
|
||||
size 67924653
|
@ -1,3 +1,31 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 2 12:25:48 UTC 2024 - Manfred Hollstein <manfred.h@gmx.net>
|
||||
|
||||
- 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 <manfred.h@gmx.net>
|
||||
|
||||
- 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 <manfred.h@gmx.net>
|
||||
|
||||
|
@ -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
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:8216af2e92c0e35ff7d22ff68ccac71378481fe92068349009c6504bd80090c3
|
||||
size 25189247
|
||||
oid sha256:975b988e57e4f7a9007e64ffaedb9db74fbf5cb1bf0cac0c00cdc073560e3f33
|
||||
size 25189388
|
||||
|
22
tg_owt-packager.sh
Normal file
22
tg_owt-packager.sh
Normal file
@ -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
|
Loading…
Reference in New Issue
Block a user