metanova 0.2.0 → 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 CHANGED
@@ -1,5 +1,32 @@
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
+
20
+ ## v0.2.1
21
+
22
+ Release date: 2026-06-04
23
+
24
+ ### Fixed
25
+
26
+ - Fixed Reddit verification/block pages that returned HTTP 200 being treated as successful metadata.
27
+ - Fixed blocked Reddit fallback handling so provider diagnostics clearly report blocked status, reason, status code, and suggested action.
28
+ - Fixed Reddit verification titles such as `Reddit - Please wait for verification` leaking into `metadata.title`.
29
+
3
30
  ## v0.2.0
4
31
 
5
32
  Release date: 2026-06-04
package/README.md CHANGED
@@ -3,6 +3,13 @@
3
3
  [![npm version](https://img.shields.io/npm/v/metanova.svg)](https://www.npmjs.com/package/metanova)
4
4
  [![License](https://img.shields.io/npm/l/metanova.svg)](https://www.npmjs.com/package/metanova)
5
5
  [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue)](https://www.typescriptlang.org/)
6
+ [![Live Explorer](https://img.shields.io/badge/Explorer-Live-ff3b6b)](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