Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e9dfa7a
Add Group Details plugin (0.1.0)
Apr 10, 2026
2827b06
Update Group Details plugin to version 0.1.2
Apr 11, 2026
af52adb
Adjustment to plugin justification layout
Apr 11, 2026
9bea738
Refactor Group Details plugin layout and enhance tooltip functionality
Apr 11, 2026
fd98c2a
GroupDetails: resolution buckets, layout, and tooltips.
Apr 12, 2026
f775500
Update Group Details plugin to version 0.1.8
Apr 12, 2026
f9d1ec2
Update Group Details plugin to version 0.1.9
Apr 12, 2026
217e61b
Update Group Details plugin to version 0.2.0
Apr 12, 2026
abf9b2f
Refactor Group Details plugin to streamline resolution metrics
Apr 12, 2026
ec65736
Update Group Details plugin to simplify duration tooltip text
Apr 12, 2026
c75ded7
Update Group Details plugin to version 0.1.12
Apr 12, 2026
e7d3ae1
Update Group Details plugin to version 0.1.14
Apr 12, 2026
d0d70e7
Add new resolution PNG assets and update Group Details plugin to vers…
Apr 13, 2026
239fa24
Update Group Details plugin to version 0.1.17
Apr 13, 2026
5d54cd3
Update Group Details plugin to version 0.1.19
Apr 13, 2026
81e4a3f
Enhance Group Details plugin with dynamic base URL and safe file name…
Apr 13, 2026
de76891
Update Group Details plugin to version 0.1.22
Apr 13, 2026
fc8714f
Refactor Group Details plugin to improve metrics display and update v…
Apr 13, 2026
69f2d88
Refactor Group Details plugin to utilize embedded resolution images a…
Apr 13, 2026
eb3e6f6
Update Group Details plugin to version 0.1.25 by removing the 480p re…
Apr 13, 2026
8ade1be
Update Group Details plugin to version 0.1.26 by removing the 480p re…
Apr 13, 2026
8cfce16
Update Group Details plugin to version 0.1.27 by removing the 5k reso…
Apr 13, 2026
9fd4f62
Update Group Details plugin to version 0.1.28 by removing the 240p an…
Apr 13, 2026
3cae153
Remove obsolete image assets from Group Details plugin and add new bu…
Apr 13, 2026
493061c
Update Group Details plugin to version 0.1.29 by adding new embedded …
Apr 13, 2026
666b2c5
Update Group Details version to 0.1.27 and refresh embedded p-resolut…
Apr 13, 2026
d99c4bd
Update Group Details to version 0.2.0, adding new screenshot asset an…
Apr 13, 2026
5bda5f7
Readme update for Pr into mainline.
Apr 13, 2026
384e10d
Reducing the duration filter threshold to 360 sec,
Apr 13, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added plugins/480p.png
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks to be a rogue file?

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
101 changes: 101 additions & 0 deletions plugins/GroupDetails/GroupDetails.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
.group-card .card-popovers {
flex-wrap: wrap;
}

/* Stacked layout: line1 = duration + scene count; line2 = resolution (so extra chips stay on their own row). */
.group-card .card-popovers .gd-metrics-row {
display: flex;
flex-direction: column;
align-items: stretch;
width: 100%;
flex: 1 1 100%;
box-sizing: border-box;
gap: 0.12rem;
padding: 0.15rem 2px;
}

.group-card .card-popovers .gd-metrics-line1 {
display: grid;
grid-template-columns: 1fr;
align-items: center;
width: 100%;
}

.group-card .card-popovers .gd-metrics-line1 .scene-count {
justify-self: center;
}

.group-card .card-popovers .gd-metrics-line2 {
display: flex;
justify-content: flex-end;
align-items: center;
width: 100%;
}

.group-card .card-popovers .gd-res-bucket {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 1.15em;
line-height: 1;
/* Let hover hit the wrapper so the native `title` tooltip on .gd-res-bucket shows (SVG children do not inherit it). */
cursor: help;
}

.group-card .card-popovers .gd-res-bucket > * {
pointer-events: none;
}

.group-card .card-popovers .gd-resolution-png {
height: 1em;
width: auto;
max-width: 2.4em;
display: block;
object-fit: contain;
}

.group-card .card-popovers .gd-res-bucket-fallback {
font-size: 0.68rem;
font-weight: 600;
letter-spacing: 0.04em;
opacity: 0.95;
}

.group-card .card-popovers .gd-stat {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 0;
padding: 0.2rem 0.15rem;
font-size: 0.9rem;
line-height: 1.1;
color: var(--text, #d5dbe3);
opacity: 0.95;
white-space: nowrap;
}

.group-card .gd-date-line {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}

.group-card .gd-date-text {
min-width: 0;
}

.group-card .gd-date-duration {
margin-left: 0.5rem;
margin-right: 0;
margin-inline-start: 0.5rem;
margin-inline-end: 0;
padding: 0;
justify-content: flex-end;
font-size: inherit;
line-height: inherit;
font-weight: inherit;
color: inherit;
opacity: inherit;
cursor: help;
}
Loading
Loading