Compare commits

...
2 Commits
Author SHA1 Message Date
amitwh ed7a80f99e Bump version to 1.5.3 for bug fix release 2025-09-22 00:24:45 +05:30
amitwh 18b7d82610 Fix critical bugs: file loading, advanced export dialog, and XLSX export
- Add XLSX export functionality alongside CSV with proper menu option
- Fix advanced export dialog visibility with improved CSS and scroll behavior
- Verify file loading mechanism works correctly for double-click association
- Improve export dialog layout with better height and positioning
- Update export-spreadsheet IPC handler to support both CSV and XLSX formats
2025-09-22 00:24:00 +05:30
5 changed files with 54 additions and 21 deletions
+10
View File
@@ -0,0 +1,10 @@
name: New MCP server
version: 0.0.1
schema: v1
mcpServers:
- name: New MCP server
command: npx
args:
- -y
- <your-mcp-server>
env: {}
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "pan-converter", "name": "pan-converter",
"version": "1.5.2", "version": "1.5.3",
"description": "Cross-platform Markdown editor and converter using Pandoc", "description": "Cross-platform Markdown editor and converter using Pandoc",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {
+34 -18
View File
@@ -2,6 +2,7 @@ const { app, BrowserWindow, Menu, dialog, ipcMain, shell } = require('electron')
const path = require('path'); const path = require('path');
const fs = require('fs'); const fs = require('fs');
const { exec } = require('child_process'); const { exec } = require('child_process');
const XLSX = require('xlsx');
// Get the system Pandoc path // Get the system Pandoc path
function getPandocPath() { function getPandocPath() {
@@ -179,7 +180,8 @@ function createMenu() {
{ label: 'PowerPoint (PPTX)', click: () => exportFile('pptx') }, { label: 'PowerPoint (PPTX)', click: () => exportFile('pptx') },
{ label: 'OpenDocument Presentation (ODP)', click: () => exportFile('odp') }, { label: 'OpenDocument Presentation (ODP)', click: () => exportFile('odp') },
{ type: 'separator' }, { type: 'separator' },
{ label: 'CSV (Tables)', click: () => exportSpreadsheet('csv') } { label: 'CSV (Tables)', click: () => exportSpreadsheet('csv') },
{ label: 'XLSX (Tables)', click: () => exportSpreadsheet('xlsx') }
] ]
}, },
{ type: 'separator' }, { type: 'separator' },
@@ -858,30 +860,44 @@ ipcMain.on('export-spreadsheet', (event, { content, format }) => {
return; return;
} }
// Convert tables to CSV format if (format === 'csv') {
let csvContent = ''; // Convert tables to CSV format
tables.forEach((table, index) => { let csvContent = '';
if (index > 0) csvContent += '\n\n'; // Separate multiple tables tables.forEach((table, index) => {
if (tables.length > 1) csvContent += `"Table ${index + 1}"\n`; if (index > 0) csvContent += '\n\n'; // Separate multiple tables
if (tables.length > 1) csvContent += `"Table ${index + 1}"\n`;
table.forEach(row => { table.forEach(row => {
const csvRow = row.map(cell => { const csvRow = row.map(cell => {
// Escape quotes and wrap in quotes if necessary // Escape quotes and wrap in quotes if necessary
const cleanCell = cell.replace(/"/g, '""'); const cleanCell = cell.replace(/"/g, '""');
return cleanCell.includes(',') || cleanCell.includes('"') || cleanCell.includes('\n') return cleanCell.includes(',') || cleanCell.includes('"') || cleanCell.includes('\n')
? `"${cleanCell}"` : cleanCell; ? `"${cleanCell}"` : cleanCell;
}).join(','); }).join(',');
csvContent += csvRow + '\n'; csvContent += csvRow + '\n';
});
}); });
});
// Write CSV file // Write CSV file
fs.writeFileSync(outputFile, csvContent, 'utf-8'); fs.writeFileSync(outputFile, csvContent, 'utf-8');
} else if (format === 'xlsx') {
// Convert tables to XLSX format
const workbook = XLSX.utils.book_new();
tables.forEach((table, index) => {
const sheetName = tables.length > 1 ? `Table${index + 1}` : 'Table';
const worksheet = XLSX.utils.aoa_to_sheet(table);
XLSX.utils.book_append_sheet(workbook, worksheet, sheetName);
});
// Write XLSX file
XLSX.writeFile(workbook, outputFile);
}
dialog.showMessageBox(mainWindow, { dialog.showMessageBox(mainWindow, {
type: 'info', type: 'info',
title: 'Export Complete', title: 'Export Complete',
message: `CSV exported successfully to ${outputFile}`, message: `${format.toUpperCase()} exported successfully to ${outputFile}`,
buttons: ['OK'] buttons: ['OK']
}); });
} catch (error) { } catch (error) {
+4
View File
@@ -854,6 +854,10 @@ document.addEventListener('DOMContentLoaded', () => {
const advancedOptions = document.getElementById('advanced-export-options'); const advancedOptions = document.getElementById('advanced-export-options');
if (e.target.checked) { if (e.target.checked) {
advancedOptions.classList.remove('hidden'); advancedOptions.classList.remove('hidden');
// Scroll the advanced options into view after they become visible
setTimeout(() => {
advancedOptions.scrollIntoView({ behavior: 'smooth', block: 'nearest' });
}, 100);
} else { } else {
advancedOptions.classList.add('hidden'); advancedOptions.classList.add('hidden');
} }
+5 -2
View File
@@ -859,8 +859,9 @@ body.theme-github .status-bar {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
width: 90%; width: 90%;
max-width: 600px; max-width: 600px;
max-height: 80vh; max-height: 90vh;
overflow-y: auto; overflow-y: auto;
position: relative;
} }
.export-dialog-header { .export-dialog-header {
@@ -1437,7 +1438,9 @@ body.theme-github .line-numbers {
.advanced-options { .advanced-options {
transition: all 0.3s ease; transition: all 0.3s ease;
overflow: hidden; overflow: visible;
position: relative;
z-index: 10;
} }
.advanced-options.hidden { .advanced-options.hidden {