Skip to content

Commit

Permalink
net-im/telegram-desktop: update 4.15.2 -> 4.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
osokin committed Apr 5, 2024
1 parent 4993dbe commit 28e248a
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 58 deletions.
@@ -0,0 +1,11 @@
--- Telegram/SourceFiles/iv/iv_data.cpp.orig 2024-04-03 14:15:01 UTC
+++ Telegram/SourceFiles/iv/iv_data.cpp
@@ -25,7 +25,7 @@ QByteArray GeoPointId(Geo point) {
const auto lon = int(point.lon * 1000000);
const auto combined = (std::uint64_t(std::uint32_t(lat)) << 32)
| std::uint64_t(std::uint32_t(lon));
- return QByteArray::number(combined)
+ return QByteArray::number(quint64(combined))
+ ','
+ QByteArray::number(point.access);
}

This file was deleted.

@@ -1,10 +1,11 @@
--- Telegram/SourceFiles/platform/linux/specific_linux.cpp.orig 2024-03-08 21:33:12 UTC
--- Telegram/SourceFiles/platform/linux/specific_linux.cpp.orig 2024-04-05 17:15:54 UTC
+++ Telegram/SourceFiles/platform/linux/specific_linux.cpp
@@ -55,6 +55,7 @@ https://github.com/telegramdesktop/tdesktop/blob/maste
namespace {
@@ -510,7 +510,7 @@ QString SingleInstanceLocalServerName(const QString &h

#if QT_VERSION < QT_VERSION_CHECK(6, 5, 0)
std::optional<bool> IsDarkMode() {
- const auto result = base::Platform::XDP::ReadSetting(
+ auto result = base::Platform::XDP::ReadSetting(
"org.freedesktop.appearance",
"color-scheme");

using namespace gi::repository;
+namespace GObject = gi::repository::GObject;
namespace Gio = gi::repository::Gio;
using namespace Platform;
using Platform::internal::WaylandIntegration;

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit 28e248a

Please sign in to comment.