From d90e51233d2d0bc47b75597c64cdc7d0d4821aec Mon Sep 17 00:00:00 2001 From: "stirlingbot[bot]" <195170888+stirlingbot[bot]@users.noreply.github.com> Date: Thu, 29 Jan 2026 23:07:59 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=A4=96=20format=20everything=20with=20pre?= =?UTF-8?q?-commit=20by=20stirlingbot=20(#5538)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Auto-generated by [create-pull-request][1] with **stirlingbot** [1]: https://github.com/peter-evans/create-pull-request --------- Signed-off-by: stirlingbot[bot] Co-authored-by: stirlingbot[bot] <195170888+stirlingbot[bot]@users.noreply.github.com> Co-authored-by: Anthony Stirling <77850077+Frooodle@users.noreply.github.com> --- build.gradle | 2 +- frontend/src-tauri/tauri.conf.json | 2 +- .../core/testing/serverExperienceSimulations.ts | 2 +- .../testing/serverExperienceSimulations.ts | 2 +- scripts/convert_cff_to_ttf.py | 16 +++++++++------- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/build.gradle b/build.gradle index 950705d4f..d4f26e4e9 100644 --- a/build.gradle +++ b/build.gradle @@ -67,7 +67,7 @@ springBoot { allprojects { group = 'stirling.software' - version = '2.4.1' + version = '2.4.2' configurations.configureEach { exclude group: 'commons-logging', module: 'commons-logging' diff --git a/frontend/src-tauri/tauri.conf.json b/frontend/src-tauri/tauri.conf.json index 41c446709..76a6bc51b 100644 --- a/frontend/src-tauri/tauri.conf.json +++ b/frontend/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "productName": "Stirling-PDF", - "version": "2.4.1", + "version": "2.4.2", "identifier": "stirling.pdf.dev", "build": { "frontendDist": "../dist", diff --git a/frontend/src/core/testing/serverExperienceSimulations.ts b/frontend/src/core/testing/serverExperienceSimulations.ts index a0948ba28..86a6b4109 100644 --- a/frontend/src/core/testing/serverExperienceSimulations.ts +++ b/frontend/src/core/testing/serverExperienceSimulations.ts @@ -38,7 +38,7 @@ const FREE_LICENSE_INFO: LicenseInfo = { const BASE_NO_LOGIN_CONFIG: AppConfig = { enableAnalytics: true, - appVersion: '2.4.1', + appVersion: '2.4.2', serverCertificateEnabled: false, enableAlphaFunctionality: false, serverPort: 8080, diff --git a/frontend/src/proprietary/testing/serverExperienceSimulations.ts b/frontend/src/proprietary/testing/serverExperienceSimulations.ts index 056a4aa09..5d2d71fc6 100644 --- a/frontend/src/proprietary/testing/serverExperienceSimulations.ts +++ b/frontend/src/proprietary/testing/serverExperienceSimulations.ts @@ -48,7 +48,7 @@ const FREE_LICENSE_INFO: LicenseInfo = { const BASE_NO_LOGIN_CONFIG: AppConfig = { enableAnalytics: true, - appVersion: '2.4.1', + appVersion: '2.4.2', serverCertificateEnabled: false, enableAlphaFunctionality: false, enableDesktopInstallSlide: true, diff --git a/scripts/convert_cff_to_ttf.py b/scripts/convert_cff_to_ttf.py index fb4016b3e..3b73e3e24 100644 --- a/scripts/convert_cff_to_ttf.py +++ b/scripts/convert_cff_to_ttf.py @@ -509,18 +509,20 @@ Examples: # Positional arguments (backward compatibility): convert_cff_to_ttf.py font.cff font.otf mapping.tounicode - """ + """, ) # Add named arguments - parser.add_argument('--input', dest='input_file', help='Input CFF file path') - parser.add_argument('--output', dest='output_file', help='Output OTF file path') - parser.add_argument('--to-unicode', dest='tounicode_file', help='ToUnicode mapping file path') + parser.add_argument("--input", dest="input_file", help="Input CFF file path") + parser.add_argument("--output", dest="output_file", help="Output OTF file path") + parser.add_argument( + "--to-unicode", dest="tounicode_file", help="ToUnicode mapping file path" + ) # Add positional arguments for backward compatibility - parser.add_argument('input_pos', nargs='?', help='Input CFF file (positional)') - parser.add_argument('output_pos', nargs='?', help='Output OTF file (positional)') - parser.add_argument('tounicode_pos', nargs='?', help='ToUnicode file (positional)') + parser.add_argument("input_pos", nargs="?", help="Input CFF file (positional)") + parser.add_argument("output_pos", nargs="?", help="Output OTF file (positional)") + parser.add_argument("tounicode_pos", nargs="?", help="ToUnicode file (positional)") args = parser.parse_args()