Skip to content

Commit f3ad934

Browse files
authored
Merge pull request #20 from TranscribeJs/dev
Dev
2 parents b9f75de + 49750ca commit f3ad934

File tree

16 files changed

+981
-663
lines changed

16 files changed

+981
-663
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ node_modules/
1111
/packages/transcriber/src/**/*
1212
/packages/shout/src/**/*
1313
!.gitkeep
14-
deploy-example-files.sh
14+
deploy-example-files.sh
15+
/log/

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [3.0.1] - 2025-12-08
4+
5+
### Fixed
6+
7+
- compatibility in privileged environments, eg. Chrome extension issue [#18](https://github.com/TranscribeJs/transcribe.js/issues/18)
8+
9+
### Changed
10+
11+
- Refactored WASM C++ bindings to remove all uses of `eval`/`emscripten_run_script` for compatibility with `DYNAMIC_EXECUTION=0` (CSP/Lockdown mode safe)
12+
- updated whisper.cpp to v1.8.2
13+
- updated dev dependencies
14+
- removed old (now unused) worker files
15+
316
## [3.0.0] - 2025-05-16
417

518
### Breaking

examples/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<script type="module">
1717
import { simd } from "./lib/simd.js";
18-
import { default as createModuleSimd } from "../src/shout/shout.wasm.js?v1.0.6";
19-
import { default as createModuleNoSimd } from "../src/shout/shout.wasm_no-simd.js?v1.0.6";
18+
import { default as createModuleSimd } from "../src/shout/shout.wasm.js?v1.0.7";
19+
import { default as createModuleNoSimd } from "../src/shout/shout.wasm_no-simd.js?v1.0.7";
2020
import { FileTranscriber } from "../src/index.js?v3.0.0";
2121

2222
(async function () {

examples/stream.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
<script type="module">
1717
import { simd } from "./lib/simd.js";
18-
import { default as createModuleSimd } from "../src/shout/shout.wasm.js?v1.0.6";
19-
import { default as createModuleNoSimd } from "../src/shout/shout.wasm_no-simd.js?v1.0.6";
18+
import { default as createModuleSimd } from "../src/shout/shout.wasm.js?v1.0.7";
19+
import { default as createModuleNoSimd } from "../src/shout/shout.wasm_no-simd.js?v1.0.7";
2020
import { StreamTranscriber } from "../src/index.js?v3.0.0";
2121

2222
(async function () {

0 commit comments

Comments
 (0)