diff --git a/adguardhome/Makefile b/adguardhome/Makefile index b2f38117d..c12a891b0 100644 --- a/adguardhome/Makefile +++ b/adguardhome/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=adguardhome PKG_VERSION:=0.107.21 -PKG_RELEASE:=76 +PKG_RELEASE:=77 PKG_SOURCE_PROTO:=git PKG_SOURCE_VERSION:=a11c8e91ab5b1b7a3445ebb288f5721beaf3bfa2 diff --git a/qBittorrent-Enhanced-Edition/Makefile b/qBittorrent-Enhanced-Edition/Makefile index 95c45c2b0..93d4cc4f3 100644 --- a/qBittorrent-Enhanced-Edition/Makefile +++ b/qBittorrent-Enhanced-Edition/Makefile @@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=qBittorrent-Enhanced-Edition -PKG_VERSION:=4.4.3.12 +PKG_VERSION:=4.5.0.10 PKG_RELEASE=1 PKG_SOURCE:=$(PKG_NAME)-release-$(PKG_VERSION).tar.gz diff --git a/qBittorrent-Enhanced-Edition/patches/100-use-original-user-agent.patch b/qBittorrent-Enhanced-Edition/patches/100-use-original-user-agent.patch index 770b02181..37838d10b 100644 --- a/qBittorrent-Enhanced-Edition/patches/100-use-original-user-agent.patch +++ b/qBittorrent-Enhanced-Edition/patches/100-use-original-user-agent.patch @@ -1,11 +1,21 @@ ---- a/src/base/bittorrent/session.cpp -+++ b/src/base/bittorrent/session.cpp -@@ -116,7 +116,7 @@ const QString CATEGORIES_FILE_NAME {QStr +--- a/src/base/version.h.in ++++ b/src/base/version.h.in +@@ -31,7 +31,7 @@ + #define QBT_VERSION_MAJOR 4 + #define QBT_VERSION_MINOR 4 + #define QBT_VERSION_BUGFIX 5 +-#define QBT_VERSION_BUILD 10 ++#define QBT_VERSION_BUILD 0 + #define QBT_VERSION_STATUS "" // Should be empty for stable releases! + +--- a/src/base/bittorrent/sessionimpl.cpp ++++ b/src/base/bittorrent/sessionimpl.cpp +@@ -122,7 +122,7 @@ const int STATISTICS_SAVE_INTERVAL = std::chrono::milliseconds(15min).count(); namespace { const char PEER_ID[] = "qB"; -- const char USER_AGENT[] = "qBittorrent Enhanced/" QBT_VERSION_2; -+ const char USER_AGENT[] = "qBittorrent/" QBT_VERSION_2; +- const auto USER_AGENT = QStringLiteral("qBittorrent Enhanced/" QBT_VERSION_2); ++ const auto USER_AGENT = QStringLiteral("qBittorrent/" QBT_VERSION_2); void torrentQueuePositionUp(const lt::torrent_handle &handle) {