nheko: update to 0.7.2.
This commit is contained in:
parent
886a49a90a
commit
9245ab5377
2 changed files with 3 additions and 17 deletions
|
@ -1,14 +0,0 @@
|
|||
Reason: Fix double percent encoding of invites
|
||||
Upstream: Taken from upstream commit https://github.com/Nheko-Reborn/nheko/commit/d94ac8
|
||||
--- src/ChatPage.cpp.orig
|
||||
+++ src/ChatPage.cpp
|
||||
@@ -1015,8 +1015,7 @@
|
||||
void
|
||||
ChatPage::joinRoom(const QString &room)
|
||||
{
|
||||
- // Percent escape the room ID
|
||||
- const auto room_id = QUrl::toPercentEncoding(room).toStdString();
|
||||
+ const auto room_id = room.toStdString();
|
||||
|
||||
http::client()->join_room(
|
||||
room_id, [this, room_id](const nlohmann::json &, mtx::http::RequestErr err) {
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'nheko'
|
||||
pkgname=nheko
|
||||
version=0.7.1
|
||||
revision=3
|
||||
version=0.7.2
|
||||
revision=1
|
||||
build_style=cmake
|
||||
hostmakedepends="qt5-host-tools qt5-qmake pkg-config qt5-declarative"
|
||||
makedepends="qt5-multimedia-devel qt5-svg-devel qt5-tools-devel
|
||||
|
@ -15,7 +15,7 @@ license="GPL-3.0-or-later"
|
|||
homepage="https://github.com/Nheko-Reborn/nheko"
|
||||
changelog="https://github.com/Nheko-Reborn/nheko/blob/master/CHANGELOG.md"
|
||||
distfiles="https://github.com/Nheko-Reborn/nheko/archive/v${version}.tar.gz"
|
||||
checksum=ce7ddacbf54707c7e76a816ffca51d73bb6360a38a96807666e3ddeeab8fccf4
|
||||
checksum=412908fcec0e66a0557db5359556b65e85dd22b8644a6a2ed569a90dea4bde3c
|
||||
|
||||
# this one is very memory hungry and can use as much as 3GB per cc1plus
|
||||
# realistically, using any more than 8 jobs will easily lead to OOM
|
||||
|
|
Loading…
Reference in a new issue