Compare commits
3 Commits
v1.4.4
...
sidecar-v1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b4b9435317 | ||
|
|
ee1d4f8643 | ||
|
|
4a186d1de6 |
@@ -152,7 +152,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
rm -rf dist/local-transcription-backend build/
|
rm -rf dist/local-transcription-backend build/
|
||||||
uv pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu --force-reinstall
|
uv pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu --force-reinstall
|
||||||
uv run pyinstaller local-transcription-headless.spec
|
# Run pyinstaller directly from venv to prevent uv run from
|
||||||
|
# re-resolving torch back to the CUDA version via pyproject.toml sources
|
||||||
|
.venv/bin/pyinstaller local-transcription-headless.spec
|
||||||
|
|
||||||
- name: Package sidecar (CPU)
|
- name: Package sidecar (CPU)
|
||||||
run: |
|
run: |
|
||||||
@@ -268,7 +270,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
Remove-Item -Recurse -Force dist\local-transcription-backend, build -ErrorAction SilentlyContinue
|
Remove-Item -Recurse -Force dist\local-transcription-backend, build -ErrorAction SilentlyContinue
|
||||||
uv pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu --force-reinstall
|
uv pip install torch torchaudio --index-url https://download.pytorch.org/whl/cpu --force-reinstall
|
||||||
uv run pyinstaller local-transcription-headless.spec
|
# Run pyinstaller directly from venv to prevent uv run from
|
||||||
|
# re-resolving torch back to the CUDA version via pyproject.toml sources
|
||||||
|
.venv\Scripts\pyinstaller.exe local-transcription-headless.spec
|
||||||
|
|
||||||
- name: Package sidecar (CPU)
|
- name: Package sidecar (CPU)
|
||||||
shell: powershell
|
shell: powershell
|
||||||
@@ -370,10 +374,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
# UV_NO_SOURCES bypasses pyproject.toml's [tool.uv.sources] which forces
|
# UV_NO_SOURCES bypasses pyproject.toml's [tool.uv.sources] which forces
|
||||||
# torch from the CUDA index (no macOS ARM wheels there).
|
# torch from the CUDA index (no macOS ARM wheels there).
|
||||||
# Applies to both uv sync AND uv run (which re-resolves).
|
|
||||||
# Default PyPI torch includes MPS (Apple Silicon GPU) support.
|
# Default PyPI torch includes MPS (Apple Silicon GPU) support.
|
||||||
uv sync
|
uv sync
|
||||||
uv run pyinstaller local-transcription-headless.spec
|
.venv/bin/pyinstaller local-transcription-headless.spec
|
||||||
|
|
||||||
- name: Package sidecar (CPU)
|
- name: Package sidecar (CPU)
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "local-transcription",
|
"name": "local-transcription",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "1.4.4",
|
"version": "1.4.5",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite dev",
|
"dev": "vite dev",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "local-transcription"
|
name = "local-transcription"
|
||||||
version = "1.0.2"
|
version = "1.0.3"
|
||||||
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"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "local-transcription"
|
name = "local-transcription"
|
||||||
version = "1.4.4"
|
version = "1.4.5"
|
||||||
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"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"productName": "Local Transcription",
|
"productName": "Local Transcription",
|
||||||
"version": "1.4.4",
|
"version": "1.4.5",
|
||||||
"identifier": "net.anhonesthost.local-transcription",
|
"identifier": "net.anhonesthost.local-transcription",
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../dist",
|
"frontendDist": "../dist",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
"""Version information for Local Transcription."""
|
"""Version information for Local Transcription."""
|
||||||
|
|
||||||
__version__ = "1.4.4"
|
__version__ = "1.4.5"
|
||||||
__version_info__ = (1, 4, 4)
|
__version_info__ = (1, 0, 3)
|
||||||
|
|
||||||
# Version history:
|
# Version history:
|
||||||
# 1.4.0 - Auto-update feature:
|
# 1.4.0 - Auto-update feature:
|
||||||
|
|||||||
Reference in New Issue
Block a user