Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
auyer committed Nov 27, 2022
1 parent 55980cc commit 2b00d12
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 4 deletions.
23 changes: 22 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,37 @@ To run a quick update and get the latest GE Proton version, you can use the quic
protonup-rs -q
```

## Installing:

Get the latest binary:
[Download link](https://github.com/auyer/Protonup-rs/releases/latest/download/protonup-rs-linux-amd64.zip)

It is a single binary. You can just run it, or add it to your path so you can call it from anywhere.

Quick way to add it to your path:
```
cd Downloads
sudo unzip protonup-rs-linux-amd64.zip -d /usr/bin
```


## Building from source

Clone repo
You can install from source using the last released version in Crates.io:

```
cargo install protonup-rs
```

Or clone repo:

```bash
cd protonup-rs
cargo build -p protonup-rs --release
mv ./target/release/protonup-rs "your path"
```


## GUI

Not ready for usage.
4 changes: 2 additions & 2 deletions libprotonup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libprotonup"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Auyer <auyer@rcpassos.me>"]
repository = "https://github.com/auyer/protonup-rs"
Expand All @@ -15,7 +15,7 @@ flate2 = "1.0"
futures-util = "0.3"
hex = "0.4"
hex-literal = "0.3"
reqwest = { version = "0.11.12", default-features = false, features = [
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"stream",
"rustls",
Expand Down
2 changes: 1 addition & 1 deletion protonup-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "protonup-rs"
version = "0.2.0"
version = "0.3.0"
edition = "2021"
authors = ["Auyer <auyer@rcpassos.me>"]
repository = "https://github.com/auyer/protonup-rs"
Expand Down

0 comments on commit 2b00d12

Please sign in to comment.