fop-cli 4.2.7 → 4.2.9
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 +9 -0
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -280,6 +280,15 @@ The Rust version is significantly faster than Python FOP due to:
|
|
|
280
280
|
- Optimized regex handling
|
|
281
281
|
- Efficient memory management
|
|
282
282
|
|
|
283
|
+
## Windows PowerShell Note
|
|
284
|
+
|
|
285
|
+
If you see `UnauthorizedAccess` or `PSSecurityException` when running `fop` in PowerShell, run this once to fix permanently:
|
|
286
|
+
```powershell
|
|
287
|
+
Set-ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
288
|
+
```
|
|
289
|
+
|
|
290
|
+
Alternatively, use Git Bash, MINGW64, or WSL.
|
|
291
|
+
|
|
283
292
|
## License
|
|
284
293
|
|
|
285
294
|
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 = '4.2.
|
|
10
|
+
const VERSION = '4.2.9';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|