Skip to content

Commit 6975907

Browse files
committed
chore: bump version to 1.0.1, update CHANGELOG
1 parent dcacee2 commit 6975907

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
---
99

10+
## [1.0.1] – 2026-02-24
11+
12+
### Fixed
13+
14+
- **Claude scraper** – Updated DOM selectors for current Claude UI (Feb 2026):
15+
replaced deprecated `data-testid="human-turn"` / `data-testid="ai-turn"` with
16+
`[data-test-render-count]` turn containers, `[data-testid="user-message"]` for
17+
user messages, and `[data-is-streaming]` + `.standard-markdown` for AI responses
18+
- **Claude multi-block AI messages** – AI responses split across multiple
19+
`.standard-markdown` blocks (e.g. intro sentence + full response after a tool-use
20+
widget) are now fully captured by cloning all blocks into a single wrapper `<div>`
21+
before conversion — prevents Tailwind class names being Turndown-escaped
22+
- **Claude overlay** – Updated `claude.ai` `SITE_CONFIG` in `overlay.js` with
23+
correct selectors; added `isClaude` branch in `collectMessages` (matching Gemini
24+
pattern) so the FAB panel correctly lists all Claude messages
25+
- **Markdown export** – Rewrote `markdown.js` to use pure GFM (no inline HTML);
26+
replaced `<div>`, `<table>`, `<sub>`, `&nbsp;` with blockquotes, GFM pipe tables,
27+
and plain text — exports now render correctly in VS Code, GitHub, Obsidian, Typora
28+
- **PDF overflow** – Fixed long URLs / unbreakable strings escaping the page boundary
29+
in `pdf.js`; oversized atoms are now force-broken character by character
30+
(equivalent to CSS `word-break: break-all`)
31+
32+
---
33+
1034
## [1.0.0] – 2026-02-24
1135

1236
### Added

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "md-export",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "Chrome extension to export AI chat conversations",
55
"scripts": {
66
"build": "webpack --mode production",

0 commit comments

Comments
 (0)