fop-cli 5.0.3 → 5.1.0
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/README.md +17 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -312,6 +312,23 @@ Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
|
312
312
|
|
|
313
313
|
Alternatively, use Git Bash, MINGW64, or WSL.
|
|
314
314
|
|
|
315
|
+
## Security Warnings
|
|
316
|
+
|
|
317
|
+
Pre-built binaries aren't code-signed, so your OS may show a warning on first run.
|
|
318
|
+
|
|
319
|
+
### macOS
|
|
320
|
+
If blocked by Gatekeeper ("cannot be opened because the developer cannot be verified"):
|
|
321
|
+
```bash
|
|
322
|
+
xattr -d com.apple.quarantine ./fop-mac
|
|
323
|
+
```
|
|
324
|
+
|
|
325
|
+
### Windows
|
|
326
|
+
If SmartScreen blocks the file:
|
|
327
|
+
1. Click "More info"
|
|
328
|
+
2. Click "Run anyway"
|
|
329
|
+
|
|
330
|
+
**Alternative:** Install via npm (`npm install -g fop-cli`) to avoid these warnings entirely.
|
|
331
|
+
|
|
315
332
|
## License
|
|
316
333
|
|
|
317
334
|
GPL-3.0 (same as original Python FOP)
|
package/install.js
CHANGED
|
@@ -7,7 +7,7 @@ const path = require('path');
|
|
|
7
7
|
const { execSync } = require('child_process');
|
|
8
8
|
|
|
9
9
|
// Configuration - UPDATE THESE FOR YOUR RELEASE
|
|
10
|
-
const VERSION = '5.0
|
|
10
|
+
const VERSION = '5.1.0';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|