diff --git a/Cargo.toml b/Cargo.toml index f66250c..d3e9de5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hxn" -version = "0.1.1" +version = "0.1.2" edition = "2021" authors = [ "PwnWriter < hey@pwnwriter.xyz >" ] description = "Blazingly fast tool to grab screenshots of url/webpages from terminal." @@ -9,7 +9,7 @@ repository = "https://github.com/bytehunt/haylxon" homepage = "https://github.com/bytehunt/haylxon.git" license = "MIT" keywords = ["screenshots", "bug-bounty", "recon", "pwn", "OSINT" ] -categories = ["accessibility", "command-line-utility", "CLI" ] +categories = ["accessibility", "web-programming", "command-line" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/ascii.rs b/src/ascii.rs index bae83cc..8be98ea 100644 --- a/src/ascii.rs +++ b/src/ascii.rs @@ -1,18 +1,11 @@ -//pub const HYALCON: &str = r" -//╦ ╦┌─┐┬ ┬┬ ┌─┐┌─┐┌┐┌ -//╠═╣├─┤└┬┘│ │ │ ││││ -//╩ ╩┴ ┴ ┴ ┴─┘└─┘└─┘┘└┘v1.0.0 -// by @pwnwriter -//"; - pub const BAR: &str = r" ──────────────────────────────── "; pub const HXN: &str = r" -╦ ╦╔═╗╦ ╦╦ ═╗ ╦╔═╗╔╗╔ -╠═╣╠═╣╚╦╝║ ╔╩╦╝║ ║║║║ -╩ ╩╩ ╩ ╩ ╩═╝╩ ╚═╚═╝╝╚╝v0.1.1 - Shoot before the blink  +╦ ╦╔═╗╦ ╦╦ ╔═╗╔╗╔ +╠═╣╠═╣╚╦╝║ 𝖃║ ║║║║ +╩ ╩╩ ╩ ╩ ╩═╝ ╚═╝╝╚╝v0.1.2 + Shoot before the blink  by @PwnWriter "; diff --git a/src/colors.rs b/src/colors.rs index 839aefd..97d0eb3 100644 --- a/src/colors.rs +++ b/src/colors.rs @@ -4,9 +4,11 @@ pub const CYAN: &str = "\x1b[36m"; //( bright, light blue-green color) pub const GREEN: &str = "\x1b[32m"; //( bright, medium green color) pub const BLUE: &str = "\x1b[34m"; //( bright, medium blue color) - //pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color) pub const RED: &str = "\x1b[31m"; //( bright, medium red color) pub const YELLOW: &str = "\x1B[32m"; //( bright, medium yellow color) - //pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color) pub const YELLOW_BRIGHT: &str = "\x1B[93m"; //( very bright, light yellow color) pub const RESET: &str = "\x1B[0m"; //( resets the text color to the default) + +// unused colors rn :- + //pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color) + //pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color)