Compare commits

..

No commits in common. "297daaa51bc4c43bbca96bb254a99b5d4e66a5b3" and "7c741a476ff8331911cb1f30e450cc5ec0e74840" have entirely different histories.

6 changed files with 6 additions and 12 deletions

View file

@ -1,5 +1,5 @@
[bumpversion] [bumpversion]
current_version = 0.3.1 current_version = 0.3.0
commit = True commit = True
tag = True tag = True

View file

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "ucast" name = "ucast"
version = "0.3.1" version = "0.3.0"
description = "YouTube to Podcast converter" description = "YouTube to Podcast converter"
authors = ["Theta-Dev <t.testboy@gmail.com>"] authors = ["Theta-Dev <t.testboy@gmail.com>"]
packages = [ packages = [

View file

@ -1,4 +1,4 @@
__version__ = "0.3.1" __version__ = "0.3.0"
def template_context(request): def template_context(request):

View file

@ -1,5 +1,5 @@
<div class="mb-4"> <div class="mb-4">
<a class="subtitle">{{ n_tasks }} Tasks</a> <a class="subtitle">{{ n_downloading_videos }} Videos</a>
</div> </div>
<div class="mb-4 overflow-x"> <div class="mb-4 overflow-x">
<table class="table"> <table class="table">

View file

@ -35,16 +35,10 @@
<div class="video-card-content"> <div class="video-card-content">
<div class="level"> <div class="level">
<div style="max-width: 80%; overflow: hidden"> <span class="tag">
<span class="tag">
<i
class="fas fa-user"></i>&nbsp; <a href="{% url 'videos' video.channel.slug %}">{{ video.channel.name }}</a>
</span>
<span class="tag">
<i <i
class="fas fa-calendar"></i>&nbsp; {{ video.published|date:"SHORT_DATE_FORMAT" }} class="fas fa-calendar"></i>&nbsp; {{ video.published|date:"SHORT_DATE_FORMAT" }}
</span> </span>
</div>
<div class="field has-addons"> <div class="field has-addons">
<div class="control"> <div class="control">

View file

@ -171,7 +171,7 @@ def downloads(request: http.HttpRequest):
{ {
"failed_jobs": failed_jobs, "failed_jobs": failed_jobs,
"downloading_videos": downloading_videos, "downloading_videos": downloading_videos,
"n_tasks": queue.get_queue().count, "n_downloading_videos": 1,
}, },
) )