mirror of
https://github.com/daylinmorgan/yartsu.git
synced 2024-11-10 00:23:15 -06:00
docs: remove release specific instructions
This commit is contained in:
parent
784cfa9f5b
commit
2ec0537ce3
2 changed files with 7 additions and 9 deletions
14
README.md
14
README.md
|
@ -37,20 +37,18 @@ If you come across anything unexpected please submit an issue.
|
||||||
pip install yartsu
|
pip install yartsu
|
||||||
```
|
```
|
||||||
|
|
||||||
You can also install the [`shiv`](https://github.com/linkedin/shiv) based zipapp from the releases page.
|
You can also download the [`shiv`](https://github.com/linkedin/shiv) based zipapp from the releases page.
|
||||||
|
|
||||||
With `cURL`:
|
Optionally with [`eget`](https://github.com/zyedidia/eget):
|
||||||
```bash
|
|
||||||
curl -o ~/bin/yartsu -fL https://github.com/daylinmorgan/yartsu/releases/download/v22.06-beta1/yartsu
|
|
||||||
chmod u+x ~/bin/yartsu
|
|
||||||
```
|
|
||||||
|
|
||||||
With [`eget`](https://github.com/zyedidia/eget):
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
eget daylinmorgan/yartsu
|
eget daylinmorgan/yartsu
|
||||||
```
|
```
|
||||||
|
|
||||||
|
This version will bundle depedencies and unpack them at `~/.shiv` at first runtime.
|
||||||
|
You can change this location by setting the `SHIV_ROOT` environment variable.
|
||||||
|
See `shiv` for more info.
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
<div align="center"><img src="https://raw.githubusercontent.com/daylinmorgan/yartsu/main/assets/yartsu.svg" alt="Logo" width=600 ></div>
|
<div align="center"><img src="https://raw.githubusercontent.com/daylinmorgan/yartsu/main/assets/yartsu.svg" alt="Logo" width=600 ></div>
|
||||||
|
|
|
@ -112,7 +112,7 @@ def main() -> None:
|
||||||
parsed_input = Text.from_ansi(args.input.read())
|
parsed_input = Text.from_ansi(args.input.read())
|
||||||
|
|
||||||
elif args.demo:
|
elif args.demo:
|
||||||
parsed_input = make_test_card()
|
parsed_input = make_test_card() # type: ignore
|
||||||
|
|
||||||
title = args.title or cmd or "yartsu"
|
title = args.title or cmd or "yartsu"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue