Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
04f6de7
feat: Implement API album display with password protection and expira…
aviv926 Nov 30, 2025
d316da9
Update clock.templ
damongolding Dec 1, 2025
688370d
deps
damongolding Dec 1, 2025
f02a32d
deps
damongolding Dec 1, 2025
97d8350
version bump
damongolding Dec 1, 2025
64f26c0
feat: Add image background blur to zoom and super zoom image effects
mikemulhearn Nov 26, 2025
79e8703
skipBlurHelper
damongolding Nov 26, 2025
13bb50f
simplify
damongolding Nov 26, 2025
c0f0255
docs
damongolding Nov 26, 2025
ef998af
add weather api secret
damongolding Dec 3, 2025
c46440d
Update internal/config/config_validation.go
damongolding Dec 3, 2025
bd8cd13
typo
damongolding Dec 3, 2025
540b5d2
extends cache expiry when longer then the default 5 min
damongolding Dec 2, 2025
93ef2a0
Update cache.go
damongolding Dec 2, 2025
b0199aa
fix unit mismatch 🙈
damongolding Dec 2, 2025
0dc210c
Update cache.go
damongolding Dec 2, 2025
e78ee10
0 and neg check
damongolding Dec 2, 2025
41aaf93
Create cache_test.go
damongolding Dec 3, 2025
4bfd3d8
better test
damongolding Dec 3, 2025
cf01e86
init
damongolding Dec 1, 2025
15a4adc
more i18n
damongolding Dec 1, 2025
faedaaa
fixes
damongolding Dec 1, 2025
bdde845
reorder
damongolding Dec 2, 2025
60c397e
add missing locales (in english)
damongolding Dec 2, 2025
dd3bf4c
AI translations
damongolding Dec 2, 2025
a2af4b9
go bump && lint
damongolding Dec 3, 2025
a5b4c8f
rabbit
damongolding Dec 3, 2025
08e35f5
Update views_about.templ
damongolding Dec 3, 2025
be51966
mroe i18n
damongolding Dec 4, 2025
5b6f441
Update en.toml
damongolding Dec 4, 2025
73145df
docker platform build
damongolding Dec 4, 2025
b8a6133
pinning alpine
damongolding Dec 4, 2025
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
4 changes: 2 additions & 2 deletions .zed/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"JavaScript": {
"formatter": {
"external": {
"command": "biome",
"command": "./frontend/node_modules/.bin/biome",
"arguments": [
"check",
"--stdin-file-path",
Expand All @@ -20,7 +20,7 @@
"TypeScript": {
"formatter": {
"external": {
"command": "biome",
"command": "./frontend/node_modules/.bin/biome",
"arguments": [
"check",
"--stdin-file-path",
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
RUN pnpm css && pnpm js && pnpm url-builder

# Go Builder
FROM --platform=$BUILDPLATFORM golang:1.25.4-alpine AS build
FROM --platform=$BUILDPLATFORM golang:1.25.5-bookworm AS build

ARG VERSION=demo
ARG TARGETOS
Expand All @@ -35,7 +35,7 @@ RUN go tool templ generate
RUN CGO_ENABLED=0 GOOS=$TARGETOS GOARCH=$TARGETARCH go build -a -installsuffix cgo -ldflags "-X main.version=${VERSION}" -o dist/kiosk .

# Release
FROM alpine:latest
FROM alpine:3.22.2

ENV TZ=Europe/London

Expand Down
2 changes: 1 addition & 1 deletion biome.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
"formatter": {
"enabled": true,
"indentStyle": "space",
Expand Down
1 change: 1 addition & 0 deletions config.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ kiosk:
fetched_assets_size: 1000
http_timeout: 20
password: ""
api_albums_password: "" # password to protect access to API albums selection
cache: true # cache select api calls
prefetch: true # fetch assets in the background
asset_weighting: true # use weighting when picking assets
5 changes: 4 additions & 1 deletion config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@
"type": "boolean"
}
},
"required": ["name", "lat", "lon", "api"]
"required": ["name", "lat", "lon"]
}
},
"webhooks": {
Expand Down Expand Up @@ -482,6 +482,9 @@
"required": ["name", "url"]
}
},
"api_albums_password": {
"type": "string"
},
"demo_mode": {
"type": "boolean"
}
Expand Down
2 changes: 1 addition & 1 deletion frontend/biome.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": "//",
"$schema": "https://biomejs.dev/schemas/2.3.4/schema.json",
"$schema": "https://biomejs.dev/schemas/2.3.8/schema.json",
"vcs": {
"enabled": true,
"clientKind": "git",
Expand Down
6 changes: 3 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"node": "22.17.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.4",
"autoprefixer": "^10.4.21",
"@biomejs/biome": "2.3.8",
"autoprefixer": "^10.4.22",
"choices.js": "^11.1.0",
"date-fns": "^4.1.0",
"dompurify": "^3.3.0",
Expand All @@ -38,5 +38,5 @@
"not op_mini all",
"not IE 11"
],
"packageManager": "pnpm@10.22.0"
"packageManager": "pnpm@10.24.0"
}
Loading