Compare commits
3 Commits
c7445206cc
...
7c8c74d04d
| Author | SHA1 | Date | |
|---|---|---|---|
| 7c8c74d04d | |||
| addd87c45b | |||
| bb9ac53ae5 |
3
.gitignore
vendored
3
.gitignore
vendored
@ -21,6 +21,9 @@ htmlcov/
|
|||||||
.idea/
|
.idea/
|
||||||
.cursor/
|
.cursor/
|
||||||
|
|
||||||
|
# Submodules (can be cloned separately if needed)
|
||||||
|
CutScript/
|
||||||
|
|
||||||
# OS files
|
# OS files
|
||||||
.env
|
.env
|
||||||
.env.local
|
.env.local
|
||||||
|
|||||||
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,3 +1 @@
|
|||||||
[submodule "CutScript"]
|
|
||||||
path = CutScript
|
|
||||||
url = https://github.com/DataAnts-AI/CutScript.git
|
|
||||||
|
|||||||
Submodule CutScript deleted from e5c47e31b3
@ -166,7 +166,7 @@ export default function App() {
|
|||||||
<select
|
<select
|
||||||
value={whisperModel}
|
value={whisperModel}
|
||||||
onChange={(e) => setWhisperModel(e.target.value)}
|
onChange={(e) => setWhisperModel(e.target.value)}
|
||||||
className="px-3 py-1.5 bg-editor-surface border border-editor-border rounded-lg text-xs text-white focus:outline-none focus:border-editor-accent"
|
className="px-3 py-1.5 bg-editor-surface border border-editor-border rounded-lg text-xs text-black focus:outline-none focus:border-editor-accent"
|
||||||
>
|
>
|
||||||
<optgroup label="Multilingual (any language)">
|
<optgroup label="Multilingual (any language)">
|
||||||
<option value="tiny">tiny — ~75 MB · fastest, low accuracy</option>
|
<option value="tiny">tiny — ~75 MB · fastest, low accuracy</option>
|
||||||
|
|||||||
@ -1,11 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# To run CutScript in dev mode:
|
|
||||||
# 1. In a separate terminal, run:
|
|
||||||
# cd CutScript/frontend
|
|
||||||
# npm install # only needed once
|
|
||||||
# npm run dev -- --host
|
|
||||||
# 2. Then run this script to launch Electron:
|
|
||||||
# ./open-cutscript.sh
|
|
||||||
|
|
||||||
cd "$(dirname "$0")/CutScript"
|
|
||||||
npx electron .
|
|
||||||
Reference in New Issue
Block a user