Replies: 7 comments 27 replies
|
Hey! The PRs (#2991, #2997) fix some Flood UI issues, but I don't think they will fix what @emk2203 is reporting. Because Ubuntu 24.04 is LTS it wont receive newer versions of Transmission via apt, and updating Flood won't give us a newer version of Transmission. So we'll still be at 4.0.5? I've previously favored stability over bleeding edge but when 4.0.5 is being blacklisted by trackers, we need to find a middle ground I think. Proposal: merge the outstanding dev changes into master (minus a debug flag), include the Flood fix, then figure out which Ubuntu base image gets us to an acceptable Transmission version. I think we might need to upgrade to 26.04 to get 4.1.1 🤔 It's not released yet, will be out in 6 weeks? We could maybe test a pre-release on the dev branch in the meantime... |
|
Briefly tested with the Console into container and run: sed -i 's/noble/resolute/g' /etc/apt/sources.list.d/ubuntu.sources
apt update
apt install -y transmission-daemonRestart container. You're now running Transmission v4.1.1 on Ubuntu 24.04. @haugene this is definitely untested, but in terms of incorporating it into the Dockerfile, if you don't want to be on the bleeding edge: -RUN apt-get update && apt-get install -y \
- dumb-init transmission-daemon openvpn privoxy \
- tzdata dnsutils iputils-ping ufw iproute2 \
- openssh-client git jq curl wget unrar unzip bc \
- && rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* \
- && useradd -u 911 -U -d /config -s /bin/false abc \
- && usermod -G users abc
+RUN apt-get update && apt-get install -y \
+ dumb-init openvpn privoxy \
+ tzdata dnsutils iputils-ping ufw iproute2 \
+ openssh-client git jq curl wget unrar unzip bc \
+ && sed -i 's/noble/resolute/g' /etc/apt/sources.list.d/ubuntu.sources \
+ && apt-get update && apt-get install -y transmission-daemon \
+ && rm -rf /tmp/* /var/tmp/* /var/lib/apt/lists/* \
+ && useradd -u 911 -U -d /config -s /bin/false abc \
+ && usermod -G users abcYou could also revert |
|
Pulled the dev version with |
|
Now with 26.04 released, can the upgrade be taken into consideration again, please? I'd like to take advantage of the Transmission improvements. |
|
Transmission 4.1.1 is now blacklisted almost everywhere, but 4.1.2 and 4.1.3 are out with the bug highlighted as fixed in 4.1.2. Is it possible to update the dev branch with 4.1.3 ? |
|
I've now pushed a change that builds the :dev image from the common Ubuntu+Transmission base image suggested here: haugene/transmission-base#1 Anyone up for testing it? Seems to run fine on my machine. If this seems to be a good fix then I'll merge the transmission base image PR, get a proper release there (to not depend on a dev image of the base) and then we can merge it here and get Ubuntu 26.04 and Transmission 4.1.3 on the latest release. |
Uh oh!
There was an error while loading. Please reload this page.
I get more and more errors with: "Tracker returned a warning: blacklisted client, update or change client".
A new image with the current 4.1.1 Transmission version would be helpful.
All reactions