Improved Readme.

This commit is contained in:
Jordan Petridis 2017-10-24 07:34:18 +03:00
parent 9655ad6084
commit c9b22ea6e2
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
4 changed files with 21 additions and 3 deletions

View File

@ -2,8 +2,22 @@
## Prototype of a multithreaded, safe, and reliable Gtk+ Podcast client.
Description...
![podcasts_view](./assets/podcasts_view.png)
![podcast_widget](./assets/podcast_widget.png)
**A note about the project's name:**
The project was named after Allan Moore's character [Evey Hammond](https://en.wikipedia.org/wiki/Evey_Hammond) from the graphic novel V for Vendetta.
It has nothing to do with the horrible headlines on the news.
## Quick start
Flatpak instructions...
```sh
git clone https://gitlab.gnome.org/alatiera/Hammond.git
cd Hammond/
cargo run -p hammond-gtk --release
```
### Flatpak:
Flatpak instructions... Soon™.
## Dependancies:
@ -29,11 +43,14 @@ If you happen to build it on other distributions please let me know the names of
```sh
git clone https://gitlab.gnome.org/alatiera/Hammond.git
cd Hammond/
cargo run -p hammond-gtk --release
cargo build --all
```
## Overview:
foo
To be added.
## Contributing:
There alot of thins to be done, take a look at TODO.md or grep for TODO: and FIXME:.
to be added: CONTRIBUTING.md

BIN
assets/podcast_widget.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 81 KiB

BIN
assets/podcasts_view.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 464 KiB

View File

@ -179,5 +179,6 @@ pub fn episodes_listbox(db: &Database, pd_title: &str) -> gtk::ListBox {
list.set_vexpand(false);
list.set_hexpand(false);
list.set_visible(true);
list.set_selection_mode(gtk::SelectionMode::None);
list
}