markpdfdown 0.2.1 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main/{AnthropicClient-CTbHYiqm.js → AnthropicClient-Dm_xth4j.js} +21 -8
- package/dist/main/{GeminiClient-CrtYbwaF.js → GeminiClient-DBJawhLe.js} +3 -1
- package/dist/main/{OllamaClient-DKJsnvIt.js → OllamaClient-CJY8PExo.js} +1 -1
- package/dist/main/{OpenAIClient-gyy2nFkw.js → OpenAIClient-DsHXIb_l.js} +3 -1
- package/dist/main/{OpenAIResponsesClient-DETYz2nL.js → OpenAIResponsesClient-DgM49Ri3.js} +3 -1
- package/dist/main/index.js +1791 -171
- package/dist/preload/index.js +51 -1
- package/dist/renderer/assets/{index-B_JfRqwM.css → index-ChH6F00X.css} +25 -0
- package/dist/renderer/assets/{index-Xbcf0bJ0.js → index-DoIlrfzr.js} +4722 -631
- package/dist/renderer/index.html +2 -2
- package/package.json +23 -3
package/dist/renderer/index.html
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
6
6
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
7
7
|
<title>MarkPDFdown</title>
|
|
8
|
-
<script type="module" crossorigin src="./assets/index-
|
|
9
|
-
<link rel="stylesheet" crossorigin href="./assets/index-
|
|
8
|
+
<script type="module" crossorigin src="./assets/index-DoIlrfzr.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="./assets/index-ChH6F00X.css">
|
|
10
10
|
</head>
|
|
11
11
|
<body>
|
|
12
12
|
<div id="root"></div>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "markpdfdown",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "A high-quality PDF to Markdown tool based on large language model visual recognition.",
|
|
5
5
|
"author": "MarkPDFdown",
|
|
6
6
|
"main": "dist/main/index.js",
|
|
@@ -85,6 +85,16 @@
|
|
|
85
85
|
],
|
|
86
86
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
87
87
|
"icon": "public/icons/mac/icon.icns",
|
|
88
|
+
"extendInfo": {
|
|
89
|
+
"CFBundleURLTypes": [
|
|
90
|
+
{
|
|
91
|
+
"CFBundleURLSchemes": [
|
|
92
|
+
"markpdfdown"
|
|
93
|
+
],
|
|
94
|
+
"CFBundleURLName": "com.markpdfdown.desktop"
|
|
95
|
+
}
|
|
96
|
+
]
|
|
97
|
+
},
|
|
88
98
|
"hardenedRuntime": true,
|
|
89
99
|
"gatekeeperAssess": false,
|
|
90
100
|
"entitlements": "build/entitlements.mac.plist",
|
|
@@ -95,7 +105,14 @@
|
|
|
95
105
|
"win": {
|
|
96
106
|
"target": "nsis",
|
|
97
107
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
98
|
-
"icon": "public/icons/win/icon.ico"
|
|
108
|
+
"icon": "public/icons/win/icon.ico",
|
|
109
|
+
"protocols": {
|
|
110
|
+
"name": "MarkPDFdown URL",
|
|
111
|
+
"schemes": [
|
|
112
|
+
"markpdfdown"
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
"verifyUpdateCodeSignature": false
|
|
99
116
|
},
|
|
100
117
|
"nsis": {
|
|
101
118
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
@@ -108,7 +125,10 @@
|
|
|
108
125
|
"linux": {
|
|
109
126
|
"target": "AppImage",
|
|
110
127
|
"artifactName": "${productName}-${version}-${arch}.${ext}",
|
|
111
|
-
"icon": "public/icons/png"
|
|
128
|
+
"icon": "public/icons/png",
|
|
129
|
+
"mimeTypes": [
|
|
130
|
+
"x-scheme-handler/markpdfdown"
|
|
131
|
+
]
|
|
112
132
|
},
|
|
113
133
|
"electronDownload": {
|
|
114
134
|
"mirror": "https://github.com/electron/electron/releases/download/"
|