
Fixes
Fixed a crash that could occur after installing Kisscord.
Fixed an issue that caused Copy-Paste to break.
Fixed a crash in the Log Viewer.
Fixed an issue where notes could duplicate in the Notepad application.
Implemented major security improvements for the scripting system.
Added the ability to delete repositories.
Go to your own repository page → Delete
Improvements
Commands listed in the help menu are now sorted alphabetically.
New Commands
touch — Create a new file
touch notes.txt
touch script.ts
echo — Print text output
echo "Hello World!"
echo Line1\\nLine2
cp — Copy files
cp notes.txt backup.txt
mv — Move or rename files
mv old.txt new.txt
> — Redirect output to a file
Creates the file if it doesn't exist. Overwrites it if it does.
echo "192.168.1.1" > targets.txt
nmap 10.0.0.1 -sV > scan_results.txt
nslookup example.com > dns.txt
ls > filelist.txt
>> — Append output to a file
echo "first target" > targets.txt
echo "second target" >> targets.txt
Combining pipes with redirection
cat config.txt | grep "password" > found.txt