Compare commits
2 Commits
84abfb7cf7
...
a809676731
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a809676731 | ||
|
|
26d737b3fc |
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.121",
|
"version": "4.6.122",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.121",
|
"version": "4.6.122",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"axios": "^1.6.0",
|
"axios": "^1.6.0",
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "twitch-vod-manager",
|
"name": "twitch-vod-manager",
|
||||||
"version": "4.6.121",
|
"version": "4.6.122",
|
||||||
"description": "Twitch VOD Manager - Download Twitch VODs easily",
|
"description": "Twitch VOD Manager - Download Twitch VODs easily",
|
||||||
"main": "dist/main.js",
|
"main": "dist/main.js",
|
||||||
"author": "xRangerDE",
|
"author": "xRangerDE",
|
||||||
|
|||||||
@ -45,9 +45,9 @@ function renderQueueItemFileActions(item: QueueItem): string {
|
|||||||
: `${escapeHtml(UI_TEXT.queue.outputFilesLabel.replace('{count}', String(item.outputFiles.length)))}`;
|
: `${escapeHtml(UI_TEXT.queue.outputFilesLabel.replace('{count}', String(item.outputFiles.length)))}`;
|
||||||
|
|
||||||
return `
|
return `
|
||||||
<div class="queue-output-row" style="display:flex; gap:6px; margin-top:6px; flex-wrap:wrap; align-items:center;">
|
<div class="queue-output-row">
|
||||||
${buttons.join('')}
|
${buttons.join('')}
|
||||||
<span style="color: var(--text-secondary,#888); font-size:11px; word-break:break-all;">${fileLabel}</span>
|
<span class="queue-output-label">${fileLabel}</span>
|
||||||
</div>
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4451,3 +4451,21 @@ input[type="number"]::-webkit-outer-spin-button {
|
|||||||
margin: 4px 6px;
|
margin: 4px 6px;
|
||||||
background: var(--border-soft);
|
background: var(--border-soft);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Output-row appended to the queue-item detail panel when a job
|
||||||
|
completed. Lists the file actions (Open file / Show in folder /
|
||||||
|
View chat / View events) followed by a tiny secondary-colour file
|
||||||
|
label. */
|
||||||
|
.queue-output-row {
|
||||||
|
display: flex;
|
||||||
|
gap: 6px;
|
||||||
|
margin-top: 6px;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.queue-output-label {
|
||||||
|
color: var(--text-secondary);
|
||||||
|
font-size: 11px;
|
||||||
|
word-break: break-all;
|
||||||
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user