@clazic/kordoc 2.7.1 → 2.7.2

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/index.js CHANGED
@@ -3112,7 +3112,7 @@ import JSZip2 from "jszip";
3112
3112
  import { DOMParser } from "@xmldom/xmldom";
3113
3113
 
3114
3114
  // src/utils.ts
3115
- var VERSION = true ? "2.7.1" : "0.0.0-dev";
3115
+ var VERSION = true ? "2.7.2" : "0.0.0-dev";
3116
3116
  function toArrayBuffer(buf) {
3117
3117
  if (buf.byteOffset === 0 && buf.byteLength === buf.buffer.byteLength) {
3118
3118
  return buf.buffer;
@@ -11234,19 +11234,19 @@ var CACHE_DIR = join4(homedir(), ".cache", "kordoc", "libreoffice");
11234
11234
  var VERSION_FILE = join4(CACHE_DIR, "version");
11235
11235
  var PACKAGES = {
11236
11236
  darwin: {
11237
- url: "https://download.documentfoundation.org/libreoffice/stable/24.8.4/mac/x86_64/LibreOffice_24.8.4_MacOS_x86-64.dmg",
11237
+ url: "https://ftp.osuosl.org/pub/tdf/libreoffice/stable/26.2.3/mac/x86_64/LibreOffice_26.2.3_MacOS_x86-64.dmg",
11238
11238
  binPath: "LibreOffice.app/Contents/MacOS/soffice",
11239
11239
  sizeMb: 300
11240
11240
  },
11241
11241
  linux: {
11242
- url: "https://download.documentfoundation.org/libreoffice/stable/24.8.4/deb/x86_64/LibreOffice_24.8.4_Linux_x86-64_deb.tar.gz",
11243
- binPath: "opt/libreoffice24.8/program/soffice",
11244
- sizeMb: 200
11242
+ url: "https://ftp.osuosl.org/pub/tdf/libreoffice/stable/26.2.3/deb/x86_64/LibreOffice_26.2.3_Linux_x86-64_deb.tar.gz",
11243
+ binPath: "opt/libreoffice26.2/program/soffice",
11244
+ sizeMb: 210
11245
11245
  },
11246
11246
  win32: {
11247
- url: "https://download.documentfoundation.org/libreoffice/stable/24.8.4/win/x86_64/LibreOffice_24.8.4_Win_x86-64.msi",
11247
+ url: "https://ftp.osuosl.org/pub/tdf/libreoffice/stable/26.2.3/win/x86_64/LibreOffice_26.2.3_Win_x86-64.msi",
11248
11248
  binPath: "LibreOffice/program/soffice.exe",
11249
- sizeMb: 350
11249
+ sizeMb: 360
11250
11250
  }
11251
11251
  };
11252
11252
  async function findInPath() {
@@ -11299,6 +11299,7 @@ async function findInDefaultPaths() {
11299
11299
  }
11300
11300
  async function downloadWithProgress(url, dest, totalBytes, onProgress) {
11301
11301
  const response = await fetch(url);
11302
+ if (!response.ok) throw new Error(`\uB2E4\uC6B4\uB85C\uB4DC \uC2E4\uD328: HTTP ${response.status} (${url})`);
11302
11303
  if (!response.body) throw new Error("\uB2E4\uC6B4\uB85C\uB4DC \uC2E4\uD328: response body \uC5C6\uC74C");
11303
11304
  const file = createWriteStream(dest);
11304
11305
  const reader = response.body.getReader();