Skip to content

Commit

Permalink
Release/0.5.0 (#11)
Browse files Browse the repository at this point in the history
* bump package versions

* minor update to readem prior to release
  • Loading branch information
auyer committed Apr 12, 2023
1 parent d867054 commit 50389ea
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 64 deletions.
59 changes: 6 additions & 53 deletions Cargo.lock

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

22 changes: 15 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

Lib, CLI and GUI(wip) program to automate the installation and update of Proton-GE

> **NOTE**: This is not nearly as feature complete as the original Protonup.
> **NOTE**: This has no relations with the original ProtonUp project, and I am glad it was created.
> ~~This is not nearly as feature complete as the original Protonup~~.
>
> I've create it because the original project had a few issues with its Python dependencies (that most likely got fixed already).
> I wanted to to re-create it in rust, in a way it could be used as a lib and a CLI.
> ~~If this repo gets to a stable and feature rich state, I will publish it to Cargo and other repositories.~~
> ~~If this repo gets to a stable and feature rich state, I will publish it to Cargo and other repositories.~~ I guess it got there! Thanks!
[![asciicast](https://asciinema.org/a/rEO6Oipjn4rBkTWAtH1IFf3Xe.svg)](https://asciinema.org/a/rEO6Oipjn4rBkTWAtH1IFf3Xe)

Expand All @@ -16,14 +18,20 @@ The default way is to simply invoke the cli, and navigate the text interface.
protonup-rs
```

To run a quick update and get the latest GE Proton version without navigating the TUI, you can use the quickUpdate flags:
To run a quick update and get the latest GE Proton version without navigating the TUI, you can use the quick flags:
```bash
-q, --quick-download Download latest directly
-f, --quick-download-flatpak Download latest for Steam FlatPak
-l, --lutris-quick-download Download latest Wine GE for Lutris
-q, --quick-download Download latest directly
-f, --quick-download-flatpak Download latest for Steam FlatPak
-l, --lutris-quick-download Download latest Wine GE for Lutris
-L, --lutris-quick-download-flatpak Download latest Wine GE for Lutris FlatPak
-h, --help Print help
-h, --help Print help
```
You can also combine them and get all the latest version running:

```bash
protonup-rs -q -f -l -L
```

---

## Installing:
Expand Down
2 changes: 1 addition & 1 deletion libprotonup/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "libprotonup"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Auyer <auyer@rcpassos.me>"]
repository = "https://github.com/auyer/protonup-rs"
Expand Down
6 changes: 3 additions & 3 deletions protonup-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "protonup-rs"
version = "0.4.2"
version = "0.5.0"
edition = "2021"
authors = ["Auyer <auyer@rcpassos.me>"]
repository = "https://github.com/auyer/protonup-rs"
Expand All @@ -12,9 +12,9 @@ description = "TUI Program for Custom Proton Download and installation written i
[dependencies]

# Use this to use the local changes in libprotonup.
libprotonup = { path = "../libprotonup" }
# libprotonup = { path = "../libprotonup" }
# This is necessary to publish to crates.io
# libprotonup = { version = "0.4.2" }
libprotonup = { version = "0.5.0" }
inquire = { version = "0.6", default-features = false, features = ["termion"] }
indicatif = { version = "0.17", features = [
"improved_unicode",
Expand Down

0 comments on commit 50389ea

Please sign in to comment.