|
| 1 | +// File: app/docs/releases/v1-3/page.tsx |
| 2 | +// What: v1.3.0 release notes page |
| 3 | +// Why: Detailed release notes for v1.3.0 |
| 4 | +// Related: app/docs/releases/page.tsx, app/playground/page.tsx |
| 5 | + |
| 6 | +'use client'; |
| 7 | + |
| 8 | +import Link from 'next/link'; |
| 9 | +import Navigation from '@/components/Navigation'; |
| 10 | +import { Sparkle, CheckCircle, Monitor, ArrowsClockwise } from 'phosphor-react'; |
| 11 | + |
| 12 | +export default function V13ReleasePage() { |
| 13 | + return ( |
| 14 | + <div className="min-h-screen bg-black text-white"> |
| 15 | + <Navigation dark /> |
| 16 | + <div className="container mx-auto px-4 py-12 pt-24 max-w-4xl"> |
| 17 | + <div className="mb-8"> |
| 18 | + <div className="flex items-center gap-4 mb-4"> |
| 19 | + <h1 className="text-5xl font-bold">v1.3.0 Release Notes</h1> |
| 20 | + <span className="px-4 py-2 bg-green-500 text-black text-lg font-bold"> |
| 21 | + LATEST |
| 22 | + </span> |
| 23 | + </div> |
| 24 | + <p className="text-xl text-gray-300"> |
| 25 | + Released January 22, 2026 |
| 26 | + </p> |
| 27 | + </div> |
| 28 | + |
| 29 | + <div className="p-6 bg-green-900 border-2 border-green-500 mb-12"> |
| 30 | + <h2 className="text-2xl font-bold mb-4">🎉 Export Parity & Preview Alignment</h2> |
| 31 | + <p className="text-lg text-gray-200"> |
| 32 | + v1.3.0 focuses on parity across exporters and the playground. Tables and blockquotes |
| 33 | + now render consistently across formats with no breaking changes. |
| 34 | + </p> |
| 35 | + </div> |
| 36 | + |
| 37 | + {/* Export Parity */} |
| 38 | + <section className="mb-12 border-l-4 border-green-500 pl-6"> |
| 39 | + <div className="flex items-center gap-3 mb-6"> |
| 40 | + <Sparkle size={32} weight="duotone" /> |
| 41 | + <h2 className="text-4xl font-bold">Export Parity</h2> |
| 42 | + </div> |
| 43 | + |
| 44 | + <div className="p-6 bg-gray-900 border-2 border-white"> |
| 45 | + <h3 className="text-2xl font-bold mb-3">@table Rendering</h3> |
| 46 | + <p className="text-gray-300 mb-4"> |
| 47 | + Table blocks now render consistently across all export targets. |
| 48 | + </p> |
| 49 | + <ul className="list-disc list-inside space-y-2 text-gray-300"> |
| 50 | + <li>PDF, DOCX, PPTX, and XLSX table output</li> |
| 51 | + <li>Caption, alignment, and style rendering preserved</li> |
| 52 | + <li>HTML preview aligned with exported formats</li> |
| 53 | + </ul> |
| 54 | + </div> |
| 55 | + |
| 56 | + <div className="p-6 bg-gray-900 border-2 border-white mt-6"> |
| 57 | + <h3 className="text-2xl font-bold mb-3">Blockquote Styling</h3> |
| 58 | + <p className="text-gray-300 mb-4"> |
| 59 | + Consistent blockquote styling across exports and preview. |
| 60 | + </p> |
| 61 | + <ul className="list-disc list-inside space-y-2 text-gray-300"> |
| 62 | + <li>Exporter styling for quoted text</li> |
| 63 | + <li>Preview matches export output</li> |
| 64 | + </ul> |
| 65 | + </div> |
| 66 | + </section> |
| 67 | + |
| 68 | + {/* Playground */} |
| 69 | + <section className="mb-12 border-l-4 border-blue-500 pl-6"> |
| 70 | + <div className="flex items-center gap-3 mb-6"> |
| 71 | + <Monitor size={32} weight="duotone" /> |
| 72 | + <h2 className="text-4xl font-bold">Playground Alignment</h2> |
| 73 | + </div> |
| 74 | + <div className="p-6 bg-gray-900 border-2 border-blue-500"> |
| 75 | + <p className="text-gray-200 text-lg mb-4"> |
| 76 | + Preview rendering now mirrors export output for tables and blockquotes. |
| 77 | + </p> |
| 78 | + <ul className="space-y-2 text-gray-200"> |
| 79 | + <li><CheckCircle size={20} weight="duotone" className="inline mr-2" />Unified table rendering</li> |
| 80 | + <li><CheckCircle size={20} weight="duotone" className="inline mr-2" />Quote styling parity</li> |
| 81 | + <li><CheckCircle size={20} weight="duotone" className="inline mr-2" />Cleaner HTML preview output</li> |
| 82 | + </ul> |
| 83 | + </div> |
| 84 | + </section> |
| 85 | + |
| 86 | + {/* Compatibility */} |
| 87 | + <section className="mb-12 border-l-4 border-purple-500 pl-6"> |
| 88 | + <div className="flex items-center gap-3 mb-6"> |
| 89 | + <ArrowsClockwise size={32} weight="duotone" /> |
| 90 | + <h2 className="text-4xl font-bold">Compatibility</h2> |
| 91 | + </div> |
| 92 | + <div className="p-6 bg-gray-900 border-2 border-purple-500"> |
| 93 | + <p className="text-gray-200 text-lg mb-4"> |
| 94 | + v1.3.0 is fully backward compatible with v1.2 documents. |
| 95 | + </p> |
| 96 | + <ul className="space-y-2 text-gray-200"> |
| 97 | + <li><CheckCircle size={20} weight="duotone" className="inline mr-2" />No breaking changes</li> |
| 98 | + <li><CheckCircle size={20} weight="duotone" className="inline mr-2" />Existing documents render unchanged</li> |
| 99 | + </ul> |
| 100 | + </div> |
| 101 | + </section> |
| 102 | + |
| 103 | + {/* Upgrade */} |
| 104 | + <section className="mb-12 border-l-4 border-white pl-6"> |
| 105 | + <h2 className="text-4xl font-bold mb-6">Upgrade Instructions</h2> |
| 106 | + <div className="space-y-4"> |
| 107 | + <div className="p-4 bg-black border-2 border-white"> |
| 108 | + <div className="text-sm text-gray-400 mb-2">CLI</div> |
| 109 | + <pre className="text-green-400 font-mono text-sm">$ npm install -g omniscript-cli@1.3.0</pre> |
| 110 | + </div> |
| 111 | + <div className="p-4 bg-black border-2 border-white"> |
| 112 | + <div className="text-sm text-gray-400 mb-2">Parser + Converters</div> |
| 113 | + <pre className="text-green-400 font-mono text-sm">$ npm install omniscript-parser@^1.3.0 omniscript-converters@^1.3.0</pre> |
| 114 | + </div> |
| 115 | + </div> |
| 116 | + </section> |
| 117 | + |
| 118 | + {/* Links */} |
| 119 | + <div className="grid gap-4"> |
| 120 | + <a |
| 121 | + href="https://github.com/OmniScriptOSF/omniscript-core/blob/main/CHANGELOG.md" |
| 122 | + className="block p-4 border-2 border-white hover:bg-white hover:text-black font-bold" |
| 123 | + target="_blank" |
| 124 | + rel="noopener noreferrer" |
| 125 | + > |
| 126 | + View Full Changelog → |
| 127 | + </a> |
| 128 | + <Link |
| 129 | + href="/docs/releases" |
| 130 | + className="block p-4 border-2 border-white hover:bg-white hover:text-black font-bold" |
| 131 | + > |
| 132 | + Back to All Releases → |
| 133 | + </Link> |
| 134 | + </div> |
| 135 | + </div> |
| 136 | + </div> |
| 137 | + ); |
| 138 | +} |
0 commit comments