Skip to content

Commit 0781c64

Browse files
committed
Add new screenshots
1 parent 7bcbef0 commit 0781c64

File tree

4 files changed

+11
-23
lines changed

4 files changed

+11
-23
lines changed

Cargo.lock

Lines changed: 6 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ rpassword = "7.0.0"
1616
users = "0.11.0"
1717
clap = { version = "4.3.10", features = ["cargo", "derive"] }
1818
isahc = { version = "1.7.2", features = ["json", "spnego", "static-ssl"] }
19-
cursive = { version = "0.18.0", features = ["crossterm-backend"], default-features = false }
19+
cursive = { version = "0.20.0", features = ["crossterm-backend"], default-features = false }
2020
uuid = { version = "1.1.2", features = ["v4"] }
2121

2222
[profile.release]

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,21 +6,20 @@ Clink is a command line interface for ordering drinks from any of the vending ma
66

77
It comes with a command line that can be used to list and purchase drinks.
88

9-
![screenshot of a cli with a list of machines and their offerings](https://user-images.githubusercontent.com/42927786/157095410-d208a41d-adcb-4991-b9c1-3e7a8ed38f8f.png)
9+
![screenshot of a cli with a list of machines and their offerings](https://github.com/ComputerScienceHouse/clink/assets/6877780/3534fcd3-56c3-40a6-81eb-5cf3967d138e)
1010

1111
Or, if you prefer a more graphical experience, you can use the ncurses UI.
1212

13-
![screenshot of an ncurses selection menu for selecting a vending machine](https://user-images.githubusercontent.com/42927786/157095299-7c97a0a0-9bb7-4366-ba4f-94324189b950.png)
13+
![screenshot of a TUI selection menu for selecting a vending machine](https://github.com/ComputerScienceHouse/clink/assets/6877780/caa23c8c-3ecc-466c-9351-4ac0a154229a)
1414

1515
## Usage
1616

1717
To use clink, simply...
1818

1919
1. Log onto any user machine
20-
2. Run `kinit` to get a kerberos token
2120
3. Run `clink`
2221

23-
![gif of clink in use](https://user-images.githubusercontent.com/42927786/157098855-302db1ed-13b8-4be5-b1bf-4431ea83e92f.gif)
22+
[![Video of clink in use](https://asciinema.org/a/XOqBYVrSromijPkq5EHABohuP.svg)](https://asciinema.org/a/XOqBYVrSromijPkq5EHABohuP)
2423

2524
## Development
2625
```

src/ui/ui_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ fn credit_count(model: Model, siv: &mut CursiveRunnable) -> Margins {
195195
let offset_y = 2;
196196
siv.screen_mut().add_transparent_layer_at(
197197
Position::new(Offset::Center, Offset::Parent(offset_y)),
198-
dialog,
198+
Layer::new(dialog),
199199
);
200200

201201
size = size.map_y(move |y| y + (offset_y as usize) + 1);

0 commit comments

Comments
 (0)