Skip to content

Commit d0c7592

Browse files
authored
Merge pull request #9 from pwnwriter/v0.1.2
V0.1.2
2 parents fedb755 + fd7528e commit d0c7592

File tree

3 files changed

+10
-15
lines changed

3 files changed

+10
-15
lines changed

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hxn"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
authors = [ "PwnWriter < [email protected] >" ]
66
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."
@@ -9,7 +9,7 @@ repository = "https://github.com/bytehunt/haylxon"
99
homepage = "https://github.com/bytehunt/haylxon.git"
1010
license = "MIT"
1111
keywords = ["screenshots", "bug-bounty", "recon", "pwn", "OSINT" ]
12-
categories = ["accessibility", "command-line-utility", "CLI" ]
12+
categories = ["accessibility", "web-programming", "command-line" ]
1313

1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

src/ascii.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,11 @@
1-
//pub const HYALCON: &str = r"
2-
//╦ ╦┌─┐┬ ┬┬ ┌─┐┌─┐┌┐┌
3-
//╠═╣├─┤└┬┘│ │ │ ││││
4-
//╩ ╩┴ ┴ ┴ ┴─┘└─┘└─┘┘└┘v1.0.0
5-
// by @pwnwriter
6-
//";
7-
81
pub const BAR: &str = r"
92
────────────────────────────────
103
";
114

125
pub const HXN: &str = r"
13-
╦ ╦╔═╗╦ ╦╦ ═╗ ╦╔═╗╔╗╔
14-
╠═╣╠═╣╚╦╝║ ╔╩╦╝║ ║║║║
15-
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╚═╝╝╚╝v0.1.1
16-
Shoot before the blink 
6+
╦ ╦╔═╗╦ ╦╦ ╔═╗╔╗╔
7+
╠═╣╠═╣╚╦╝║ 𝖃║ ║║║║
8+
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╝╝╚╝v0.1.2
9+
Shoot before the blink 
1710
by @PwnWriter
1811
";

src/colors.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
pub const CYAN: &str = "\x1b[36m"; //( bright, light blue-green color)
55
pub const GREEN: &str = "\x1b[32m"; //( bright, medium green color)
66
pub const BLUE: &str = "\x1b[34m"; //( bright, medium blue color)
7-
//pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color)
87
pub const RED: &str = "\x1b[31m"; //( bright, medium red color)
98
pub const YELLOW: &str = "\x1B[32m"; //( bright, medium yellow color)
10-
//pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color)
119
pub const YELLOW_BRIGHT: &str = "\x1B[93m"; //( very bright, light yellow color)
1210
pub const RESET: &str = "\x1B[0m"; //( resets the text color to the default)
11+
12+
// unused colors rn :-
13+
//pub const MAGENTAA: &str = "\x1b[35m"; //( bright, medium pinkish-purple color)
14+
//pub const WHITE: &str = "\x1B[37m"; //( bright, pale gray color)

0 commit comments

Comments
 (0)