Improved Readme.
This commit is contained in:
parent
9655ad6084
commit
c9b22ea6e2
23
README.md
23
README.md
@ -2,8 +2,22 @@
|
|||||||
## Prototype of a multithreaded, safe, and reliable Gtk+ Podcast client.
|
## Prototype of a multithreaded, safe, and reliable Gtk+ Podcast client.
|
||||||
Description...
|
Description...
|
||||||
|
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
**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
|
## 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:
|
## Dependancies:
|
||||||
|
|
||||||
@ -29,11 +43,14 @@ If you happen to build it on other distributions please let me know the names of
|
|||||||
```sh
|
```sh
|
||||||
git clone https://gitlab.gnome.org/alatiera/Hammond.git
|
git clone https://gitlab.gnome.org/alatiera/Hammond.git
|
||||||
cd Hammond/
|
cd Hammond/
|
||||||
cargo run -p hammond-gtk --release
|
cargo build --all
|
||||||
```
|
```
|
||||||
|
|
||||||
## Overview:
|
## Overview:
|
||||||
foo
|
|
||||||
|
To be added.
|
||||||
|
|
||||||
## Contributing:
|
## 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
|
to be added: CONTRIBUTING.md
|
||||||
BIN
assets/podcast_widget.png
Normal file
BIN
assets/podcast_widget.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 81 KiB |
BIN
assets/podcasts_view.png
Normal file
BIN
assets/podcasts_view.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 464 KiB |
@ -179,5 +179,6 @@ pub fn episodes_listbox(db: &Database, pd_title: &str) -> gtk::ListBox {
|
|||||||
list.set_vexpand(false);
|
list.set_vexpand(false);
|
||||||
list.set_hexpand(false);
|
list.set_hexpand(false);
|
||||||
list.set_visible(true);
|
list.set_visible(true);
|
||||||
|
list.set_selection_mode(gtk::SelectionMode::None);
|
||||||
list
|
list
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user