Skip to content
Open
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
3 changes: 2 additions & 1 deletion .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
custom: https://invidious.io/donate/
github: [tiekoettercom]
custom: ["https://www.tiekoetter.com/donate/", "https://invidious.io/donate/"]
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN --mount=type=cache,target=/root/.cache/crystal if [[ "${release}" == 1 ]] ;
--link-flags "-lxml2 -llzma"; \
fi

FROM alpine:3.21
FROM alpine:3.22
RUN apk add --no-cache rsvg-convert ttf-opensans tini tzdata
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
Expand Down
4 changes: 2 additions & 2 deletions docker/Dockerfile.arm64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine:3.21 AS builder
FROM alpine:3.22 AS builder
RUN apk add --no-cache 'crystal=1.14.0-r0' shards sqlite-static yaml-static yaml-dev libxml2-static \
zlib-static openssl-libs-static openssl-dev musl-dev xz-static

Expand Down Expand Up @@ -33,7 +33,7 @@ RUN --mount=type=cache,target=/root/.cache/crystal if [[ "${release}" == 1 ]] ;
--link-flags "-lxml2 -llzma"; \
fi

FROM alpine:3.21
FROM alpine:3.22
RUN apk add --no-cache rsvg-convert ttf-opensans tini tzdata
WORKDIR /invidious
RUN addgroup -g 1000 -S invidious && \
Expand Down
14 changes: 13 additions & 1 deletion src/invidious/views/template.ecr
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,21 @@
</div>

<div class="pure-u-1 pure-u-md-1-3">
<span>
<i class="icon ion-ios-apps"></i>
<a href="https://www.tiekoetter.com/services">Services</a>
</span>
<span>
<i class="icon ion-ios-menu"></i>
<a href="https://forum.tiekoetter.com">Forum</a>
</span>
<span>
<i class="icon ion-ios-wallet"></i>
<a href="https://www.tiekoetter.com/donate"><%= translate(locale, "footer_donate_page") %> @ Tiekoetter.com</a>
</span>
<span>
<i class="icon ion-ios-wallet"></i>
<a href="https://invidious.io/donate/"><%= translate(locale, "footer_donate_page") %></a>
<a href="https://invidious.io/donate/"><%= translate(locale, "footer_donate_page") %> @ Invidious.io</a>
</span>
<span><%= translate(locale, "Current version: ") %> <%= CURRENT_VERSION %>-<%= CURRENT_COMMIT %> @ <%= CURRENT_BRANCH %></span>
</div>
Expand Down