Fix v1.3.1: File associations and 50/50 pane layout

- Enhanced file association handling for double-clicking .md files
- Added proper file associations in package.json build config
- Fixed preview/source pane layout to be equally distributed 50/50
- Updated CSS for tab-content structure with proper flex layout
- Added theme support for new pane selectors
- Improved command line argument processing for file opening
- Updated version to 1.3.1 with file association feature
This commit is contained in:
2025-09-01 21:05:01 +05:30
parent fda173d9a1
commit dfb603c2ea
3 changed files with 76 additions and 6 deletions
+17 -1
View File
@@ -1,6 +1,6 @@
{
"name": "pan-converter",
"version": "1.3.0",
"version": "1.3.1",
"description": "Cross-platform Markdown editor and converter using Pandoc",
"main": "src/main.js",
"scripts": {
@@ -47,6 +47,22 @@
"node_modules/**/*",
"package.json"
],
"fileAssociations": [
{
"ext": "md",
"name": "Markdown Document",
"description": "Markdown Document",
"mimeType": "text/markdown",
"role": "Editor"
},
{
"ext": "markdown",
"name": "Markdown Document",
"description": "Markdown Document",
"mimeType": "text/markdown",
"role": "Editor"
}
],
"mac": {
"category": "public.app-category.productivity",
"icon": "assets/icon.icns"