[b]Fixes[/b]
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.
[b]GitHub[/b]
Added the ability to delete repositories.
[list]Go to your own repository page → [b]Delete[/b]
[b]Terminal Updates[/b]
[b]Improvements[/b]
Commands listed in the [c]help[/c] menu are now sorted alphabetically.
[b]New Commands[/b]
[c]touch[/c] — Create a new file
[code]touch notes.txt touch script.ts[/code][c]echo[/c] — Print text output
[code]echo "Hello World!" echo Line1\\nLine2[/code][c]cp[/c] — Copy files
[code]cp notes.txt backup.txt[/code][c]mv[/c] — Move or rename files
[code]mv old.txt new.txt[/code][hr][/hr][b]New Operators[/b]
[c]>[/c] — Redirect output to a file Creates the file if it doesn't exist. Overwrites it if it does.
[code]echo "192.168.1.1" > targets.txt nmap 10.0.0.1 -sV > scan_results.txt nslookup example.com > dns.txt ls > filelist.txt[/code][c]>>[/c] — Append output to a file
[code]echo "first target" > targets.txt echo "second target" >> targets.txt[/code][b]Combining pipes with redirection[/b]
[code]cat config.txt | grep "password" > found.txt[/code]