Compare commits

..

No commits in common. "45dfd4f6fde7fe222e0e76d4458a98b0ffc20bff" and "e951c6a852ded33fe425127ffd6930c60f6e3e9d" have entirely different histories.

4 changed files with 5 additions and 6 deletions

4
package-lock.json generated
View File

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

View File

@ -1,6 +1,6 @@
{
"name": "twitch-vod-manager",
"version": "4.6.130",
"version": "4.6.129",
"description": "Twitch VOD Manager - Download Twitch VODs easily",
"main": "dist/main.js",
"author": "xRangerDE",

View File

@ -512,9 +512,9 @@ function renderChatViewerList(messages: ChatViewerMessage[]): void {
if (user) {
const uSpan = document.createElement('span');
uSpan.className = 'chat-viewer-user';
// Per-user IRC color overrides the default accent colour
// supplied by .chat-viewer-user; the class also sets weight.
// Per-user IRC color is preserved; the class supplies weight.
if (m.color) uSpan.style.color = m.color;
else uSpan.style.color = 'var(--accent)';
uSpan.textContent = `${user}:`;
row.appendChild(uSpan);
}

View File

@ -3823,7 +3823,6 @@ input[type="number"]::-webkit-outer-spin-button {
.chat-viewer-row .chat-viewer-user {
font-weight: 700;
margin-right: 4px;
color: var(--accent);
}
.chat-viewer-row .chat-viewer-tag {