Updated README and Cargo.toml to reflect version changes.

This commit is contained in:
River 2023-03-01 11:53:55 -05:00
parent bf6402b8c4
commit 1d92474cd2
4 changed files with 9 additions and 8 deletions

6
Cargo.lock generated
View File

@ -333,7 +333,7 @@ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
[[package]] [[package]]
name = "oxidefetch" name = "oxidefetch"
version = "1.0.1" version = "1.1.0"
dependencies = [ dependencies = [
"byte-unit", "byte-unit",
"chrono", "chrono",
@ -421,9 +421,9 @@ dependencies = [
[[package]] [[package]]
name = "sysinfo" name = "sysinfo"
version = "0.27.2" version = "0.28.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "17351d0e9eb8841897b14e9669378f3c69fb57779cc04f8ca9a9d512edfb2563" checksum = "38a81bbc26c485910df47772df6bbcdb417036132caa9e51e29d2e39c4636d4e"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"core-foundation-sys", "core-foundation-sys",

View File

@ -1,6 +1,6 @@
[package] [package]
name = "oxidefetch" name = "oxidefetch"
version = "1.0.1" version = "1.1.0"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@ -11,5 +11,5 @@ chrono = "0.4.23"
colored = "2.0.0" colored = "2.0.0"
compound_duration = "1.2.0" compound_duration = "1.2.0"
quoted-string = "0.6.1" quoted-string = "0.6.1"
sysinfo = "0.27.2" sysinfo = "0.28.1"
whoami = "1.3.0" whoami = "1.3.0"

View File

@ -1,4 +1,4 @@
# oxidefetch 1.0.1 # oxidefetch 1.1.0
Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch! Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch!
![alt text](image.png "Title") ![alt text](image.png "Title")
@ -35,3 +35,4 @@ regarding your real name, IP, location, etc. You can look at the file it generat
### Changelog ### Changelog
1.0.0: Official full stable release 1.0.0: Official full stable release
1.0.1: Fixed distro name for Debian GNU/Linux. Logo & color works now. 1.0.1: Fixed distro name for Debian GNU/Linux. Logo & color works now.
1.1.0: Refactored some poorly written typing, and added support for memory.

View File

@ -59,7 +59,7 @@ struct InformationStruct {
kernel_ver: Option<String>, kernel_ver: Option<String>,
uptime: String, uptime: String,
shell: Option<String>, shell: Option<String>,
_terminal: Option<String>, terminal: Option<String>,
cpu: String, cpu: String,
gpu: Option<String>, gpu: Option<String>,
memory: String, memory: String,
@ -94,7 +94,7 @@ impl InformationStruct {
} }
}, },
_terminal: None, // TODO: Add terminal detection. terminal: None, // TODO: Add terminal detection.
cpu: String::from(sys.cpus()[0].brand()), cpu: String::from(sys.cpus()[0].brand()),