Fix/v2/text selection 2 (#5990)

This commit is contained in:
Reece Browne
2026-03-24 12:51:52 +00:00
committed by GitHub
parent 1276e5675e
commit 3ea11352e3
5 changed files with 8 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "Stirling-PDF",
"version": "2.7.3",
"version": "2.8.0",
"identifier": "stirling.pdf.dev",
"build": {
"frontendDist": "../dist",

View File

@@ -150,7 +150,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

View File

@@ -38,7 +38,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
const BASE_NO_LOGIN_CONFIG: AppConfig = {
enableAnalytics: true,
appVersion: '2.7.3',
appVersion: '2.8.0',
serverCertificateEnabled: false,
enableAlphaFunctionality: false,
serverPort: 8080,

View File

@@ -48,7 +48,7 @@ const FREE_LICENSE_INFO: LicenseInfo = {
const BASE_NO_LOGIN_CONFIG: AppConfig = {
enableAnalytics: true,
appVersion: '2.7.3',
appVersion: '2.8.0',
serverCertificateEnabled: false,
enableAlphaFunctionality: false,
enableDesktopInstallSlide: true,