metanova 0.2.1 → 0.2.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 +17 -0
- package/README.md +7 -0
- package/dist/index.cjs +502 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +502 -61
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## v0.2.2
|
|
4
|
+
|
|
5
|
+
Release date: 2026-06-05
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Improved Reddit image extraction quality by filtering tiny thumbnails, community chrome, avatar/icon/award/emoji assets, and unrelated page preview media.
|
|
10
|
+
- Improved Reddit media prioritization so gallery images, `preview.redd.it`, and `i.redd.it` media are preferred over external previews and thumbnail hosts.
|
|
11
|
+
- Improved TikTok post extraction by using the real video detail payload when available and rejecting generic TikTok Shop/navigation template titles.
|
|
12
|
+
- Kept normalized media collections (`images`, `videos`, `audio`, and `favicons`) present as arrays even when empty.
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Fixed multi-image Reddit posts returning only social preview images instead of ordered gallery media.
|
|
17
|
+
- Fixed successful old.reddit fallback diagnostics so blocked Reddit JSON attempts are reported as informational fallback trace entries instead of warnings.
|
|
18
|
+
- Fixed preview card handling so a valid `bestImage` is always available to consumers even when image candidate arrays are empty.
|
|
19
|
+
|
|
3
20
|
## v0.2.1
|
|
4
21
|
|
|
5
22
|
Release date: 2026-06-04
|
package/README.md
CHANGED
|
@@ -3,6 +3,13 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/metanova)
|
|
4
4
|
[](https://www.npmjs.com/package/metanova)
|
|
5
5
|
[](https://www.typescriptlang.org/)
|
|
6
|
+
[](https://meta-nova-explorer.vercel.app/)
|
|
7
|
+
|
|
8
|
+
## Live Explorer
|
|
9
|
+
|
|
10
|
+
Try MetaNova Explorer:
|
|
11
|
+
|
|
12
|
+
https://meta-nova-explorer.vercel.app/
|
|
6
13
|
|
|
7
14
|
MetaNova is a modular JavaScript and TypeScript library for extracting, analyzing, scoring, and normalizing metadata from web pages and public URLs.
|
|
8
15
|
|