omnish 1.5.1 → 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 +22 -0
- package/config.example.json +1 -1
- package/dist/index.js +281 -260
- package/package.json +24 -14
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ 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
|
+
|
|
10
32
|
## [1.5.1] - 2026-05-23
|
|
11
33
|
|
|
12
34
|
### Added
|
package/config.example.json
CHANGED