Skip to content

Commit 03f5fc3

Browse files
committed
v2.30.1
121d9ab: command not found in shell 7de6bc4: update to alpine 3.20
1 parent df3c175 commit 03f5fc3

38 files changed

Lines changed: 1373 additions & 362 deletions

β€Ž.github/workflows/pre-release.ymlβ€Ž

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- uses: actions/checkout@v4
4242
- uses: actions/setup-go@v5
4343
with:
44-
go-version: 1.22.2
44+
go-version: 1.23.0
4545
- run: make lint-backend
4646
shell: bash
4747
lint:
@@ -66,7 +66,7 @@ jobs:
6666
- uses: actions/checkout@v4
6767
- uses: actions/setup-go@v5
6868
with:
69-
go-version: 1.22.2
69+
go-version: 1.23.0
7070
- run: make test-backend
7171
shell: bash
7272
test:
@@ -97,7 +97,7 @@ jobs:
9797
- uses: actions/checkout@v4
9898
- uses: actions/setup-go@v5
9999
with:
100-
go-version: 1.22.2
100+
go-version: 1.23.0
101101
- run: make build-backend
102102
shell: bash
103103

β€Ž.github/workflows/release.ymlβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
fetch-depth: 0
9494
- uses: actions/setup-go@v5
9595
with:
96-
go-version: 1.22.2
96+
go-version: 1.23.0
9797
- uses: actions/setup-node@v4
9898
with:
9999
node-version: '18'

β€Ž.tx/configβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[main]
22
host = https://www.transifex.com
3-
lang_map = pt_BR: pt-br, zh_CN: zh-cn, zh_HK: zh-hk, zh_TW: zh-tw, nl_BE: nl-be, sv_SE: sv-se
3+
lang_map = pt_BR: pt-br, zh_CN: zh-cn, zh_HK: zh-hk, zh_TW: zh-tw, nl_BE: nl-be, sv_SE: sv-se, cz-CS: cz_cs
44

55
[file-browser.file-browser]
66
file_filter = frontend/src/i18n/<lang>.json

β€ŽDockerfile.s6β€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
1+
FROM ghcr.io/linuxserver/baseimage-alpine:3.20
22

33
RUN apk --update add ca-certificates \
44
mailcap \

β€ŽDockerfile.s6.aarch64β€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
1+
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20
22

33
RUN apk --update add ca-certificates \
44
mailcap \

β€Ždocker/root/etc/cont-init.d/20-configβ€Ž

100644100755
File mode changed.

β€Ždocker/root/etc/services.d/filebrowser/runβ€Ž

100644100755
File mode changed.

β€Žfiles/mime.goβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -597,6 +597,7 @@ var types = map[string]string{
597597
".m3u8": "application/x-mpegURL",
598598
".mpd": "application/dash+xml",
599599
".webp": "image/webp",
600+
".epub": "application/epub+zip",
600601
}
601602

602603
//nolint:gochecknoinits

0 commit comments

Comments
Β (0)