fop-cli 4.2.2 → 4.2.4
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 +2 -2
- package/install.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -34,8 +34,7 @@ FOP preserves extended filter syntax from various adblockers:
|
|
|
34
34
|
- Snippets: `#$#hide-if-contains`, `#$#simulate-mouse-event`
|
|
35
35
|
|
|
36
36
|
## Speed Comparison (FOP.py vs FOP Rust)
|
|
37
|
-
|
|
38
|
-
<img width="1850" height="855" alt="fop-graph" src="https://github.com/user-attachments/assets/ef9e1e24-5f40-4899-b21f-3e706261f5dd" />
|
|
37
|
+
<img width="2052" height="1028" alt="foprs" src="https://github.com/user-attachments/assets/7c746d17-23dc-4ba7-8d6f-f3d168c93d4a" />
|
|
39
38
|
|
|
40
39
|
## Installation
|
|
41
40
|
|
|
@@ -92,6 +91,7 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
92
91
|
| `--ignore-dot-domains` | Don't skip rules without dot in domain |
|
|
93
92
|
| `--ignorefiles=` | Additional files to ignore (comma-separated, partial names) |
|
|
94
93
|
| `--ignoredirs=` | Additional directories to ignore (comma-separated, partial names) |
|
|
94
|
+
| `--ignore-all-but=` | Only process these files, ignore all others (comma-separated) |
|
|
95
95
|
| `--file-extensions=` | File extensions to process (default: .txt) |
|
|
96
96
|
| `--comments=` | Comment line prefixes (default: !) |
|
|
97
97
|
| `--disable-domain-limit=` | Files to skip short domain check (comma-separated) |
|
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.4';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|