Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion transmission/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version: "3.7"

services:
Expand All @@ -7,14 +7,14 @@
APP_PORT: 9091

server:
image: linuxserver/transmission:4.1.0@sha256:0bd8f5b39f2a2f61dc35a07d60d80e6eb73e3382f7be0280c879e36237c52d90
image: linuxserver/transmission:4.1.1@sha256:d2183a00bbd5dbb083b14dcd65419379bfd91e0965b52849642354ec3d246452
environment:
- PUID=1000
- PGID=1000
volumes:
- ${APP_DATA_DIR}/data/config:/config
- ${UMBREL_ROOT}/data/storage/downloads:/downloads
ports:

Check notice on line 17 in transmission/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "51413:51413/udp"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).

Check notice on line 17 in transmission/docker-compose.yml

View workflow job for this annotation

GitHub Actions / Lint apps

External port mapping "51413:51413"

Port mappings may be unnecessary for the app to function correctly. Docker's internal DNS resolves container names to IP addresses within the same network. External access to the web interface is handled by the app_proxy container. Port mappings are only needed if external access is required to a port not proxied by the app_proxy, or if an app needs to expose multiple ports for its functionality (e.g., DHCP, DNS, P2P, etc.).
- 51413:51413
- 51413:51413/udp
restart: on-failure
Expand Down
24 changes: 13 additions & 11 deletions transmission/umbrel-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ manifestVersion: 1
id: transmission
category: networking
name: Transmission
version: "4.1.0"
version: "4.1.1"
tagline: A fast, easy and free BitTorrent client
description: >-
Transmission is designed for easy, powerful use. We've set the defaults to just work and it only takes a few clicks to configure advanced features like watch directories, bad peer blocklists, and the web interface. When Ubuntu chose Transmission as its default BitTorrent client, one of the most-cited reasons was its easy learning curve.
Expand Down Expand Up @@ -33,16 +33,18 @@ defaultUsername: ""
defaultPassword: ""
torOnly: false
releaseNotes: >-
This major release includes significant improvements and new features:
- Improved download performance for Β΅TP connections
- Added support for IPv6 and dual-stack UDP trackers
- New JSON-RPC 2.0 compliant API
- Optional sequential downloading for media streaming
- Better CPU and memory efficiency throughout
- Separate port checks for IPv4 and IPv6
- Enhanced web client with drag-and-drop torrent support
- Better handling of disk errors and file verification
- Support for using proxy servers for web connections
This bugfix release fixes 20+ bugs and includes performance improvements:
- Fixed torrents' queuing order sometimes being lost between sessions
- Fixed crash when pausing a torrent and editing its tracker list at the same time
- Fixed crash on arm32 devices
- Fixed RPC change that broke some third-party clients by returning wrong number types for speed limit fields
- Fixed laggy user interface when bandwidth usage is high
- Improved network traffic algorithm to spread bandwidth more evenly amongst peers
- Fixed broken icons in the torrent list on Windows
- Fixed magnet links not being addable from the "Add URL" dialog on GTK
- Fixed keyboard shortcuts broken when built with GTK3
- Fixed wrong encryption mode shown in GTK Preferences dialog
- Reverted web client change that merged "Remove torrent" and "Trash torrent" confirmation dialogs


Full release notes are available at https://github.com/transmission/transmission/releases
Expand Down