omnish 1.5.0 → 1.5.2
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 +30 -0
- package/config.example.json +7 -8
- package/dist/index.js +303 -259
- package/package.json +24 -14
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,36 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.6.1] - 2026-05-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- CI: `/dlv`-style forced video without yt-dlp reports missing tools (test no longer assumes auto-classify hits video path).
|
|
15
|
+
|
|
16
|
+
[1.6.1]: https://github.com/labKnowledge/omnish/compare/v1.6.0...v1.6.1
|
|
17
|
+
|
|
18
|
+
## [1.6.0] - 2026-05-23
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- **Smart `/dl` routing:** auto-detect file (HTTP), video (yt-dlp probe across ~1000 site extractors), or HTML→markdown; `/dlf` forces file, `/dlv` forces video.
|
|
23
|
+
- **`sendPeerMedia`:** background `/dl` / `/tr` / `/edit` jobs deliver files and text back to chat when `mediaSendFiles` is true.
|
|
24
|
+
|
|
25
|
+
### Changed
|
|
26
|
+
|
|
27
|
+
- **Lone URLs:** `mediaUrlAutoDl` defaults to on and runs before free shell (`!!start`).
|
|
28
|
+
- **Download paths:** flat saves under `~/Downloads/Omnish`, session cwd with `/receive here`, or `mediaOutputDir` — no dated `.omnish-media` subfolders.
|
|
29
|
+
|
|
30
|
+
[1.6.0]: https://github.com/labKnowledge/omnish/compare/v1.5.1...v1.6.0
|
|
31
|
+
|
|
32
|
+
## [1.5.1] - 2026-05-23
|
|
33
|
+
|
|
34
|
+
### Added
|
|
35
|
+
|
|
36
|
+
- **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`.
|
|
37
|
+
|
|
38
|
+
[1.5.1]: https://github.com/labKnowledge/omnish/compare/v1.5.0...v1.5.1
|
|
39
|
+
|
|
10
40
|
## [1.5.0] - 2026-05-22
|
|
11
41
|
|
|
12
42
|
### 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": true,
|
|
62
|
+
"mediaInstallFromChat": false,
|
|
63
|
+
"mediaOutputDir": "",
|
|
64
|
+
"mediaMaxBytes": 0,
|
|
65
|
+
"mediaWhisperModel": "small",
|
|
66
|
+
"progressUpdates": true,
|
|
68
67
|
"pullYtDlpPath": "",
|
|
69
68
|
"pullFfmpegPath": "",
|
|
70
69
|
"pullWhisperPath": ""
|