Skip to content

Commit 92cbc64

Browse files
committed
Refine docs screenshot labels and enlarge showcase slider
1 parent 79af6ae commit 92cbc64

3 files changed

Lines changed: 32 additions & 23 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,25 @@ Cross-platform desktop downloader for YouTube and other platforms, built with El
44

55
## Screenshots
66

7-
### Dashboard 01
7+
### Link & Fetch Workspace
88

99
![StreamFetch Main Dashboard](Images/Dashboard-01.png)
1010

1111
Main dashboard for pasting a link, fetching metadata, selecting clip range, enabling Turbo download, adding items to queue, and using the built-in `yt-dlp` updater.
1212

13-
### Dashboard 02
13+
### Queue Overview & Logs
1414

1515
![StreamFetch Active Queue](Images/Dashboard-02.png)
1616

1717
Active queue workspace with download overview, per-job status, and inline logs for the selected item.
1818

19-
### Dashboard 03
19+
### History Archive
2020

2121
![StreamFetch History Dashboard](Images/Dashboard-03.png)
2222

2323
History dashboard for browsing past downloads, completed items, failed jobs, and archived activity.
2424

25-
### Dashboard 04
25+
### Defaults & Updates Settings
2626

2727
![StreamFetch Settings Dashboard](Images/Dashboard-04.png)
2828

docs/index.html

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -174,28 +174,28 @@ <h2>Large dashboard views that cycle through the full StreamFetch workspace</h2>
174174
<figure class="showcase-card" style="--delay: 0s;">
175175
<img src="./assets/screenshots/Dashboard-01.png" alt="Main StreamFetch dashboard with paste link, fetch info, clip range, turbo download, queue action, and yt-dlp updater" />
176176
<figcaption>
177-
<strong>Dashboard 01</strong>
177+
<strong>Link &amp; Fetch Workspace</strong>
178178
Main dashboard for pasting a link, fetching info, selecting range, enabling Turbo download, and adding items to queue.
179179
</figcaption>
180180
</figure>
181181
<figure class="showcase-card" style="--delay: 6s;">
182182
<img src="./assets/screenshots/Dashboard-02.png" alt="Active queue dashboard with download overview and logs" />
183183
<figcaption>
184-
<strong>Dashboard 02</strong>
184+
<strong>Queue Overview &amp; Logs</strong>
185185
Active queue view with overview cards, live progress, and detailed logs for the selected download.
186186
</figcaption>
187187
</figure>
188188
<figure class="showcase-card" style="--delay: 12s;">
189189
<img src="./assets/screenshots/Dashboard-03.png" alt="History dashboard with past downloads and archive list" />
190190
<figcaption>
191-
<strong>Dashboard 03</strong>
191+
<strong>History Archive</strong>
192192
History workspace for browsing past downloads, completed jobs, and archived activity.
193193
</figcaption>
194194
</figure>
195195
<figure class="showcase-card" style="--delay: 18s;">
196196
<img src="./assets/screenshots/Dashboard-04.png" alt="Settings dashboard with saved defaults and app updater options" />
197197
<figcaption>
198-
<strong>Dashboard 04</strong>
198+
<strong>Defaults &amp; Updates Settings</strong>
199199
Settings view for saving defaults, tuning preferences, and checking updater status.
200200
</figcaption>
201201
</figure>
@@ -205,28 +205,28 @@ <h2>Large dashboard views that cycle through the full StreamFetch workspace</h2>
205205
<article class="shot-note">
206206
<span>01</span>
207207
<div>
208-
<h3>Main Dashboard</h3>
208+
<h3>Link &amp; Fetch Workspace</h3>
209209
<p>Paste a link, fetch metadata, trim with Clip Studio, enable Turbo download, and queue the job.</p>
210210
</div>
211211
</article>
212212
<article class="shot-note">
213213
<span>02</span>
214214
<div>
215-
<h3>Active Queue</h3>
215+
<h3>Queue Overview &amp; Logs</h3>
216216
<p>Monitor the overview, inspect the selected job, and follow logs while downloads are running.</p>
217217
</div>
218218
</article>
219219
<article class="shot-note">
220220
<span>03</span>
221221
<div>
222-
<h3>History</h3>
222+
<h3>History Archive</h3>
223223
<p>Review previous downloads, failed jobs, and archived activity in one structured list.</p>
224224
</div>
225225
</article>
226226
<article class="shot-note">
227227
<span>04</span>
228228
<div>
229-
<h3>Settings</h3>
229+
<h3>Defaults &amp; Updates Settings</h3>
230230
<p>Save defaults, manage clipboard watcher behavior, and access app and `yt-dlp` updater options.</p>
231231
</div>
232232
</article>

docs/styles.css

Lines changed: 20 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ body {
4848
.site-header,
4949
main,
5050
.site-footer {
51-
width: min(1120px, calc(100% - 2.2rem));
51+
width: min(1360px, calc(100% - 2.2rem));
5252
margin-inline: auto;
5353
}
5454

@@ -362,13 +362,13 @@ h2 {
362362
.shot-showcase {
363363
margin-top: 1rem;
364364
display: grid;
365-
grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
365+
grid-template-columns: 1fr;
366366
gap: 1rem;
367367
}
368368

369369
.shot-stage {
370370
position: relative;
371-
min-height: 760px;
371+
min-height: 920px;
372372
border: 1px solid rgba(255, 255, 255, 0.65);
373373
background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.8));
374374
border-radius: var(--radius);
@@ -388,8 +388,8 @@ h2 {
388388
border: 1px solid var(--line);
389389
background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 253, 0.92));
390390
opacity: 0;
391-
transform: translateY(28px) scale(0.98);
392-
animation: showcase-cycle 24s infinite;
391+
transform: translateX(120px) scale(0.985);
392+
animation: showcase-slide 24s infinite;
393393
animation-delay: var(--delay);
394394
}
395395

@@ -418,6 +418,7 @@ h2 {
418418

419419
.shot-notes {
420420
display: grid;
421+
grid-template-columns: repeat(4, minmax(0, 1fr));
421422
gap: 0.85rem;
422423
}
423424

@@ -524,20 +525,20 @@ h2 {
524525
}
525526
}
526527

527-
@keyframes showcase-cycle {
528+
@keyframes showcase-slide {
528529
0% {
529530
opacity: 0;
530-
transform: translateY(28px) scale(0.98);
531+
transform: translateX(120px) scale(0.985);
531532
}
532533
4%,
533534
22% {
534535
opacity: 1;
535-
transform: translateY(0) scale(1);
536+
transform: translateX(0) scale(1);
536537
}
537538
25%,
538539
100% {
539540
opacity: 0;
540-
transform: translateY(-16px) scale(1.01);
541+
transform: translateX(-120px) scale(1.01);
541542
}
542543
}
543544

@@ -559,7 +560,11 @@ h2 {
559560
}
560561

561562
.shot-stage {
562-
min-height: 620px;
563+
min-height: 720px;
564+
}
565+
566+
.shot-notes {
567+
grid-template-columns: repeat(2, minmax(0, 1fr));
563568
}
564569
}
565570

@@ -584,14 +589,18 @@ h2 {
584589
}
585590

586591
.shot-stage {
587-
min-height: 460px;
592+
min-height: 520px;
588593
padding: 0.7rem;
589594
}
590595

591596
.showcase-card {
592597
inset: 0.7rem;
593598
}
594599

600+
.shot-notes {
601+
grid-template-columns: 1fr;
602+
}
603+
595604
main {
596605
padding-top: 1.75rem;
597606
}

0 commit comments

Comments
 (0)