roxify 1.12.5 → 1.12.6
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/dist/cli.js +2 -2
- package/dist/roxify_native +0 -0
- package/dist/roxify_native.exe +0 -0
- package/dist/utils/encoder.js +1 -1
- package/libroxify_native-x86_64-unknown-linux-gnu.node +0 -0
- package/package.json +1 -1
- package/roxify_native-x86_64-pc-windows-msvc.node +0 -0
- package/roxify_native-x86_64-unknown-linux-gnu.node +0 -0
- package/dist/rox-macos-universal +0 -0
- package/dist/roxify_native-macos-arm64 +0 -0
- package/dist/roxify_native-macos-x64 +0 -0
- package/roxify_native-aarch64-apple-darwin.node +0 -0
- package/roxify_native-aarch64-pc-windows-msvc.node +0 -0
- package/roxify_native-aarch64-unknown-linux-gnu.node +0 -0
- package/roxify_native-i686-pc-windows-msvc.node +0 -0
- package/roxify_native-i686-unknown-linux-gnu.node +0 -0
- package/roxify_native-x86_64-apple-darwin.node +0 -0
package/dist/cli.js
CHANGED
|
@@ -327,7 +327,7 @@ async function encodeCommand(args) {
|
|
|
327
327
|
}, 2000);
|
|
328
328
|
const encryptType = parsed.encrypt === 'xor' ? 'xor' : 'aes';
|
|
329
329
|
const fileName = basename(inputPaths[0]);
|
|
330
|
-
await encodeWithRustCLI(inputPaths.length === 1 ? resolvedInputs[0] : resolvedInputs[0], resolvedOutput,
|
|
330
|
+
await encodeWithRustCLI(inputPaths.length === 1 ? resolvedInputs[0] : resolvedInputs[0], resolvedOutput, 0, parsed.passphrase, encryptType, fileName, onProgress);
|
|
331
331
|
clearInterval(smoothInterval);
|
|
332
332
|
const encodeTime = Date.now() - startTime;
|
|
333
333
|
encodeBar.update(100, {
|
|
@@ -395,7 +395,7 @@ async function encodeCommand(args) {
|
|
|
395
395
|
mode,
|
|
396
396
|
name: parsed.outputName || 'archive',
|
|
397
397
|
skipOptimization: false,
|
|
398
|
-
compressionLevel:
|
|
398
|
+
compressionLevel: 0,
|
|
399
399
|
outputFormat: 'auto',
|
|
400
400
|
container: containerMode,
|
|
401
401
|
});
|
package/dist/roxify_native
CHANGED
|
Binary file
|
package/dist/roxify_native.exe
CHANGED
|
Binary file
|
package/dist/utils/encoder.js
CHANGED
|
@@ -59,7 +59,7 @@ export async function encodeBinaryToPng(input, opts = {}) {
|
|
|
59
59
|
};
|
|
60
60
|
}
|
|
61
61
|
}
|
|
62
|
-
const compressionLevel = opts.compressionLevel ??
|
|
62
|
+
const compressionLevel = opts.compressionLevel ?? 3;
|
|
63
63
|
// ─── Lossy-resilient encoding fast path ────────────────────────────────────
|
|
64
64
|
// When lossyResilient is true, use QR-code-style block encoding with
|
|
65
65
|
// Reed-Solomon FEC. This produces output that survives lossy compression.
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|
package/dist/rox-macos-universal
DELETED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|