Compare commits
2 commits
abca50d615
...
6178592d10
Author | SHA1 | Date | |
---|---|---|---|
|
6178592d10 | ||
|
dc1f7b6376 |
3 changed files with 12 additions and 7 deletions
6
db.py
6
db.py
|
@ -16,9 +16,9 @@ PROGRESS = {
|
||||||
NOTIFICATION_BUFFER_SIZE = 30
|
NOTIFICATION_BUFFER_SIZE = 30
|
||||||
NOTIFICATION_MESSAGES = collections.deque([], NOTIFICATION_BUFFER_SIZE)
|
NOTIFICATION_MESSAGES = collections.deque([], NOTIFICATION_BUFFER_SIZE)
|
||||||
|
|
||||||
NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN = 3
|
NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN = 12
|
||||||
NOTIFICATION_HISTORY_BUFFER_TIMESPAN_MIN = 60
|
NOTIFICATION_HISTORY_BUFFER_TIMESPAN_MIN = 20
|
||||||
NOTIFICATION_HISTORY_FREQUENCY = NOTIFICATION_HISTORY_BUFFER_TIMESPAN_MIN / NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN
|
NOTIFICATION_HISTORY_FREQUENCY = 60 / NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN
|
||||||
notification_history_size = NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN * NOTIFICATION_HISTORY_BUFFER_TIMESPAN_MIN
|
notification_history_size = NOTIFICATION_HISTORY_BUFFER_RESOLUTION_PER_MIN * NOTIFICATION_HISTORY_BUFFER_TIMESPAN_MIN
|
||||||
NOTIFICATION_HISTORY = collections.deque([], notification_history_size)
|
NOTIFICATION_HISTORY = collections.deque([], notification_history_size)
|
||||||
NOTIFICATION_HISTORY.extend([0] * notification_history_size)
|
NOTIFICATION_HISTORY.extend([0] * notification_history_size)
|
||||||
|
|
|
@ -33,7 +33,12 @@
|
||||||
blur: 3,
|
blur: 3,
|
||||||
color: '#000',
|
color: '#000',
|
||||||
opacity: 0.45
|
opacity: 0.45
|
||||||
}
|
},
|
||||||
|
animations: {
|
||||||
|
enabled: true,
|
||||||
|
easing: 'easeinout',
|
||||||
|
speed: 200,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
plotOptions: {
|
plotOptions: {
|
||||||
bar: {
|
bar: {
|
||||||
|
@ -47,7 +52,7 @@
|
||||||
},
|
},
|
||||||
tooltip: {
|
tooltip: {
|
||||||
enabled: false,
|
enabled: false,
|
||||||
}
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
watch(verbose, (newValue) => {
|
watch(verbose, (newValue) => {
|
||||||
|
|
|
@ -63,11 +63,11 @@
|
||||||
<th
|
<th
|
||||||
v-for="(task, task_index) in exercise.tasks"
|
v-for="(task, task_index) in exercise.tasks"
|
||||||
:key="task.name"
|
:key="task.name"
|
||||||
class="border-b border-slate-100 dark:border-slate-700 p-3"
|
class="border-b border-slate-100 dark:border-slate-700 p-3 align-top"
|
||||||
:title="task.description"
|
:title="task.description"
|
||||||
>
|
>
|
||||||
<div class="flex flex-col">
|
<div class="flex flex-col">
|
||||||
<span class="text-center font-normal text-sm dark:text-blue-200 text-slate-500">Task {{ task_index + 1 }}</span>
|
<span class="text-center font-normal text-sm dark:text-blue-200 text-slate-500 text-nowrap">Task {{ task_index + 1 }}</span>
|
||||||
<i class="text-center">{{ task.name }}</i>
|
<i class="text-center">{{ task.name }}</i>
|
||||||
</div>
|
</div>
|
||||||
</th>
|
</th>
|
||||||
|
|
Loading…
Reference in a new issue