Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev #2701

Merged
merged 23 commits into from
Sep 4, 2023
Merged

Dev #2701

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
05cea0a
Add Transmissionic Web UI & New Documentation (#2589)
apsoyka Apr 19, 2023
ea70117
Added step to build a .deb file to install and reduce image size (#2590)
pkishino Apr 19, 2023
30d070d
Check for update-port script existing instead of being executable (#2…
gapple Apr 22, 2023
2bd89d7
Fixed TWC paths (#2600)
pkishino Apr 29, 2023
3efaf14
add docker build caching to workflow (#2609)
ksurl May 9, 2023
2169498
Privoxy eth0 fixes, healthcheck comparison tweak and start.sh update …
heavygee May 11, 2023
9123cf0
Strip double quotes from umask check (#2601)
pkishino May 11, 2023
82756d6
Fix problem with enabled UFW with Random Ports (#2603)
WitchRecipe May 11, 2023
32833c4
move vpn config download to /config (#2592)
ksurl May 17, 2023
1644c98
use alpine:latest for TransmissionUIs build stage (#2573)
Entepotenz May 17, 2023
42eb2ee
Update fetch-external-configs.sh
pkishino May 19, 2023
91f6973
Update to transmission 4.0.4
pkishino Aug 28, 2023
3ac3e14
Update configure-openvpn.sh
pkishino Aug 30, 2023
9dd0e41
Switched the order of events, to remove the ipv6 before sed-ing the a…
heavygee Sep 1, 2023
fffb29d
Create separate image for transmission build from source (#2691)
ksurl Sep 2, 2023
5468a99
parallel docker builds with matrix (#2694)
ksurl Sep 2, 2023
fb7d10d
Merge branch 'master' into dev
pkishino Sep 3, 2023
553edc8
Update Dockerfile
pkishino Sep 4, 2023
75147a2
`TRANSMISSION_RPC_URL` option causes a moved permanently error when u…
Aemulation Sep 4, 2023
17bc7e1
Fix for PR #2691 (#2698)
ksurl Sep 4, 2023
36a1b4a
Fix #2694 image build (#2699)
ksurl Sep 4, 2023
59dfed2
fix transmission version check (#2700)
ksurl Sep 4, 2023
019be3e
Merge branch 'master' into dev
pkishino Sep 4, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/check-transmission-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

- name: Check for new version of Transmission
run: |
LATEST_VERSION=$(curl -L https://api.github.com/repos/transmission/transmission/releases/latest | grep tag_name | sed -e 's/:\|,\|"//g' | awk '{print $2}')
LATEST_VERSION=$(curl -L https://api.github.com/repos/transmission/transmission/releases/latest | grep tag_name | awk '{print $2}' | sed -e 's/"//g' -e 's/,//')
CURRENT_VERSION=$(cat upstream/transmission-version.txt)
if [ "$LATEST_VERSION" != "$CURRENT_VERSION" ]; then
echo "$LATEST_VERSION" > upstream/transmission-version.txt
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docker-image-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
strategy:
fail-fast: false
matrix:
image-name:
- haugene/transmission-openvpn
- haugene/transmission-openvpn-proxy
- haugene/transmission-rss
include:
- image-name: haugene/transmission-openvpn
context: ./
Expand Down