From bcf2ab51c91d2942cfd47939c9501fe31bcecf53 Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:23:32 -0700 Subject: [PATCH 1/7] Update dark-theme.scss --- css/dark-theme.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/css/dark-theme.scss b/css/dark-theme.scss index f98f0639..ce818d9e 100644 --- a/css/dark-theme.scss +++ b/css/dark-theme.scss @@ -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; } @@ -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; From c2ea8600dec2f68439c4e32bc840f483265ec05f Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:23:36 -0700 Subject: [PATCH 2/7] Update new-release-page-fixes.scss --- css/new-release-page-fixes.scss | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/css/new-release-page-fixes.scss b/css/new-release-page-fixes.scss index 7c0efb03..cb2fd4fc 100644 --- a/css/new-release-page-fixes.scss +++ b/css/new-release-page-fixes.scss @@ -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_"] { @@ -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; +} From 1cc20e033047e6814ba14bb720aa1fa8b4d531e4 Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:23:40 -0700 Subject: [PATCH 3/7] Update learn.html --- html/learn.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html/learn.html b/html/learn.html index f8b36ee0..c19d9e37 100644 --- a/html/learn.html +++ b/html/learn.html @@ -995,7 +995,7 @@

Thank You

  • Jeremy A.
  • Jesper M.
  • Jocelyn B.
  • -
  • Joe B.
  • +
  • Joe B.
  • Joe M.
  • Joe McCormick
  • Johan R.
  • @@ -1052,6 +1052,7 @@

    Thank You

  • Reusbi
  • Ritesh K.
  • RollingStone1989
  • +
  • Rob P.
  • Robert P.
  • Robert W.
  • Roman G.
  • @@ -1059,6 +1060,7 @@

    Thank You

  • Ryan C.
  • Salvatore C.
  • sdsowlsa
  • +
  • Semen I.
  • Shaun G.
  • Simon Q.
  • Smithsix
  • From 9248a3d287cb936d3f05810972bf93a483ac5ccb Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:23:52 -0700 Subject: [PATCH 4/7] Update background.js --- js/extension/background.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/js/extension/background.js b/js/extension/background.js index 9ff980aa..0a56c0f3 100644 --- a/js/extension/background.js +++ b/js/extension/background.js @@ -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 }); }); From 7bbb09dc768bcc440fe8af1f8796a4931a6d0a99 Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:23:57 -0700 Subject: [PATCH 5/7] Update user-preferences.js --- js/extension/user-preferences.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/extension/user-preferences.js b/js/extension/user-preferences.js index 4e8a55a7..ce189775 100644 --- a/js/extension/user-preferences.js +++ b/js/extension/user-preferences.js @@ -539,6 +539,7 @@ appendFragment([resourceLibrary]) } if (prefs.converter + && !window.location.href.includes('wantlister') && !window.location.href.includes('/order/prints?')) { // currency-converter.css From 8882875f014310ceffd39a048ab0dea949050f4a Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:24:00 -0700 Subject: [PATCH 6/7] Update change-log.js --- js/popup/change-log.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/popup/change-log.js b/js/popup/change-log.js index 4cb6c660..a89b1456 100644 --- a/js/popup/change-log.js +++ b/js/popup/change-log.js @@ -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: [] From 030055077cbb566cd7b20db6f4d16c0d53621802 Mon Sep 17 00:00:00 2001 From: Matthew Salcido Date: Fri, 1 Nov 2024 08:24:09 -0700 Subject: [PATCH 7/7] Version bump to 3.7.5 --- manifest.json | 2 +- package-lock.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/manifest.json b/manifest.json index 6dc9fabe..908aced5 100644 --- a/manifest.json +++ b/manifest.json @@ -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": { diff --git a/package-lock.json b/package-lock.json index 56b30ea7..df8696b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "discogs-enhancer", - "version": "3.7.4", + "version": "3.7.5", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index f76e025b..2fb32bf0 100644 --- a/package.json +++ b/package.json @@ -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": {