Added BrokenFeed Issue template.
This commit is contained in:
parent
3899e8ed39
commit
a63a6e168c
22
.gitlab/issue_templates/BrokenFeed.md
Normal file
22
.gitlab/issue_templates/BrokenFeed.md
Normal 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. ...
|
||||
|
||||
@ -87,8 +87,8 @@ There are also some minor tasks tagged with `TODO:` and `FIXME:` in the source c
|
||||
```sh
|
||||
$ tree -d
|
||||
├── assets # png's used in the README.md
|
||||
├── hammond-data # Storate related stuff, Sqlite db, XDG setup.
|
||||
│ ├── migrations # Diesel migrations.
|
||||
├── hammond-data # Storate related stuff, SQLite, XDG setup, RSS Parser.
|
||||
│ ├── migrations # Diesel SQL migrations.
|
||||
│ │ └── ...
|
||||
│ ├── src
|
||||
│ └── tests
|
||||
@ -99,8 +99,8 @@ $ tree -d
|
||||
│ ├── resources # GResources folder
|
||||
│ │ └── gtk # Contains the glade.ui files.
|
||||
│ └── src
|
||||
│ ├── views # Currently only contains the Empty and Episodes views.
|
||||
│ └── widgets # Contains custom widgets such as Podcast and Episode.
|
||||
│ ├── views # Contains the Empty, Episodes and Shows view.
|
||||
│ └── widgets # Contains custom widgets such as Show and Episode.
|
||||
```
|
||||
|
||||
## A note about the project's name
|
||||
|
||||
@ -150,6 +150,7 @@ mod tests {
|
||||
|
||||
let download_fold = get_download_folder(&pd.title()).unwrap();
|
||||
add(episode.rowid(), download_fold.as_str(), sender);
|
||||
assert_eq!(ACTIVE_DOWNLOADS.read().unwrap().len(), 1);
|
||||
|
||||
// Give it soem time to download the file
|
||||
thread::sleep(time::Duration::from_secs(40));
|
||||
|
||||
Loading…
Reference in New Issue
Block a user