fop-cli 3.9.6 → 3.9.8
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 +8 -1
- package/install.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -99,6 +99,13 @@ fop -n ~/easylist ~/easyprivacy ~/fanboy-addon
|
|
|
99
99
|
| `--just-sort` | Alias for `--no-commit` |
|
|
100
100
|
| `--no-ubo-convert` | Skip uBO to ABP option conversion (keep `xhr`, `3p`, `1p`, etc.) |
|
|
101
101
|
| `--no-msg-check` | Skip commit message format validation (M:/A:/P:) |
|
|
102
|
+
| `--disable-ignored` | Disable hardcoded ignored files and folders for testing |
|
|
103
|
+
| `--no-sort` | Don't sort rulse, just combine |
|
|
104
|
+
| `--alt-sort` | More correct sorting method |
|
|
105
|
+
| `--localhost` | Sort hosts file entries (0.0.0.0/127.0.0.1 domain) |
|
|
106
|
+
| `--ignorefiles=` | Additional files to ignore (comma-separated, partial names) |
|
|
107
|
+
| `--config-file=` | Custom config file path |
|
|
108
|
+
| `--no-color` | Disable colored output |
|
|
102
109
|
| `-h, --help` | Show help message |
|
|
103
110
|
| `-V, --version` | Show version number |
|
|
104
111
|
|
|
@@ -147,4 +154,4 @@ GPL-3.0 (same as original Python FOP)
|
|
|
147
154
|
## Credits
|
|
148
155
|
|
|
149
156
|
- Original Python FOP by Michael (EasyList project)
|
|
150
|
-
- Rust port maintains feature parity with Python version 3.9
|
|
157
|
+
- Rust port maintains feature parity with Python version 3.9
|
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 = '3.9.
|
|
10
|
+
const VERSION = '3.9.8';
|
|
11
11
|
const GITHUB_REPO = 'ryanbr/fop-rs'; // Change to your repo
|
|
12
12
|
const BINARY_NAME = 'fop';
|
|
13
13
|
|
|
@@ -17,6 +17,8 @@ const PLATFORMS = {
|
|
|
17
17
|
'darwin-arm64': `-macos-arm64`,
|
|
18
18
|
'linux-x64': `-linux-x86_64`,
|
|
19
19
|
'linux-arm64': `-linux-arm64`,
|
|
20
|
+
'win32-x64': `-windows-x86_64.exe`,
|
|
21
|
+
'win32-arm64': `-windows-arm64.exe`,
|
|
20
22
|
};
|
|
21
23
|
|
|
22
24
|
function getPlatformBinary() {
|