mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-16 19:33:11 +02:00
🤖 format everything with pre-commit by stirlingbot (#5538)
Auto-generated by [create-pull-request][1] with **stirlingbot** [1]: https://github.com/peter-evans/create-pull-request --------- Signed-off-by: stirlingbot[bot] <stirlingbot[bot]@users.noreply.github.com> Co-authored-by: stirlingbot[bot] <195170888+stirlingbot[bot]@users.noreply.github.com> Co-authored-by: Anthony Stirling <[email protected]>
This commit is contained in:
co-authored by
stirlingbot[bot] <195170888+stirlingbot[bot]@users.noreply.github.com>
Anthony Stirling
parent
1cd3e2846e
commit
d90e51233d
+1
-1
@@ -67,7 +67,7 @@ springBoot {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = 'stirling.software'
|
group = 'stirling.software'
|
||||||
version = '2.4.1'
|
version = '2.4.2'
|
||||||
|
|
||||||
configurations.configureEach {
|
configurations.configureEach {
|
||||||
exclude group: 'commons-logging', module: 'commons-logging'
|
exclude group: 'commons-logging', module: 'commons-logging'
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
||||||
"productName": "Stirling-PDF",
|
"productName": "Stirling-PDF",
|
||||||
"version": "2.4.1",
|
"version": "2.4.2",
|
||||||
"identifier": "stirling.pdf.dev",
|
"identifier": "stirling.pdf.dev",
|
||||||
"build": {
|
"build": {
|
||||||
"frontendDist": "../dist",
|
"frontendDist": "../dist",
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
|
|||||||
|
|
||||||
const BASE_NO_LOGIN_CONFIG: AppConfig = {
|
const BASE_NO_LOGIN_CONFIG: AppConfig = {
|
||||||
enableAnalytics: true,
|
enableAnalytics: true,
|
||||||
appVersion: '2.4.1',
|
appVersion: '2.4.2',
|
||||||
serverCertificateEnabled: false,
|
serverCertificateEnabled: false,
|
||||||
enableAlphaFunctionality: false,
|
enableAlphaFunctionality: false,
|
||||||
serverPort: 8080,
|
serverPort: 8080,
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
|
|||||||
|
|
||||||
const BASE_NO_LOGIN_CONFIG: AppConfig = {
|
const BASE_NO_LOGIN_CONFIG: AppConfig = {
|
||||||
enableAnalytics: true,
|
enableAnalytics: true,
|
||||||
appVersion: '2.4.1',
|
appVersion: '2.4.2',
|
||||||
serverCertificateEnabled: false,
|
serverCertificateEnabled: false,
|
||||||
enableAlphaFunctionality: false,
|
enableAlphaFunctionality: false,
|
||||||
enableDesktopInstallSlide: true,
|
enableDesktopInstallSlide: true,
|
||||||
|
|||||||
@@ -509,18 +509,20 @@ Examples:
|
|||||||
|
|
||||||
# Positional arguments (backward compatibility):
|
# Positional arguments (backward compatibility):
|
||||||
convert_cff_to_ttf.py font.cff font.otf mapping.tounicode
|
convert_cff_to_ttf.py font.cff font.otf mapping.tounicode
|
||||||
"""
|
""",
|
||||||
)
|
)
|
||||||
|
|
||||||
# Add named arguments
|
# Add named arguments
|
||||||
parser.add_argument('--input', dest='input_file', help='Input CFF 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("--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(
|
||||||
|
"--to-unicode", dest="tounicode_file", help="ToUnicode mapping file path"
|
||||||
|
)
|
||||||
|
|
||||||
# Add positional arguments for backward compatibility
|
# Add positional arguments for backward compatibility
|
||||||
parser.add_argument('input_pos', nargs='?', help='Input CFF 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("output_pos", nargs="?", help="Output OTF file (positional)")
|
||||||
parser.add_argument('tounicode_pos', nargs='?', help='ToUnicode file (positional)')
|
parser.add_argument("tounicode_pos", nargs="?", help="ToUnicode file (positional)")
|
||||||
|
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user