Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.5.0 #11

Merged
merged 2 commits into from
Apr 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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