neozip-cli 0.70.0-alpha → 0.75.1-beta
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 +12 -12
- package/dist/neozipkit-bundles/blockchain.js +1491 -857
- package/dist/neozipkit-bundles/browser.js +755 -302
- package/dist/neozipkit-bundles/core.js +235 -162
- package/dist/neozipkit-bundles/{server.js → node.js} +4415 -1681
- package/dist/neozipkit-wrappers/index.js +2 -2
- package/dist/neozipkit-wrappers/node/index.js +2 -0
- package/dist/src/config/ConfigSetup.js +11 -11
- package/dist/src/config/ConfigStore.js +3 -3
- package/dist/src/neolist.js +10 -10
- package/dist/src/neounzip.js +50 -70
- package/dist/src/neozip/blockchain.js +12 -8
- package/dist/src/neozip/createZip.js +84 -69
- package/dist/src/neozip/file-operations.js +13 -9
- package/dist/src/neozip/user-interaction.js +13 -3
- package/dist/src/neozip.js +3 -3
- package/package.json +7 -8
- package/dist/neozipkit-wrappers/server/index.js +0 -2
- package/dist/src/config/ConfigWizard.js +0 -453
- package/dist/src/config/WalletConfig.js +0 -372
- package/dist/src/server/CommentManager.js +0 -240
package/README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
> Full-featured command-line ZIP application with blockchain integration and advanced compression
|
|
4
4
|
|
|
5
|
-
[](https://www.npmjs.com/package/neozip-cli)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
[](https://nodejs.org/)
|
|
8
8
|
|
|
9
|
-
## ⚠️
|
|
9
|
+
## ⚠️ Beta Release Notice
|
|
10
10
|
|
|
11
|
-
**This is
|
|
11
|
+
**This is a beta release (v0.75.0-beta).** This software is in active development and may contain bugs or incomplete features. While more stable than alpha releases, please use with caution in production environments.
|
|
12
12
|
|
|
13
|
-
- **API Stability**: Command-line interface
|
|
13
|
+
- **API Stability**: Command-line interface is becoming more stable but may still change
|
|
14
14
|
- **Testing**: Please test thoroughly and report any issues
|
|
15
15
|
- **Feedback**: We welcome feedback and bug reports via [GitHub Issues](https://github.com/NeoWareInc/neozip-support/issues) or email [support@neozip.io](mailto:support@neozip.io)
|
|
16
16
|
|
|
@@ -69,10 +69,10 @@ NeoZip CLI is a modern, full-featured ZIP utility that provides:
|
|
|
69
69
|
- Node.js 16.0.0 or higher
|
|
70
70
|
- npm or yarn package manager
|
|
71
71
|
|
|
72
|
-
### Install from npm (
|
|
72
|
+
### Install from npm (Beta Release)
|
|
73
73
|
|
|
74
74
|
```bash
|
|
75
|
-
npm install -g neozip-cli@
|
|
75
|
+
npm install -g neozip-cli@beta
|
|
76
76
|
```
|
|
77
77
|
|
|
78
78
|
After installation, the following commands will be available:
|
|
@@ -434,7 +434,7 @@ export PATH="$(npm config get prefix)/bin:$PATH"
|
|
|
434
434
|
**Permission errors:**
|
|
435
435
|
```bash
|
|
436
436
|
# Use sudo (not recommended) or fix npm permissions
|
|
437
|
-
sudo npm install -g neozip-cli@
|
|
437
|
+
sudo npm install -g neozip-cli@beta
|
|
438
438
|
|
|
439
439
|
# Better: Fix npm permissions
|
|
440
440
|
mkdir ~/.npm-global
|
|
@@ -473,13 +473,13 @@ neozip --pkzip-encrypt -P "password" archive.nzip files/
|
|
|
473
473
|
|
|
474
474
|
## Contributing
|
|
475
475
|
|
|
476
|
-
We welcome feedback and contributions! Since this is
|
|
476
|
+
We welcome feedback and contributions! Since this is a beta release, we're actively seeking input:
|
|
477
477
|
|
|
478
478
|
1. **Report Issues**: Use [GitHub Issues](https://github.com/NeoWareInc/neozip-support/issues) or email [support@neozip.io](mailto:support@neozip.io)
|
|
479
479
|
2. **Suggest Features**: Share your ideas and use cases
|
|
480
480
|
3. **Test and Provide Feedback**: Help us improve by testing and reporting your experience
|
|
481
481
|
|
|
482
|
-
**Important**: This is
|
|
482
|
+
**Important**: This is a beta release. API and behavior may still change. Please test thoroughly.
|
|
483
483
|
|
|
484
484
|
## License
|
|
485
485
|
|
|
@@ -499,6 +499,6 @@ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file
|
|
|
499
499
|
|
|
500
500
|
---
|
|
501
501
|
|
|
502
|
-
**Version**: 0.
|
|
503
|
-
**Status**:
|
|
504
|
-
**Last Updated**: 2025
|
|
502
|
+
**Version**: 0.75.0-beta
|
|
503
|
+
**Status**: Beta Release
|
|
504
|
+
**Last Updated**: December 26, 2025
|