stegdoc 1.0.0 → 1.0.1

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 CHANGED
@@ -199,7 +199,7 @@ The date/time and ID are derived from a hash, ensuring files from the same encod
199
199
 
200
200
  ## Backward Compatibility
201
201
 
202
- Files created with previous versions (whitener) are fully supported. The tool automatically detects and handles legacy formats.
202
+ Files created with previous versions are fully supported. The tool automatically detects and handles legacy formats.
203
203
 
204
204
  ## Requirements
205
205
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stegdoc",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Hide files inside Office documents (XLSX/DOCX) with AES-256 encryption and steganography",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/index.js CHANGED
@@ -11,7 +11,7 @@ const verifyCommand = require('./commands/verify');
11
11
  program
12
12
  .name('stegdoc')
13
13
  .description('Hide files inside Office documents with AES-256 encryption and steganography')
14
- .version('1.0.0');
14
+ .version('1.0.1');
15
15
 
16
16
  // Encode command
17
17
  program
@@ -37,7 +37,7 @@ function createMetadata({
37
37
  compressed,
38
38
  contentHash,
39
39
  encodingDate: new Date().toISOString(),
40
- version: '1.0.0',
40
+ version: '1.0.1',
41
41
  tool: 'stegdoc',
42
42
  };
43
43
  }