Update Backend 3rd Party Licenses (#6312)

Auto-generated by stirlingbot[bot]

This PR updates the backend license report based on dependency changes.

---------

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:
stirlingbot[bot]
2026-05-13 16:30:58 +01:00
committed by GitHub
co-authored by stirlingbot[bot] <195170888+stirlingbot[bot]@users.noreply.github.com> Anthony Stirling
parent d62f2ad3ed
commit 8a59c10f42
7 changed files with 129 additions and 896 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Maintainer: Stirling PDF Inc <[email protected]> # Maintainer: Stirling PDF Inc <[email protected]>
pkgname=stirling-pdf-desktop pkgname=stirling-pdf-desktop
pkgver=2.10.1 pkgver=2.11.0
pkgrel=1 pkgrel=1
pkgdesc="Locally hosted, web-based PDF manipulation tool (Tauri desktop app, official Stirling PDF Inc build)" pkgdesc="Locally hosted, web-based PDF manipulation tool (Tauri desktop app, official Stirling PDF Inc build)"
arch=('x86_64') arch=('x86_64')
+1 -1
View File
@@ -1,6 +1,6 @@
# Maintainer: Stirling PDF Inc <[email protected]> # Maintainer: Stirling PDF Inc <[email protected]>
pkgname=stirling-pdf-server-bin pkgname=stirling-pdf-server-bin
pkgver=2.10.1 pkgver=2.11.0
pkgrel=1 pkgrel=1
pkgdesc="Locally hosted, web-based PDF manipulation tool (server JAR, prebuilt)" pkgdesc="Locally hosted, web-based PDF manipulation tool (server JAR, prebuilt)"
arch=('any') arch=('any')
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -78,7 +78,7 @@ springBoot {
allprojects { allprojects {
group = 'stirling.software' group = 'stirling.software'
version = '2.10.1' version = '2.11.0'
configurations.configureEach { configurations.configureEach {
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat" exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
+24 -7
View File
@@ -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.10.1", "version": "2.11.0",
"identifier": "stirling.pdf.dev", "identifier": "stirling.pdf.dev",
"build": { "build": {
"frontendDist": "../dist", "frontendDist": "../dist",
@@ -24,7 +24,13 @@
"bundle": { "bundle": {
"active": true, "active": true,
"publisher": "Stirling PDF Inc.", "publisher": "Stirling PDF Inc.",
"targets": ["deb", "rpm", "appimage", "dmg", "msi"], "targets": [
"deb",
"rpm",
"appimage",
"dmg",
"msi"
],
"icon": [ "icon": [
"icons/icon.png", "icons/icon.png",
"icons/icon.icns", "icons/icon.icns",
@@ -35,10 +41,15 @@
"icons/128x128.png", "icons/128x128.png",
"icons/192x192.png" "icons/192x192.png"
], ],
"resources": ["libs/*.jar", "runtime/jre/**/*"], "resources": [
"libs/*.jar",
"runtime/jre/**/*"
],
"fileAssociations": [ "fileAssociations": [
{ {
"ext": ["pdf"], "ext": [
"pdf"
],
"name": "PDF Document", "name": "PDF Document",
"role": "Editor", "role": "Editor",
"mimeType": "application/pdf" "mimeType": "application/pdf"
@@ -60,8 +71,12 @@
"digestAlgorithm": "sha256", "digestAlgorithm": "sha256",
"timestampUrl": "http://timestamp.digicert.com", "timestampUrl": "http://timestamp.digicert.com",
"wix": { "wix": {
"fragmentPaths": ["windows/wix/provisioning.wxs"], "fragmentPaths": [
"componentGroupRefs": ["ProvisioningComponentGroup"] "windows/wix/provisioning.wxs"
],
"componentGroupRefs": [
"ProvisioningComponentGroup"
]
} }
}, },
"macOS": { "macOS": {
@@ -81,7 +96,9 @@
}, },
"deep-link": { "deep-link": {
"desktop": { "desktop": {
"schemes": ["stirlingpdf"] "schemes": [
"stirlingpdf"
]
} }
} }
} }
@@ -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.10.1", appVersion: "2.11.0",
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.10.1", appVersion: "2.11.0",
serverCertificateEnabled: false, serverCertificateEnabled: false,
enableAlphaFunctionality: false, enableAlphaFunctionality: false,
enableDesktopInstallSlide: true, enableDesktopInstallSlide: true,