From 4216ad05af5e51dc7760e33f62bd54cb75f5fe70 Mon Sep 17 00:00:00 2001 From: Daniel Golle Date: Fri, 8 May 2026 18:50:24 +0100 Subject: [PATCH] transmission: update to 4.1.1 Bug-fix release. Fixes 20+ bugs and includes some performance improvements. All users are encouraged to upgrade. Highlights (all platforms): * Fixed a 4.1.0 bug that failed to report some filesystem errors to RPC clients querying free space. * Fixed a 4.1.0 bug that kept a torrent's updated queue position from being shown. * Fixed a 4.1.0 bug that caused torrents' queuing order to sometimes be lost between sessions. * Hardened .torrent parsing by exiting sooner if 'pieces' has an invalid size. * Reverted a 4.1.0 RPC change that broke some 3rd party code by returning floats rather than integers for speed limit fields. * Fixed crash when pausing a torrent and editing its tracker list at the same time. * Fixed 4.1.0 crash on arm32 by switching crc32 libraries to Mark Adler's crcany. * Require UTF-8 filenames in .torrent files (per BitTorrent spec). * Fixed crash when parsing a .torrent file with a bad 'pieces' key. * Fixed potential fd leak when launching scripts on POSIX systems. * Changed network traffic algorithm to spread bandwidth more evenly amongst peers. Link: https://github.com/transmission/transmission/releases/tag/4.1.1 Signed-off-by: Daniel Golle --- net/transmission/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/net/transmission/Makefile b/net/transmission/Makefile index ff8bda4769..40c8ab2c29 100644 --- a/net/transmission/Makefile +++ b/net/transmission/Makefile @@ -8,12 +8,12 @@ include $(TOPDIR)/rules.mk PKG_NAME:=transmission -PKG_VERSION:=4.1.0 +PKG_VERSION:=4.1.1 PKG_RELEASE:=1 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz PKG_SOURCE_URL:=https://github.com/transmission/transmission/releases/download/$(PKG_VERSION)/ -PKG_HASH:=dcd28c1c9e6126229c4c17dbc9e95c9fd4aed7e76f4a1f2a74604c8cddec49d6 +PKG_HASH:=e743283ee03a42c4d0b08fed2bd52b554aa6c9f65b4d4d45b795c32d98762a79 PKG_MAINTAINER:=Daniel Golle PKG_LICENSE:=GPL-2.0-or-later