7 Commits
Author SHA1 Message Date
dependabot[bot]andyuzu be6cbe484a build(deps): bump golang.org/x/image from 0.44.0 to 0.45.0
Bumps [golang.org/x/image](https://github.com/golang/image) from 0.44.0 to 0.45.0.
- [Commits](https://github.com/golang/image/compare/v0.44.0...v0.45.0)

---
updated-dependencies:
- dependency-name: golang.org/x/image
  dependency-version: 0.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-09-09 22:56:00 +07:00
yuzuandGitHub 71a414d1ca 👷 ci: Rename ci.yml to ci.yaml 2026-07-29 19:45:17 +07:00
yuzuandGitHub 4a43de0a95 👷 ci: Rename dependabot.yml to dependabot.yaml 2026-07-29 19:44:59 +07:00
yuzu 0514931320 📚 docs: bump README image tag to 1.2.0 2026-07-29 19:33:20 +07:00
yuzu 5ff2453f15 🐛 fix: correct glob pattern for semver tag trigger in CI 2026-07-29 19:24:53 +07:00
yuzu 3107a452e6 🔧 chore: drop v prefix from release tags and docker image tags 2026-07-29 18:41:40 +07:00
yuzu e1e6d80ef9 📚 docs: bump README image tag to v1.1.3 2026-07-17 02:14:43 +07:00
6 changed files with 8 additions and 8 deletions
@@ -3,7 +3,7 @@ name: CI
on:
push:
branches: ["**"]
tags: ["v*"]
tags: ["[0-9]*.[0-9]*.[0-9]*"]
pull_request:
permissions:
@@ -51,7 +51,7 @@ jobs:
- name: Determine push conditions
id: should_push
run: |
if [[ "${{ github.event_name }}" == "push" && ( "${{ github.ref }}" == "refs/heads/main" || "${{ github.ref }}" == refs/tags/v* ) ]]; then
if [[ "${{ github.event_name }}" == "push" && ( "${{ github.ref }}" == "refs/heads/main" || "${{ github.ref }}" =~ ^refs/tags/[0-9]+\.[0-9]+\.[0-9]+$ ) ]]; then
echo "push=true" >> "$GITHUB_OUTPUT"
else
echo "push=false" >> "$GITHUB_OUTPUT"
@@ -64,7 +64,7 @@ jobs:
images: ghcr.io/yuzuzensai/trollssh
tags: |
type=raw,value=latest,enable={{is_default_branch}}
type=semver,pattern=v{{version}}
type=semver,pattern={{version}}
type=sha,prefix=sha-,format=short
- name: Log in to GHCR
+1 -1
View File
@@ -25,7 +25,7 @@ Generate a frame set from a video through container image
```sh
docker run --rm -v ./video.mp4:/home/app/video.mp4 -v ./frames:/home/app/frames \
ghcr.io/yuzuzensai/trollssh:v1.1.1 trollssh --generate --video video.mp4 --resolution 512
ghcr.io/yuzuzensai/trollssh:1.2.0 trollssh --generate --video video.mp4 --resolution 512
```
This writes `frames/<name>.tsf`, a simple container of color JPEG frames plus
+1 -1
View File
@@ -1,6 +1,6 @@
services:
trollssh:
image: ghcr.io/yuzuzensai/trollssh:v1.1.1
image: ghcr.io/yuzuzensai/trollssh:v1.1.3
container_name: trollssh
restart: unless-stopped
mem_limit: ${MEMORY_LIMIT:-2g}
+1 -1
View File
@@ -5,7 +5,7 @@ go 1.25.0
require (
github.com/joho/godotenv v1.5.1
golang.org/x/crypto v0.54.0
golang.org/x/image v0.44.0
golang.org/x/image v0.45.0
)
require golang.org/x/sys v0.47.0 // indirect
+2 -2
View File
@@ -2,8 +2,8 @@ github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0=
github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4=
golang.org/x/crypto v0.54.0 h1:YLIA59K4fiNzHzjnZt2tUJQjQtUWfWbeHBqKtk3eScw=
golang.org/x/crypto v0.54.0/go.mod h1:KWL8ny2AZdGR2cWmzeHrp2azQPGogOv+HeQaVEXC2dk=
golang.org/x/image v0.44.0 h1:+tDekMZED9+LrtB3G5xzRggpVh9CARjZqROla3R3R+I=
golang.org/x/image v0.44.0/go.mod h1:V8K3KE9KKKE+pLpQDOeN18w9oacNSvy1tDOirTu4xtY=
golang.org/x/image v0.45.0 h1:FMb1nTbH5H9vF55SriQHgFw5GnNL9Jg6L25BwXKzhB0=
golang.org/x/image v0.45.0/go.mod h1:n62x/7RqlwXDvGsSU4u6IUTUf6KghUZ9Bt7cG/T9Fx4=
golang.org/x/sys v0.47.0 h1:o7XGOvZQCADBQQ4Y7VNq2dRWQR7JmOUW8Kxx4ZsNgWs=
golang.org/x/sys v0.47.0/go.mod h1:4GL1E5IUh+htKOUEOaiffhrAeqysfVGipDYzABqnCmw=
golang.org/x/term v0.45.0 h1:NwWyBmoJCbfTHpxrWoZ9C6/VxOf7ic219I8xZZFdrf0=