Skip to content

Commit bbfac00

Browse files
committed
0.1.8.2
1 parent f37e6ed commit bbfac00

8 files changed

+11
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.1.8.2] - 2024-02-13
9+
10+
- Change logo due to Microsoft Store 1.1.2 policies
11+
812
## [0.1.8.1] - 2024-01-28
913

1014
- Fix Menu is not showing in Firefox browser

sounddark.png

48.1 KB
Loading

src/icon128.png

-1.2 KB
Loading

src/icon48.png

163 Bytes
Loading

src/manifest.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"manifest_version": 3,
33
"name": "SoundDark",
4-
"version": "0.1.8.1",
4+
"version": "0.1.8.2",
55
"description": "A better Dark theme for SoundCloud",
66
"icons": {
77
"48": "icon48.png",
@@ -10,7 +10,7 @@
1010
"content_scripts": [
1111
{
1212
"js": [
13-
"services.js"
13+
"sounddark.js"
1414
],
1515
"matches": [
1616
"https://soundcloud.com/*"

src/sounddark.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* @name SoundDark
44
* @description A Chromium extension to get better Dark theme for SoundCloud
5-
* @version 0.1.8
5+
* @version 0.1.8.2
66
* @license https://github.com/michioxd/sounddark/blob/main/LICENSE
77
* @author michioxd
88
*
@@ -188,7 +188,8 @@ a.sc-link-light:hover {
188188
.sc-classic .headerMenu__list,
189189
.sc-classic .dropdownContent__header,
190190
.sc-classic .dropdownContent__listItem,
191-
.sc-classic .dropdownContent__main {
191+
.sc-classic .dropdownContent__main,
192+
.l-signin .l-main {
192193
border-color: #222 !important;
193194
}
194195

src/sounddark.jpg

-8.26 KB
Binary file not shown.

src/services.js src/sounddark.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*
33
* @name SoundDark
44
* @description A Chromium extension to get better Dark theme for SoundCloud
5-
* @version 0.1.8.1
5+
* @version 0.1.8.2
66
* @license https://github.com/michioxd/sounddark/blob/main/LICENSE
77
* @author michioxd
88
*
@@ -19,7 +19,7 @@ function getBrowserPlatform() {
1919
}
2020

2121
document.addEventListener("DOMContentLoaded", function () {
22-
const version = "0.1.8.1";
22+
const version = "0.1.8.2";
2323
const changeThemeQuery = self.matchMedia("(prefers-color-scheme: dark)");
2424

2525
console.log(`SoundDark v${version} - https://github.com/michioxd/sounddark\nLocal saved: ${localStorage.getItem("SoundDark_mode") ?? "no"}\nSystem color: ${changeThemeQuery.matches ? "dark" : "light"}\nPlatfrom: ${getBrowserPlatform() === 2 ? "firefox" : getBrowserPlatform() === 1 ? "chromium" : "unknown"}`);

0 commit comments

Comments
 (0)