Skip to content

Commit

Permalink
sound150 v7.4.4: Improved functioning
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiux committed Jan 5, 2025
1 parent 1bf7470 commit f4061c4
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
16 changes: 13 additions & 3 deletions sound150@claudiux/files/sound150@claudiux/6.4/applet.js
Original file line number Diff line number Diff line change
Expand Up @@ -1920,7 +1920,6 @@ class Sound150Applet extends Applet.TextIconApplet {
this.menuManager = new PopupMenu.PopupMenuManager(this);
this.menu = new Applet.AppletPopupMenu(this, orientation);
this.menuManager.addMenu(this.menu);
this._setKeybinding();

this.set_applet_icon_symbolic_name("audio-x-generic");

Expand Down Expand Up @@ -2335,7 +2334,14 @@ class Sound150Applet extends Applet.TextIconApplet {
this._loopArtId = Mainloop.timeout_add_seconds(5, this.loopArt.bind(this));
//~ this.loopArt();

this.volume_near_icon()
this.volume_near_icon();

let to = setTimeout( () => {
this._setKeybinding();
clearTimeout(to);
},
300
);
}

on_applet_reloaded() {
Expand Down Expand Up @@ -3473,7 +3479,11 @@ class Sound150Applet extends Applet.TextIconApplet {
//~ this._applet_context_menu.close();
this.menu.close();
// Reload this applet
Extension.reloadExtension(UUID, Extension.Type.APPLET);
let to = setTimeout( () => {
Extension.reloadExtension(UUID, Extension.Type.APPLET);
clearTimeout(to);
},
300);
}

_onSystemSoundSettingsPressed() {
Expand Down
3 changes: 3 additions & 0 deletions sound150@claudiux/files/sound150@claudiux/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v7.4.4~20250105
* Improved functioning.

### v7.4.3~20250104
* Fixes #6728: Corrects a regression in Cinnamon 6.2.

Expand Down
2 changes: 1 addition & 1 deletion sound150@claudiux/files/sound150@claudiux/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"max-instances": "1",
"description": "Enhanced sound applet",
"hide-configuration": false,
"version": "7.4.3",
"version": "7.4.4",
"cinnamon-version": [
"2.8",
"3.0",
Expand Down

0 comments on commit f4061c4

Please sign in to comment.