Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mvelten committed Oct 30, 2024
1 parent c03dbc6 commit 021f153
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# 📷 Pix-Veil

[![License](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
[![Version](https://img.shields.io/badge/version-1.4.0-green.svg)](#)
[![Version](https://img.shields.io/badge/version-1.5.0-green.svg)](#)

**Pix-Veil** is a tiny, yet powerful, command-line tool for steganography in PNG images.
It allows you to hide files within PNG images securely using advanced Least Significant Bit (LSB) embedding,
Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"author": "slippyex",
"license": "MIT",
"version": "1.4.0",
"version": "1.5.0",
"unstable": ["kv"],
"nodeModulesDir": "auto",
"tasks": {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/misc/uint8arrayHelpers.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export const compareUint8ArraysLex = (arr1: Uint8Array, arr2: Uint8Array): number => {
export const compareUint8ArraysLex = (arr1: Uint8Array, arr2: Uint8Array) => {
const len = arr1.length < arr2.length ? arr1.length : arr2.length; // Minimum length

for (let i = 0; i < len; i++) {
Expand Down

0 comments on commit 021f153

Please sign in to comment.