Compare commits

...
Author SHA1 Message Date
Reece f1df300fb7 bump 2026-03-24 11:56:57 +00:00
Reece d09906477a Remove box select and increase text selection tolerance 2026-03-24 11:33:38 +00:00
Reece 79e716a4b7 lint 2026-02-25 17:52:47 +00:00
6 changed files with 11 additions and 8 deletions
+1 -1
View File
@@ -78,7 +78,7 @@ springBoot {
allprojects {
group = 'stirling.software'
version = '2.5.3'
version = '2.5.4'
configurations.configureEach {
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Stirling-PDF",
"version": "2.5.3",
"version": "2.5.4",
"identifier": "stirling.pdf.dev",
"build": {
"frontendDist": "../dist",
@@ -132,7 +132,10 @@ export function LocalEmbedPDF({ file, url, fileName, enableAnnotations = false,
createPluginRegistration(InteractionManagerPluginPackage),
// Register selection plugin (depends on InteractionManager)
createPluginRegistration(SelectionPluginPackage),
createPluginRegistration(SelectionPluginPackage, {
marquee: { enabled: false },
toleranceFactor: 3,
}),
// Register history plugin for undo/redo (recommended for annotations)
// Always register for reading existing annotations
@@ -38,7 +38,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
const BASE_NO_LOGIN_CONFIG: AppConfig = {
enableAnalytics: true,
appVersion: '2.5.3',
appVersion: '2.5.4',
serverCertificateEnabled: false,
enableAlphaFunctionality: false,
serverPort: 8080,
@@ -263,7 +263,7 @@ export class SaasBillingService {
throw error;
}
throw new Error('Failed to fetch billing status');
throw new Error('Failed to fetch billing status', { cause: error });
}
}
@@ -313,7 +313,7 @@ export class SaasBillingService {
throw error;
}
throw new Error('Failed to open billing portal');
throw new Error('Failed to open billing portal', { cause: error });
}
}
@@ -428,7 +428,7 @@ export class SaasBillingService {
throw error;
}
throw new Error('Failed to create checkout session');
throw new Error('Failed to create checkout session', { cause: error });
}
}
}
@@ -48,7 +48,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
const BASE_NO_LOGIN_CONFIG: AppConfig = {
enableAnalytics: true,
appVersion: '2.5.3',
appVersion: '2.5.4',
serverCertificateEnabled: false,
enableAlphaFunctionality: false,
enableDesktopInstallSlide: true,