Skip to content

Commit

Permalink
feat(v0.1.6,notes): release notes // version updates for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnwriter committed Sep 22, 2023
1 parent 0125b8a commit 64d0c0c
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Version 0.1.6

## features
- define x/y ratio
- stdin support
- Much more error handeling
- timeout option
- Refactored codesbase a lot

105 changes: 104 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hxn"
version = "0.1.5"
version = "0.1.6"
edition = "2021"
authors = [ "PwnWriter < hey@pwnwriter.xyz >" ]
description = "Blazingly fast tool to grab screenshots of url/webpages from terminal."
Expand All @@ -15,7 +15,7 @@ categories = ["accessibility", "web-programming", "command-line" ]

[dependencies]
url = "2.3.1"
reqwest = "0.11.16"
reqwest = { version = "0.11.16", features = ["rustls-tls"] }
tokio = { version = "1.27.0", features = ["full"] }
chromiumoxide = { version = "0.5.0", features = ["tokio-runtime"], default-features = false }
futures = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion src/cli/ascii.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn splash() -> String {
let logo = r"
╦ ╦╔═╗╦ ╦╦ ╔═╗╔╗╔
╠═╣╠═╣╚╦╝║ 𝖃║ ║║║║
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╝╝╚╝v0.1.5
╩ ╩╩ ╩ ╩ ╩═╝ ╚═╝╝╚╝v0.1.6
by @PwnWriter
"
.purple();
Expand Down

0 comments on commit 64d0c0c

Please sign in to comment.