Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Random fixes #288

Merged
merged 7 commits into from
Nov 1, 2024
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
10 changes: 10 additions & 0 deletions css/dark-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6000,6 +6000,15 @@
stroke: var(--text-placeholder) !important;
}
}

.payload-name {
color: var(--black) !important;
}

.notification-content .feed-items-wrapper {
background: var(--white) !important;
}

.rnf-notification-cell:hover {
background: var(--main-bg-color) !important;
}
Expand All @@ -6011,6 +6020,7 @@
}

.rnf-notification-cell__content .notification-content div p a,
.rnf-notification-cell__content .notification-content ul li a,
.rnf-notification-cell__content .notification-content tr a {
color: var(--link) !important;

Expand Down
17 changes: 14 additions & 3 deletions css/new-release-page-fixes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,6 @@
[class*="ratings_"] {
gap: 0 !important;
}
div[class*="ratings_"] svg {
margin: 0 2px 0 0 !important;
}

div[class*="ratings_"] {
button[class*="remove_"] {
Expand Down Expand Up @@ -203,3 +200,17 @@ div[class*="_arrows_"] a {
width: auto;
min-width: 25%;
}
// Align Add To cart / make offer / details links in Marketplace
.item_add_to_cart_desktop .hide_mobile {
margin: 0 auto;
text-align: center;
}
// Fix visited state coloring on wantlister link
a.wantlister span,
a.wantlister:visited span {
color: black !important;
text-shadow: none;
}
a.wantlister i {
display: none;
}
4 changes: 3 additions & 1 deletion html/learn.html
Original file line number Diff line number Diff line change
Expand Up @@ -995,7 +995,7 @@ <h2 id="thanks">Thank You</h2>
<li class="donor">Jeremy A.</li>
<li class="donor">Jesper M. <span style="color: #fff;">&#9733;</span></li>
<li class="donor">Jocelyn B.</li>
<li class="donor">Joe B.</li>
<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">Johan R.</li>
Expand Down Expand Up @@ -1052,13 +1052,15 @@ <h2 id="thanks">Thank You</h2>
<li class="donor">Reusbi</li>
<li class="donor">Ritesh K.</li>
<li>RollingStone1989</li>
<li class="donor">Rob P.</li>
<li class="donor">Robert P.</li>
<li class="donor">Robert W.</li>
<li class="donor">Roman G.</li>
<li class="donor">Rosalyn R.</li>
<li class="donor">Ryan C.</li>
<li>Salvatore C.</li>
<li class="donor">sdsowlsa <span style="color: #fff;">&#9733;</span><span style="color: #fff;">&#9733;</span></li>
<li class="donor">Semen I.</li>
<li class="donor">Shaun G.</li>
<li class="donor">Simon Q.</li>
<li class="donor">Smithsix</li>
Expand Down
4 changes: 4 additions & 0 deletions js/extension/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -392,5 +392,9 @@ chrome.contextMenus.onClicked.addListener((event) => {
encodeStr = str.replace(/ /g, '+');
}

if ( path.includes('juno') ) {
encodeStr = str.replace('–', '');
}

chrome.tabs.create({ url: path + encodeStr + suffix });
});
1 change: 1 addition & 0 deletions js/extension/user-preferences.js
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,7 @@ appendFragment([resourceLibrary])
}

if (prefs.converter
&& !window.location.href.includes('wantlister')
&& !window.location.href.includes('/order/prints?')) {

// currency-converter.css
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: 'Release Scanner has been updated to work with the new Artist and Label Pages. Let me know if you find any issues with it.'
},
],
thanks: ['Massive thank you everyone who donated! And a special thank you to Pavel G. and Thomas R.!'],
thanks: ['Huge thank you to Joe B, Rob P. and Semen I. for their donations!'],
},
],
previous: []
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Discogs Enhancer",
"short_name": "Discogs Enhancer",
"description": "Adds a dark theme, block sellers, price comparisons, currency converter, configurable quick search, & more to Discogs!",
"version": "3.7.4",
"version": "3.7.5",
"author": "Matthew Salcido",
"homepage_url": "https://www.discogs-enhancer.com",
"action": {
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.7.4",
"version": "3.7.5",
"description": "A Chrome extension that adds useful functionality to Discogs.com! https://www.discogs-enhancer.com",
"main": "index.js",
"scripts": {
Expand Down
Loading