Skip to content

Commit 4c59404

Browse files
committed
release: v0.1.21
1 parent 0dede41 commit 4c59404

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

Casks/jdf.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cask "jdf" do
2-
version "0.1.20"
3-
sha256 "cc4533232c482b092f04c43bd20a5162177ce8bf99239bc83fef244062daebfb"
2+
version "0.1.21"
3+
sha256 "5e3074dd1c4712685859ad1450447610c186d5289963010fe6282148aa9724ce"
44

55
url "https://github.com/uurtech/jdf/releases/download/v#{version}/JDF.Reader_#{version}_aarch64.dmg"
66
name "JDF Reader"

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ JDF runs in three places:
1616
| Surface | What it is | Install |
1717
|---|---|---|
1818
| **JDF Reader** | Native macOS app — read, edit, import PDF/MD, export PDF | `brew tap uurtech/jdf && brew install jdf` |
19-
| **jdf.js** | JavaScript library — embed `.jdf` files on any web page | `npm install @uurtech/jdf` or `<script src="https://unpkg.com/@uurtech/jdf@0.1.11">` |
19+
| **jdf.js** | JavaScript library — embed `.jdf` files on any web page | `npm install @uurtech/jdf` or `<script src="https://unpkg.com/@uurtech/jdf@0.1.21">` |
2020
| **`@uurtech/jdf-cli`** | CLI — validate, convert PDF→JDF, wrap LLM JSON output into JDF | `npx @uurtech/jdf-cli import paper.pdf` |
2121

2222
## Why JDF
@@ -88,8 +88,8 @@ Linux and Windows builds (`.deb`, `.AppImage`, `.rpm`, `.msi`, `.exe`) are produ
8888
Embed JDF documents on any web page with one tag:
8989

9090
```html
91-
<link rel="stylesheet" href="https://unpkg.com/@uurtech/jdf@0.1.11/dist/jdfjs.css">
92-
<script type="module" src="https://unpkg.com/@uurtech/jdf@0.1.11"></script>
91+
<link rel="stylesheet" href="https://unpkg.com/@uurtech/jdf@0.1.21/dist/jdfjs.css">
92+
<script type="module" src="https://unpkg.com/@uurtech/jdf@0.1.21"></script>
9393

9494
<jdf src="/whitepaper.jdf"></jdf>
9595
```
@@ -217,7 +217,7 @@ Editing lives in the desktop Reader only — jdf.js is a viewer, the CLI is non-
217217
|---|---|
218218
| **JDF Reader** (macOS) | `brew tap uurtech/jdf && brew install jdf` — DMG / `.app`, signed via GitHub release |
219219
| **JDF Reader** (Linux / Windows) | `.deb` / `.AppImage` / `.rpm` / `.msi` / `.exe` from the [latest release](https://github.com/uurtech/jdf/releases/latest) |
220-
| **jdf.js** | `npm install @uurtech/jdf` or `<script src="https://unpkg.com/@uurtech/jdf@0.1.11">` |
220+
| **jdf.js** | `npm install @uurtech/jdf` or `<script src="https://unpkg.com/@uurtech/jdf@0.1.21">` |
221221
| **`@uurtech/jdf-cli`** | `npx @uurtech/jdf-cli validate file.jdf` (no install) |
222222

223223
## Page model
@@ -639,7 +639,7 @@ Done:
639639
- JSON Schema, CLI validate, CI on all three OSes.
640640
- Homebrew tap (`uurtech/jdf`).
641641
- **jdf.js — web embed library** with auto-init, single `<jdf src="...">` form, feature parity with the desktop renderer.
642-
- Published to npm as [`@uurtech/jdf`](https://www.npmjs.com/package/@uurtech/jdf) — install via `npm install @uurtech/jdf` or load from CDN at `https://unpkg.com/@uurtech/jdf@0.1.11` (always pin a version in production).
642+
- Published to npm as [`@uurtech/jdf`](https://www.npmjs.com/package/@uurtech/jdf) — install via `npm install @uurtech/jdf` or load from CDN at `https://unpkg.com/@uurtech/jdf@0.1.21` (always pin a version in production).
643643
- **`.jdfx` zip bundles** — automatic for documents with embedded images/fonts. Reader, jdf.js, and CLI all read and write the format; manifest schema at [`spec/jdfx-manifest-schema.json`](spec/jdfx-manifest-schema.json).
644644
- **Markdown image imports** — `![alt](relative.png)` works in both the desktop importer and `jdf import file.md`. Relative paths are resolved against the source file's directory and embedded into the output bundle.
645645

apps/reader/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jdf/reader",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"private": true,
55
"type": "module",
66
"scripts": {

apps/reader/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "jdf-reader"
3-
version = "0.1.20"
3+
version = "0.1.21"
44
description = "JDF (JSON Document Format) Reader"
55
edition = "2021"
66

apps/reader/src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"productName": "JDF Reader",
3-
"version": "0.1.20",
3+
"version": "0.1.21",
44
"identifier": "dev.jdf.viewer",
55
"build": {
66
"beforeDevCommand": "pnpm dev",

docs/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,8 +490,8 @@ <h2>Also runs on the web — <code class="kbd-tag">jdf.js</code></h2>
490490

491491
<div class="embed-demo">
492492
<div class="embed-demo-code">
493-
<pre><code><span class="punc">&lt;</span><span class="key">link</span> <span class="key">rel</span><span class="punc">=</span><span class="str">"stylesheet"</span> <span class="key">href</span><span class="punc">=</span><span class="str">"https://unpkg.com/@uurtech/jdf@0.1.11/dist/jdfjs.css"</span><span class="punc">&gt;</span>
494-
<span class="punc">&lt;</span><span class="key">script</span> <span class="key">type</span><span class="punc">=</span><span class="str">"module"</span> <span class="key">src</span><span class="punc">=</span><span class="str">"https://unpkg.com/@uurtech/jdf@0.1.11"</span><span class="punc">&gt;&lt;/</span><span class="key">script</span><span class="punc">&gt;</span>
493+
<pre><code><span class="punc">&lt;</span><span class="key">link</span> <span class="key">rel</span><span class="punc">=</span><span class="str">"stylesheet"</span> <span class="key">href</span><span class="punc">=</span><span class="str">"https://unpkg.com/@uurtech/jdf@0.1.21/dist/jdfjs.css"</span><span class="punc">&gt;</span>
494+
<span class="punc">&lt;</span><span class="key">script</span> <span class="key">type</span><span class="punc">=</span><span class="str">"module"</span> <span class="key">src</span><span class="punc">=</span><span class="str">"https://unpkg.com/@uurtech/jdf@0.1.21"</span><span class="punc">&gt;&lt;/</span><span class="key">script</span><span class="punc">&gt;</span>
495495

496496
<span class="punc">&lt;</span><span class="key">jdf</span> <span class="key">src</span><span class="punc">=</span><span class="str">"examples/article.jdf"</span><span class="punc">&gt;&lt;/</span><span class="key">jdf</span><span class="punc">&gt;</span></code></pre>
497497
</div>

jdfjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uurtech/jdf",
3-
"version": "0.1.18",
3+
"version": "0.1.21",
44
"description": "Render JDF (JSON Document Format) documents in the browser. Drop-in replacement for embedding PDFs — point at a .jdf file and it appears on the page, fully styled, searchable, with a clickable TOC.",
55
"license": "MIT",
66
"author": "Ugur Kazdal <ugur@uurtech.com>",

tools/jdf-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@uurtech/jdf-cli",
3-
"version": "0.1.10",
3+
"version": "0.1.21",
44
"description": "Command-line tool for the JDF (JSON Document Format) — validate and convert documents.",
55
"license": "MIT",
66
"author": "Ugur Kazdal",

0 commit comments

Comments
 (0)