Skip to content

Update: filebrowser v2.32.0 #681

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

Merged
merged 3 commits into from
Mar 20, 2025
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
12 changes: 6 additions & 6 deletions Apps/FileBrowser/appfile.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
"developer": {
"name": "File Browser",
"website": "https://filebrowser.org/",
"donate_text": "",
"donate_text": "",
"donate_link": ""
},
"adaptor": {
"name": "CasaOS Team",
"website": "https://www.casaos.io",
"donate_text": "",
"donate_text": "",
"donate_link": ""
},
"support": "https://discord.gg/knqAbbBbeX",
"website": "https://www.casaos.io",
"container": {
"image": "filebrowser/filebrowser:latest",
"image": "filebrowser/filebrowser:v2.32.0",
"shell": "sh",
"privileged": false,
"network_model": "bridge",
Expand Down Expand Up @@ -72,12 +72,12 @@
],
"volumes": [
{
"container": "/db",
"host": "/DATA/AppData/$AppID/db",
"container": "/data",
"host": "/DATA/AppData/$AppID",
"mode": "rw",
"allocation": "automatic",
"configurable": "no",
"description": "FileBrowser database directory."
"description": "FileBrowser database & configuration directory."
},
{
"container": "/srv",
Expand Down
20 changes: 20 additions & 0 deletions Apps/FileBrowser/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
2.32.0 (2025-01-31)
Fixes
Fix eslint warnings (#3698) (0201f9c)
Fix user creation on proxy auth (#3666) (5300d00)
disk usage refreshing (#3692) (bbdd313)
add proper healthcheck for S6 containers (#3691) (045064f)
prompts disappearing on copy / move / upload (#3537) (d1c84a8)
create user on proxy authentication if user does not exist (#3569) (209acf2)
Build
fix go releaser (ba797cd)
bump golang.org/x/net from 0.23.0 to 0.33.0 (#3712) (1194cfe)
bump golang.org/x/crypto from 0.26.0 to 0.31.0 (#3634) (e92dbb4)
bump cross-spawn from 7.0.3 to 7.0.6 in /tools (#3601) (25372ed)
update to node 22 and pnpm (#3616) (d51a343)
bump vue-i18n from 9.10.2 to 9.14.2 in /frontend (#3618) (0659594)
bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 (#3574) (2fdea73)
Other
update ko.json (#3688) (252f0a7)
add translation for the "Hide dot files setting" in "es" (Spanish) language (#3704) (cc33138)

2.20.1 (2021-12-21)
Build
revert to using the default alpine based docker image (46d8046)
Expand Down
13 changes: 7 additions & 6 deletions Apps/FileBrowser/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ services:
PGID: $PGID
PUID: $PUID
TZ: $TZ
image: filebrowser/filebrowser:v2.23.0
image: filebrowser/filebrowser:v2.32.0
deploy:
resources:
reservations:
Expand All @@ -18,11 +18,12 @@ services:
restart: unless-stopped
volumes:
- type: bind
source: /DATA/AppData/$AppID/db
target: /db
source: /DATA/AppData/$AppID
target: /data
- type: bind
source: /DATA
target: /srv
entrypoint: ["/filebrowser", "-c", "/data/.filebrowser.json", "-d", "/data/database.db", "-a", "0.0.0.0", "-p", "80"]
x-casaos:
envs:
- container: TZ
Expand All @@ -44,10 +45,10 @@ services:
zh_cn: WebUI端口

volumes:
- container: /db
- container: /data
description:
en_us: FileBrowser database directory.
zh_cn: FileBrowser数据库目录
en_us: FileBrowser database & configuration directory.
zh_cn: FileBrowser数据库和配置目录。
- container: /srv
description:
en_us: FileBrowser managed directory.
Expand Down