Skip to content

Commit 307109e

Browse files
authored
sound150 v13.8.2: Fixes a nasty bug (#8117)
1 parent d1404f8 commit 307109e

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

sound150@claudiux/files/sound150@claudiux/6.4/applet.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1680,13 +1680,15 @@ class Sound150Applet extends Applet.TextIconApplet {
16801680
if (this._iconTimeoutId != null) source_remove(this._iconTimeoutId);
16811681
//~ this._iconTimeoutId = timeout_add_seconds(OUTPUT_ICON_SHOW_TIME_SECONDS, () => {
16821682
this._iconTimeoutId = timeout_add_seconds(0, () => {
1683-
this.setAppletTextIcon(this._players[this._activePlayer], true);
1683+
//~ this.setAppletTextIcon(this._players[this._activePlayer], true);
1684+
this.setIcon();
16841685
return false;
16851686
//~ return this._iconLooping;
16861687
});
16871688
}
16881689
} else {
1689-
return this._iconLooping;
1690+
//~ return this._iconLooping;
1691+
return false;
16901692
}
16911693
} else {
16921694
// if we have an active player and want to change the icon, change it immediately

sound150@claudiux/files/sound150@claudiux/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v13.8.2~20251225
2+
* Fixes a nasty bug.
3+
* Fixes [#8115](https://github.com/linuxmint/cinnamon-spices-applets/issues/8115)
4+
15
### v13.8.1~20251225
26
* Improves speed.
37
* Fixes [#8115](https://github.com/linuxmint/cinnamon-spices-applets/issues/8115)

sound150@claudiux/files/sound150@claudiux/metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"max-instances": "1",
66
"description": "Enhanced sound applet",
77
"hide-configuration": false,
8-
"version": "13.8.1",
8+
"version": "13.8.2",
99
"cinnamon-version": [
1010
"2.8",
1111
"3.0",

0 commit comments

Comments
 (0)