commit 46df778d0e667f34e9c99ffad52ce21d51a846f2
parent 0952d9e58e160264d715856e76c66edd3caaeeb5
Author: Amit Dutta <amitdutta4255@gmail.com>
Date: Fri, 30 Jan 2026 13:04:10 +0530
updated the readme for npmjs
Diffstat:
4 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/README.md b/README.md
@@ -1,4 +1,4 @@
-# Mojic v2.1.1
+# Mojic v2.1.2
> **Operation Ironclad: Obfuscate C source code into a randomized, password-seeded stream of emojis.**
diff --git a/bin/mojic.js b/bin/mojic.js
@@ -9,7 +9,7 @@ import { Transform } from 'stream';
import { StringDecoder } from 'string_decoder';
import { CipherEngine } from '../lib/CipherEngine.js';
-const VERSION = '2.1.1';
+const VERSION = '2.1.2';
program
.name('mojic')
diff --git a/lib/CipherEngine.js b/lib/CipherEngine.js
@@ -3,7 +3,7 @@ import { Transform } from 'stream';
import { StringDecoder } from 'string_decoder';
/**
- * MOJIC v2.1.1 CIPHER ENGINE
+ * MOJIC v2.1.2 CIPHER ENGINE
* "Operation Ironclad"
* * Security Upgrades:
* - KDF: Upgraded from PBKDF2 to Scrypt (Memory-Hard, GPU-Resistant)
diff --git a/package.json b/package.json
@@ -1,6 +1,6 @@
{
"name": "@notamitgamer/mojic",
- "version": "2.1.1",
+ "version": "2.1.2",
"description": "Obfuscate C source code into encrypted, password-seeded emoji streams.",
"main": "bin/mojic.js",
"bin": {