From c5d310b465c21dfb77e2117e071b42c1e9dcc53e Mon Sep 17 00:00:00 2001 From: Amit Haridas Date: Tue, 28 Oct 2025 16:59:15 +0530 Subject: [PATCH] =?UTF-8?q?Release=20v1.8.3:=20Major=20UI=20and=20Export?= =?UTF-8?q?=20Enhancements=20This=20release=20includes=20significant=20imp?= =?UTF-8?q?rovements=20to=20PDF=20Editor=20UI,=20enhanced=20PDF/Word=20exp?= =?UTF-8?q?ort=20functionality,=20print=20fixes,=20and=20configurable=20te?= =?UTF-8?q?mplate=20settings.=20=F0=9F=8E=AF=20v1.8.1=20-=20Streamlined=20?= =?UTF-8?q?PDF=20Editor=20UI:=20-=20Clean,=20focused=20interface=20showing?= =?UTF-8?q?=20only=20the=20selected=20PDF=20operation=20-=20Smooth=20fade-?= =?UTF-8?q?in=20animations=20when=20switching=20between=20functions=20-=20?= =?UTF-8?q?Optimized=20dialog=20sizing=20(max-width=20600px,=20max-height?= =?UTF-8?q?=2085vh)=20-=20Enhanced=20file=20list=20styling=20with=20better?= =?UTF-8?q?=20contrast=20-=20Complete=20dark=20theme=20support=20for=20all?= =?UTF-8?q?=20PDF=20editor=20components=20-=20Better=20scrolling=20behavio?= =?UTF-8?q?r=20for=20long=20forms=20=F0=9F=93=84=20v1.8.2=20-=20Enhanced?= =?UTF-8?q?=20PDF=20Export=20&=20Print=20Fix:=20-=20New=20"PDF=20(Enhanced?= =?UTF-8?q?)"=20export=20option=20using=20Word=20template=20+=20LibreOffic?= =?UTF-8?q?e=20conversion=20-=20Added=20to=20both=20single-file=20export?= =?UTF-8?q?=20and=20batch=20converter=20-=20Keyboard=20shortcut:=20Ctrl+Sh?= =?UTF-8?q?ift+P=20for=20enhanced=20PDF=20export=20-=20Fixed=20print=20pre?= =?UTF-8?q?view=20showing=20blank=20output=20issue=20-=20Simplified=20prin?= =?UTF-8?q?t=20handler=20using=20CSS=20@media=20print=20rules=20-=20Better?= =?UTF-8?q?=20print=20styling=20with=20proper=20element=20hiding/showing?= =?UTF-8?q?=20=E2=9A=99=EF=B8=8F=20v1.8.3=20-=20Configurable=20Template=20?= =?UTF-8?q?Settings:=20-=20Added=20"Template=20Settings..."=20menu=20optio?= =?UTF-8?q?n=20-=20Configurable=20start=20page=20for=20Word=20template=20c?= =?UTF-8?q?ontent=20insertion=20-=20Choose=20from=20Pages=201-5=20or=20cus?= =?UTF-8?q?tom=20page=20number=20(1-100)=20-=20Settings=20persisted=20acro?= =?UTF-8?q?ss=20sessions=20-=20Updated=20WordTemplateExporter=20to=20use?= =?UTF-8?q?=20configurable=20start=20page=20-=20Works=20with=20both=20DOCX?= =?UTF-8?q?=20(Enhanced)=20and=20PDF=20(Enhanced)=20export=20-=20Applied?= =?UTF-8?q?=20to=20single-file=20and=20batch=20conversion=20workflows=20?= =?UTF-8?q?=F0=9F=94=A7=20Technical=20Improvements:=20-=20Enhanced=20WordT?= =?UTF-8?q?emplateExporter=20constructor=20to=20accept=20startPage=20param?= =?UTF-8?q?eter=20-=20Updated=20insertContentAfterPage=20method=20for=20fl?= =?UTF-8?q?exible=20page=20insertion=20-=20Added=20Template=20Settings=20d?= =?UTF-8?q?ialog=20with=20quick-select=20buttons=20-=20IPC=20communication?= =?UTF-8?q?=20for=20custom=20page=20number=20input=20-=20Settings=20stored?= =?UTF-8?q?=20in=20userData/settings.json=20-=20Improved=20CSS=20specifici?= =?UTF-8?q?ty=20with=20PDF=20editor-specific=20classes=20-=20Fixed=20@medi?= =?UTF-8?q?a=20print=20rules=20to=20ensure=20preview=20content=20is=20visi?= =?UTF-8?q?ble=20=F0=9F=8E=A8=20UI/UX=20Enhancements:=20-=20PDF=20Editor?= =?UTF-8?q?=20sections=20now=20animate=20smoothly=20when=20switching=20-?= =?UTF-8?q?=20File=20lists=20for=20merge=20operations=20styled=20with=20pr?= =?UTF-8?q?oper=20contrast=20-=20Remove=20buttons=20styled=20with=20danger?= =?UTF-8?q?=20color=20(#dc3545)=20-=20Template=20settings=20dialog=20shows?= =?UTF-8?q?=20current=20template=20and=20start=20page=20-=20All=20enhancem?= =?UTF-8?q?ents=20support=20all=2022=20existing=20themes=20The=20applicati?= =?UTF-8?q?on=20now=20provides=20professional-grade=20PDF=20editing,=20enh?= =?UTF-8?q?anced=20export=20capabilities=20with=20full=20control=20over=20?= =?UTF-8?q?template-based=20generation,=20and=20a=20streamlined=20user=20i?= =?UTF-8?q?nterface=20that=20makes=20complex=20operations=20simple=20and?= =?UTF-8?q?=20intuitive.=20=F0=9F=A4=96=20Generated=20with=20Claude=20Code?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- src/index.html | 1 + src/main.js | 223 +++++++++++++++++++++++++++++++++++- src/renderer.js | 95 +++------------ src/styles.css | 30 ++++- src/wordTemplateExporter.js | 34 ++++-- 6 files changed, 284 insertions(+), 101 deletions(-) diff --git a/package.json b/package.json index 86dca4b..fc12f6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pan-converter", - "version": "1.8.1", + "version": "1.8.3", "description": "Cross-platform Markdown editor and converter using Pandoc", "main": "src/main.js", "scripts": { diff --git a/src/index.html b/src/index.html index 156b70c..047002f 100644 --- a/src/index.html +++ b/src/index.html @@ -515,6 +515,7 @@