Compare commits
3
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f1df300fb7 | ||
|
|
d09906477a | ||
|
|
79e716a4b7 |
+1
-1
@@ -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,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,
|
||||
|
||||
Reference in New Issue
Block a user