Added BrokenFeed Issue template.

This commit is contained in:
Jordan Petridis 2018-01-10 08:27:13 +02:00
parent 3899e8ed39
commit a63a6e168c
No known key found for this signature in database
GPG Key ID: CEABAD9F5683B9A6
3 changed files with 27 additions and 4 deletions

View File

@ -0,0 +1,22 @@
## Invalid RSS Feed Template.
Please provide the source of the xml rss feed.
**Feed URL**
example.com/podcast
**Detailed description of the issue**.
Would be helpfull if error messages where included from stderr.
If you are not sure how to do it, feel free to ask and we will walk you through it!
Some common cases might be:
* Feed cannot be added
* Broken Feed Image
* Episode(s) do not download
Steps to reproduce:
1. Open Hammond
2. Do an action
3. ...

View File

@ -87,8 +87,8 @@ There are also some minor tasks tagged with `TODO:` and `FIXME:` in the source c
```sh ```sh
$ tree -d $ tree -d
├── assets # png's used in the README.md ├── assets # png's used in the README.md
├── hammond-data # Storate related stuff, Sqlite db, XDG setup. ├── hammond-data # Storate related stuff, SQLite, XDG setup, RSS Parser.
│   ├── migrations # Diesel migrations. │   ├── migrations # Diesel SQL migrations.
│   │   └── ... │   │   └── ...
│   ├── src │   ├── src
│   └── tests │   └── tests
@ -99,8 +99,8 @@ $ tree -d
│   ├── resources # GResources folder │   ├── resources # GResources folder
│   │   └── gtk # Contains the glade.ui files. │   │   └── gtk # Contains the glade.ui files.
│   └── src │   └── src
│   ├── views # Currently only contains the Empty and Episodes views. │   ├── views # Contains the Empty, Episodes and Shows view.
│   └── widgets # Contains custom widgets such as Podcast and Episode. │   └── widgets # Contains custom widgets such as Show and Episode.
``` ```
## A note about the project's name ## A note about the project's name

View File

@ -150,6 +150,7 @@ mod tests {
let download_fold = get_download_folder(&pd.title()).unwrap(); let download_fold = get_download_folder(&pd.title()).unwrap();
add(episode.rowid(), download_fold.as_str(), sender); add(episode.rowid(), download_fold.as_str(), sender);
assert_eq!(ACTIVE_DOWNLOADS.read().unwrap().len(), 1);
// Give it soem time to download the file // Give it soem time to download the file
thread::sleep(time::Duration::from_secs(40)); thread::sleep(time::Duration::from_secs(40));