edatalia-websign 3.1.7 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +20 -0
- package/README.md +8 -13
- package/dist/web-sign-core.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All significant updates to this project will be documented here.
|
|
4
4
|
This changelog is public.
|
|
5
5
|
|
|
6
|
+
|
|
7
|
+
## [3.2.2] - 2025-11-10
|
|
8
|
+
|
|
9
|
+
### Fix
|
|
10
|
+
|
|
11
|
+
- The image of the signature with certificate is replaced by the previous biometric one.
|
|
12
|
+
|
|
13
|
+
## [3.2.1] - 2025-11-10
|
|
14
|
+
|
|
15
|
+
### Fix
|
|
16
|
+
|
|
17
|
+
- Variable enableBridge passed as parameter for dtu html
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
## [3.2.0] - 2025-11-07
|
|
21
|
+
|
|
22
|
+
### Changed
|
|
23
|
+
|
|
24
|
+
- Replaces (`window.__APP_CONFIG__.bridgeEnabled`) value by (`enableBridge`) in WebSign configuration
|
|
25
|
+
|
|
6
26
|
## [3.1.7] - 2025-11-05
|
|
7
27
|
|
|
8
28
|
### Added
|
package/README.md
CHANGED
|
@@ -196,8 +196,7 @@ All parameters below are part of the `config` object:
|
|
|
196
196
|
| `properties` | `Object` | Specifies pdf signature properties like author, reason, contact and location |
|
|
197
197
|
| `authenticationUrl` | `string` | Defines the authentication service endpoint for validating tokens. |
|
|
198
198
|
| `displayCanvasSignatureButtonsInDTU` | `boolean` | When set to true, this parameter enables display of signature action buttons directly within the DTU device canvas interface, allowing users to perform signature-related operations from the DTU screen itself |
|
|
199
|
-
|
|
200
|
-
|
|
199
|
+
| `enableBridge` | `boolean` | When set to true, this parameter tries to communicate with WebSign Bridge, see more in the [corresponding section](#-websign-bridge-desktop-helper) |
|
|
201
200
|
---
|
|
202
201
|
|
|
203
202
|
|
|
@@ -343,18 +342,15 @@ WebSign Bridge is a lightweight desktop companion that enhances WebSign with nat
|
|
|
343
342
|
|
|
344
343
|
### Enable Bridge in your Web app
|
|
345
344
|
|
|
346
|
-
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
window.__APP_CONFIG__ = {
|
|
350
|
-
bridgeEnabled: true
|
|
351
|
-
};
|
|
352
|
-
</script>
|
|
353
|
-
```
|
|
354
|
-
- If bridgeEnabled is true, the app will automatically route calls through WebSign Bridge.
|
|
345
|
+
- Use the param enableBridge : true in config
|
|
346
|
+
|
|
347
|
+
- If enableBridge is true, the app will automatically route calls through WebSign Bridge.
|
|
355
348
|
|
|
356
349
|
- If false or missing, WebSign operates in browser-only mode.
|
|
357
350
|
|
|
351
|
+
- At the moment, when bridge is active, the viewPDF must be set to false.
|
|
352
|
+
|
|
353
|
+
|
|
358
354
|
### Required for Bridge Signing
|
|
359
355
|
|
|
360
356
|
To sign documents using the WebSign Bridge, it is essential to configure the following parameter:
|
|
@@ -377,7 +373,7 @@ Specifies the endpoint used to authenticate the bearer token before enabling sig
|
|
|
377
373
|
- The app doesn’t use Bridge
|
|
378
374
|
|
|
379
375
|
- Verify the MSI is installed and the service is running on the machine.
|
|
380
|
-
- Confirm
|
|
376
|
+
- Confirm enableBridge is true in WebSign configuration
|
|
381
377
|
- Check corporate proxy/firewall rules that might block local loopback connections.
|
|
382
378
|
|
|
383
379
|
- Certificates not detected
|
|
@@ -389,7 +385,6 @@ Specifies the endpoint used to authenticate the bearer token before enabling sig
|
|
|
389
385
|
- Confirm Bridge is active (see logs) and that you’re using STU/DTU or operations benefiting from native I/O.
|
|
390
386
|
|
|
391
387
|
|
|
392
|
-
|
|
393
388
|
## 🧾 License
|
|
394
389
|
|
|
395
390
|
© 2025 Edatalia Data Solutions. All rights reserved.
|