Compare commits

...

3 Commits

Author SHA1 Message Date
Gitea Actions
375669f657 chore: bump sidecar version to 1.0.5 [skip ci] 2026-04-08 00:43:01 +00:00
Gitea Actions
c8b11fb0ad chore: bump version to 2.0.6 [skip ci] 2026-04-08 00:37:28 +00:00
Developer
273a926f03 Fix YAML parse error: use block scalar for echo with colons
All checks were successful
Tests / Python Backend Tests (push) Successful in 5s
Tests / Frontend Tests (push) Successful in 7s
Tests / Rust Sidecar Tests (push) Successful in 2m7s
Gitea's YAML parser treats `echo "text: value"` as a mapping when
on a single `run:` line. Using block scalar (`run: |`) avoids this.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 17:21:42 -07:00
10 changed files with 18 additions and 12 deletions

View File

@@ -16,7 +16,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building for tag: ${RELEASE_TAG}" run: |
echo "Building for tag: ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View File

@@ -16,7 +16,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building for tag: ${RELEASE_TAG}" run: |
echo "Building for tag: ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View File

@@ -16,7 +16,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" run: |
echo "Building cloud sidecar for tag ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:
@@ -164,7 +165,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building cloud sidecar for tag ${RELEASE_TAG}" run: |
echo "Building cloud sidecar for tag ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View File

@@ -16,7 +16,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building for tag: ${RELEASE_TAG}" run: |
echo "Building for tag: ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View File

@@ -16,7 +16,8 @@ jobs:
RELEASE_TAG: "${{ inputs.tag }}" RELEASE_TAG: "${{ inputs.tag }}"
steps: steps:
- name: Show tag - name: Show tag
run: echo "Building for tag: ${RELEASE_TAG}" run: |
echo "Building for tag: ${RELEASE_TAG}"
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with: with:

View File

@@ -1,7 +1,7 @@
{ {
"name": "local-transcription", "name": "local-transcription",
"private": true, "private": true,
"version": "2.0.5", "version": "2.0.6",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "local-transcription" name = "local-transcription"
version = "1.0.4" version = "1.0.5"
description = "A standalone desktop application for real-time speech-to-text transcription using Whisper models" description = "A standalone desktop application for real-time speech-to-text transcription using Whisper models"
readme = "README.md" readme = "README.md"
requires-python = ">=3.9" requires-python = ">=3.9"

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "local-transcription" name = "local-transcription"
version = "2.0.5" version = "2.0.6"
description = "Real-time speech-to-text transcription for streamers" description = "Real-time speech-to-text transcription for streamers"
authors = ["Local Transcription Contributors"] authors = ["Local Transcription Contributors"]
edition = "2021" edition = "2021"

View File

@@ -1,6 +1,6 @@
{ {
"productName": "Local Transcription", "productName": "Local Transcription",
"version": "2.0.5", "version": "2.0.6",
"identifier": "net.anhonesthost.local-transcription", "identifier": "net.anhonesthost.local-transcription",
"build": { "build": {
"frontendDist": "../dist", "frontendDist": "../dist",

View File

@@ -1,7 +1,7 @@
"""Version information for Local Transcription.""" """Version information for Local Transcription."""
__version__ = "2.0.5" __version__ = "2.0.6"
__version_info__ = (2, 0, 5) __version_info__ = (2, 0, 6)
# Version history: # Version history:
# 1.4.0 - Auto-update feature: # 1.4.0 - Auto-update feature: