Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions html/learn.html
Original file line number Diff line number Diff line change
Expand Up @@ -1007,6 +1007,7 @@ <h2 id="thanks">Thank You</h2>
<li class="donor">Joe B. <span style="color: #fff;">&#9733;</span></li>
<li class="donor">Joe M.</li>
<li class="donor">Joe McCormick</li>
<li class="donor">Joel Yauk <span style="color: #fff;">&#9733;</span></li>
<li class="donor">Johan R.</li>
<li class="donor">Johan R.</li>
<li class="donor">Johannes A.</li>
Expand Down
4 changes: 2 additions & 2 deletions js/extension/features/shopping-spree-mode-new.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ rl.ready(() => {
let addToCartButton = event.target,
host = document.querySelector('[id^=__header_root_]'),
_header = host && host.shadowRoot ? host.shadowRoot.querySelector('div[class^="_amped_"] header') : document,
cartLink = _header.querySelector('nav[class*="_user"] a[href^="/sell/cart"]'),
cartLink = _header.querySelector('nav[class*="_user"] a[href*="/sell/cart"]'),
sellerName = addToCartButton
.closest('tr.shortcut_navigable')
.querySelector('td.seller_info div.seller_block strong a')
Expand All @@ -102,7 +102,7 @@ rl.ready(() => {

if (res.ok) {

let selector = 'nav[class*="_user"] a[href^="/sell/cart"]',
let selector = 'nav[class*="_user"] a[href*="/sell/cart"]',
cartTotal = _header.querySelector(selector + ' .rnf-unseen-badge__count'),
currentCartTotal = Number(cartTotal?.textContent?.trim()) || 0,
newCartTotal = currentCartTotal + 1;
Expand Down
2 changes: 1 addition & 1 deletion js/popup/change-log.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ module.exports = {
description: 'More Dark Theme updates for the new Edit Master Release feature and new Collection Fields layout.'
},
],
thanks: ['Massive thank you to everyone who donated this year! I really appreciate it :)'],
thanks: ['Massive thank you to Joel Yauk for their generous donation!'],
},
],
previous: []
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discogs-enhancer",
"version": "3.11.1",
"version": "3.11.2",
"description": "A web extension that adds useful functionality to Discogs.com! https://www.discogs-enhancer.com",
"main": "index.js",
"scripts": {
Expand Down
Loading