From fcb01faeab1226222c9b02a65ec0f00ede6b3fd9 Mon Sep 17 00:00:00 2001 From: Bear Date: Wed, 1 Jul 2026 20:03:31 -0500 Subject: [PATCH 1/2] Add Ghostscript 10.07.1 configuration and update bundle release --- build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.properties b/build.properties index 3d2ca5d..312ad69 100644 --- a/build.properties +++ b/build.properties @@ -1,5 +1,5 @@ bundle.name = ghostscript -bundle.release = 2026.5.31 +bundle.release = 2026.7.1 bundle.type = tools bundle.format = 7z From efb037834fc2fa06de3dc8ceb119f5aaebdf75f2 Mon Sep 17 00:00:00 2001 From: Bear Date: Wed, 1 Jul 2026 20:10:24 -0500 Subject: [PATCH 2/2] Add Ghostscript 10.07.1 configuration and update script - Add bearsampp.conf with version 10.07.1 settings and executables - Add update_cidfmap.bat script for CID font map generation --- bin/ghostscript10.07.1/bearsampp.conf | 5 +++++ bin/ghostscript10.07.1/update_cidfmap.bat | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 bin/ghostscript10.07.1/bearsampp.conf create mode 100644 bin/ghostscript10.07.1/update_cidfmap.bat diff --git a/bin/ghostscript10.07.1/bearsampp.conf b/bin/ghostscript10.07.1/bearsampp.conf new file mode 100644 index 0000000..4ce91c9 --- /dev/null +++ b/bin/ghostscript10.07.1/bearsampp.conf @@ -0,0 +1,5 @@ +ghostscriptVersion = "10.07.1" +ghostscriptExe = "bin/gswin64.exe" +ghostscriptExeConsole = "bin/gswin64c.exe" + +bundleRelease = "@RELEASE_VERSION@" diff --git a/bin/ghostscript10.07.1/update_cidfmap.bat b/bin/ghostscript10.07.1/update_cidfmap.bat new file mode 100644 index 0000000..3ce1e20 --- /dev/null +++ b/bin/ghostscript10.07.1/update_cidfmap.bat @@ -0,0 +1,11 @@ +@ECHO OFF + +pushd "%~dp0" +if not exist "%~dp0bin\gswin64c.exe" ( + echo ERROR: gswin64c.exe not found in "%~dp0bin" + exit /b 1 +) +"%~dp0bin\gswin64c.exe" -q -dBATCH -sFONTDIR=c:/windows/fonts -sCIDFMAP=lib/cidfmap lib/mkcidfm.ps +set EXITCODE=%ERRORLEVEL% +popd +exit /b %EXITCODE%