From b93129bc44241e5b38c464fee1e580ac325eabf4 Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Sun, 5 Oct 2025 20:26:47 +0530 Subject: [PATCH] Version 1.6.0 - Enhanced Markdown Editor & ConvertAPI Integration New Features: Enhanced Markdown Toolbar - Added strikethrough button - Added code block button - Added horizontal rule button Fixed Find & Replace - Fixed focus issue - Visual highlighting with text selection - Smart scroll to matches Fixed Line Numbers - Corrected line counting - Added scroll synchronization ConvertAPI Integration - Cloud conversion support (200+ formats) - Secure API key storage - Real-time conversion status Co-Authored-By: Claude --- package.json | 15 +- src/index.html | 73 +++++++++ src/main.js | 74 ++++++++- src/renderer.js | 387 ++++++++++++++++++++++++++++++++++++++++++++++-- 4 files changed, 535 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index d6d244e..e3e2f17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pan-converter", - "version": "1.5.7", + "version": "1.6.0", "description": "Cross-platform Markdown editor and converter using Pandoc", "main": "src/main.js", "scripts": { @@ -31,6 +31,7 @@ }, "dependencies": { "codemirror": "^6.0.2", + "convertapi": "^1.15.0", "dompurify": "^3.2.6", "electron-store": "^10.1.0", "highlight.js": "^11.11.1", @@ -75,15 +76,21 @@ "target": [ { "target": "nsis", - "arch": ["x64"] + "arch": [ + "x64" + ] }, { "target": "portable", - "arch": ["x64"] + "arch": [ + "x64" + ] }, { "target": "zip", - "arch": ["x64"] + "arch": [ + "x64" + ] } ], "artifactName": "${productName}-${version}-${arch}.${ext}", diff --git a/src/index.html b/src/index.html index 4f81251..e281295 100644 --- a/src/index.html +++ b/src/index.html @@ -75,6 +75,27 @@ + + +
+ +
+
+ + + Get your free API key at convertapi.com +
+ +
+ + +
+ +
+ + +
+ + +
+ + + +