diff --git a/README.md b/README.md index c8d1363..528dd78 100644 --- a/README.md +++ b/README.md @@ -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 \ No newline at end of file diff --git a/assets/podcast_widget.png b/assets/podcast_widget.png new file mode 100644 index 0000000..659ea31 Binary files /dev/null and b/assets/podcast_widget.png differ diff --git a/assets/podcasts_view.png b/assets/podcasts_view.png new file mode 100644 index 0000000..a887a1f Binary files /dev/null and b/assets/podcasts_view.png differ diff --git a/hammond-gtk/src/widgets/episode.rs b/hammond-gtk/src/widgets/episode.rs index 5954b4f..2e8b2ab 100644 --- a/hammond-gtk/src/widgets/episode.rs +++ b/hammond-gtk/src/widgets/episode.rs @@ -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 }