Skip to content

Commit 25c6806

Browse files
authored
Merge pull request #659 from damongolding/task/release
Task/release
2 parents 302bc5f + 76d2d28 commit 25c6806

8 files changed

Lines changed: 72 additions & 62 deletions

File tree

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
33
"formatter": {
44
"enabled": true,
55
"indentStyle": "space",

frontend/biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"extends": "//",
3-
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
3+
"$schema": "https://biomejs.dev/schemas/2.3.14/schema.json",
44
"vcs": {
55
"enabled": true,
66
"clientKind": "git",

frontend/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
"node": "22.17.0"
2020
},
2121
"devDependencies": {
22-
"@biomejs/biome": "2.3.13",
23-
"autoprefixer": "^10.4.23",
22+
"@biomejs/biome": "2.3.14",
23+
"autoprefixer": "^10.4.24",
2424
"choices.js": "^11.1.0",
2525
"date-fns": "^4.1.0",
2626
"dompurify": "^3.3.1",

frontend/pnpm-lock.yaml

Lines changed: 59 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/google/go-querystring v1.2.0
1515
github.com/google/uuid v1.6.0
1616
github.com/klauspost/compress v1.18.3
17-
github.com/labstack/echo/v5 v5.0.1
17+
github.com/labstack/echo/v5 v5.0.2
1818
github.com/mcuadros/go-defaults v1.2.0
1919
github.com/nicksnyder/go-i18n/v2 v2.6.1
2020
github.com/oapi-codegen/runtime v1.1.2

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -186,6 +186,8 @@ github.com/labstack/echo/v5 v5.0.0 h1:JHKGrI0cbNsNMyKvranuY0C94O4hSM7yc/HtwcV3Na
186186
github.com/labstack/echo/v5 v5.0.0/go.mod h1:SyvlSdObGjRXeQfCCXW/sybkZdOOQZBmpKF0bvALaeo=
187187
github.com/labstack/echo/v5 v5.0.1 h1:60L7x1KMWRIJuaFqvnEHH322g+YnsMWq5Rzaeo6lcP4=
188188
github.com/labstack/echo/v5 v5.0.1/go.mod h1:SyvlSdObGjRXeQfCCXW/sybkZdOOQZBmpKF0bvALaeo=
189+
github.com/labstack/echo/v5 v5.0.2 h1:DwPe1Rla27Zf3QxbW+DxhPKRIbKHHTgHQyaLJC2gE3s=
190+
github.com/labstack/echo/v5 v5.0.2/go.mod h1:SyvlSdObGjRXeQfCCXW/sybkZdOOQZBmpKF0bvALaeo=
189191
github.com/lucasb-eyer/go-colorful v1.3.0 h1:2/yBRLdWBZKrf7gB40FoiKfAWYQ0lqNcbuQwVHXptag=
190192
github.com/lucasb-eyer/go-colorful v1.3.0/go.mod h1:R4dSotOR9KMtayYi1e77YzuveK+i7ruzyGqttikkLy0=
191193
github.com/mailru/easyjson v0.9.1 h1:LbtsOm5WAswyWbvTEOqhypdPeZzHavpZx96/n553mR8=

internal/immich/immich_helpers.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,11 @@ func (a *Asset) ImagePreview() ([]byte, string, error) {
381381
Scheme: u.Scheme,
382382
Host: u.Host,
383383
Path: path.Join("api", "assets", a.ID, assetSize),
384-
RawQuery: "size=preview&edited=true",
384+
RawQuery: "size=preview",
385+
}
386+
387+
if !a.requestConfig.UseOriginalImage {
388+
apiURL.RawQuery += "&edited=true"
385389
}
386390

387391
return a.immichAPICall(a.ctx, http.MethodGet, apiURL.String(), nil)

taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
version: "3"
22
env:
3-
VERSION: 0.32.0-beta.2
3+
VERSION: 0.32.1
44

55
includes:
66
frontend:

0 commit comments

Comments
 (0)