Show download status in episode list
This commit is contained in:
parent
90b4f04e35
commit
24f686fad6
3 changed files with 27 additions and 1 deletions
2
main.py
2
main.py
|
@ -116,6 +116,7 @@ class gPotherSide:
|
|||
'id': episode.id,
|
||||
'title': episode.title,
|
||||
'progress': episode.download_progress(),
|
||||
'downloadState': episode.state,
|
||||
}
|
||||
|
||||
def load_episodes(self, id):
|
||||
|
@ -142,6 +143,7 @@ class gPotherSide:
|
|||
'podcast': episode.channel.title,
|
||||
'published': util.format_date(episode.published),
|
||||
'progress': episode.download_progress(),
|
||||
'downloadState': episode.state,
|
||||
}
|
||||
|
||||
def get_fresh_episodes(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue