From bd9799664cf038bf4f7e53d6752a0944454812b5 Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Tue, 24 Jan 2023 23:13:50 -0500 Subject: [PATCH 1/6] Fixed Debian distro name --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 247aacf..42d81f7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -134,7 +134,7 @@ impl InformationStruct { "Alpine Linux" => '', "Arch Linux" => '', "CentOS" => '', - "Linux Debian" => '', + "Debian GNU/Linux" => '', "ElementaryOS" => '', "EndeavourOS" => '', "Fedora Linux" => '', From c6134abb68d3f8450a8b52dfa6cfb954c46a5ec8 Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Tue, 24 Jan 2023 23:14:58 -0500 Subject: [PATCH 2/6] Fixed Debian distro name, again --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 42d81f7..dd6b691 100644 --- a/src/main.rs +++ b/src/main.rs @@ -173,7 +173,7 @@ impl InformationStruct { // Again, I don't know whether this is what the strings will look like. // Feel free to fix if it's broken on your system. { - "Linux Debian" => String::from("bright red"), + "Debian GNU/Linux" => String::from("bright red"), "FreeBSD" => String::from("red"), "Ubuntu Linux" => String::from("orange"), "Arch Linux" | "Windows" | "PopOS" => String::from("bright cyan"), From 7ac501b7bb300e55837210eb557c848d76610323 Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Thu, 26 Jan 2023 07:58:09 -0500 Subject: [PATCH 3/6] Added changelog and version --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1185271..3bcd7cd 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# oxidefetch +# oxidefetch 1.0.1 Fully cross platform Neofetch clone written in Rust. Up to 25 times faster than Neofetch! ![alt text](image.png "Title") @@ -31,3 +31,7 @@ with varying types of systems. I've tested Arch Linux and Windows 10, but nothin repo, and inside the folder, run ```cargo test -- --nocapture```, and send the resultant ```test_output.txt``` file to my noreply email address, or directly to me on Discord at ```Shibe Drill#9730```. This program does NOT collect information regarding your real name, IP, location, etc. You can look at the file it generates to be sure- it's all plaintext, babey. + +### Changelog +1.0.0: Official full stable release +1.0.1: Fixed distro name for Debian GNU/Linux. Logo & color works now. From 182a3853ce7188d2bca2a6786e670dc213d980df Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Thu, 26 Jan 2023 07:58:29 -0500 Subject: [PATCH 4/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3bcd7cd..5720016 100644 --- a/README.md +++ b/README.md @@ -33,5 +33,5 @@ noreply email address, or directly to me on Discord at ```Shibe Drill#9730```. T regarding your real name, IP, location, etc. You can look at the file it generates to be sure- it's all plaintext, babey. ### 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. From 8359f6a00c5b591406dcccd4f1906c9cdd85a944 Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Thu, 26 Jan 2023 07:58:50 -0500 Subject: [PATCH 5/6] Update Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a6abe02..7f23244 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "oxidefetch" -version = "0.1.0" +version = "1.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From b3bb037f791880038c099b4816761db4a1e3c855 Mon Sep 17 00:00:00 2001 From: Shibe Drill <53824200+shibedrill@users.noreply.github.com> Date: Thu, 26 Jan 2023 08:00:45 -0500 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5720016..06ebfb4 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ I've measured speeds of up to 25 times faster than normal Neofetch on WSL2. ### Dependencies (Build/Install) To build Oxidefetch, you need Cargo. You can use Cargo to automatically build and install it like so: ```cargo install --git https://github.com/shibedrill/oxidefetch```. -From there, it *should* be in your PATH. If not, add ```~/.cargo/bin``` to your PATH. If you do not already have Cargo installed +From there, it *should* be in your PATH. If not, add ```source ~/.cargo/env``` to your profile, or add ```~/.cargo/bin``` to your $PATH. If you do not already have Cargo installed on your system, you can do so by installing Rustup- either via the [instructions on their website](https://doc.rust-lang.org/cargo/getting-started/installation.html "instructions on their website") or via your system package manager. ### Dependencies (Runtime)