Compare commits

..

No commits in common. "af11cdda101c03ff3fd7abe7f455c92ee4c150ac" and "137bab63a02402abc6c115fb96276881465b9309" have entirely different histories.

4 changed files with 4 additions and 12 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.6.125", "version": "4.6.124",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.6.125", "version": "4.6.124",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "^1.6.0", "axios": "^1.6.0",

View File

@ -1,6 +1,6 @@
{ {
"name": "twitch-vod-manager", "name": "twitch-vod-manager",
"version": "4.6.125", "version": "4.6.124",
"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",

View File

@ -423,7 +423,7 @@ function renderStreamers(): void {
const showFilter = all.length >= STREAMER_FILTER_THRESHOLD; const showFilter = all.length >= STREAMER_FILTER_THRESHOLD;
if (filterInput) filterInput.style.display = showFilter ? '' : 'none'; if (filterInput) filterInput.style.display = showFilter ? '' : 'none';
// Compact title margin when filter is shown — avoids double gap. // Compact title margin when filter is shown — avoids double gap.
if (sectionTitle) sectionTitle.classList.toggle('compact', showFilter); if (sectionTitle) sectionTitle.style.marginBottom = showFilter ? '4px' : '';
// Empty state — small hint inside the sidebar when no streamers have // Empty state — small hint inside the sidebar when no streamers have
// been added yet. Without this the user sees a heading + blank space // been added yet. Without this the user sees a heading + blank space

View File

@ -120,14 +120,6 @@ body {
gap: 8px; gap: 8px;
} }
/* Compact spacing variant applied when the sidebar's streamer-list
filter input is visible directly below the title, so the default
padding-bottom + the filter's own margin don't double up into a
visually loose gap. */
.section-title.compact {
margin-bottom: 4px;
}
.streamers { .streamers {
flex: 1; flex: 1;
overflow-y: auto; overflow-y: auto;