omnish 1.5.0 → 1.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/config.example.json +7 -8
- package/dist/index.js +287 -264
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.5.1] - 2026-05-23
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Direct file `/dl`:** URLs whose path ends with a known file extension (`.pdf`, `.zip`, images, audio, office docs, etc.) download over HTTP with streaming `fetch` — no yt-dlp/ffmpeg required. Extensionless streaming pages (e.g. YouTube) still use yt-dlp. Lone URLs with `mediaUrlAutoDl` pick the path automatically inside `/dl`.
|
|
15
|
+
|
|
16
|
+
[1.5.1]: https://github.com/labKnowledge/omnish/compare/v1.5.0...v1.5.1
|
|
17
|
+
|
|
10
18
|
## [1.5.0] - 2026-05-22
|
|
11
19
|
|
|
12
20
|
### Added
|
package/config.example.json
CHANGED
|
@@ -57,14 +57,13 @@
|
|
|
57
57
|
"watchDebounceMs": 2000,
|
|
58
58
|
"watchMaxEventsPerMinute": 30,
|
|
59
59
|
"watchAutoRestore": true,
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"pullWhisperModel": "small",
|
|
60
|
+
"mediaSendFiles": true,
|
|
61
|
+
"mediaUrlAutoDl": false,
|
|
62
|
+
"mediaInstallFromChat": false,
|
|
63
|
+
"mediaOutputDir": "",
|
|
64
|
+
"mediaMaxBytes": 0,
|
|
65
|
+
"mediaWhisperModel": "small",
|
|
66
|
+
"progressUpdates": true,
|
|
68
67
|
"pullYtDlpPath": "",
|
|
69
68
|
"pullFfmpegPath": "",
|
|
70
69
|
"pullWhisperPath": ""
|