Skip to content

Commit

Permalink
Merge pull request linuxmint#6044 from claudiux/SpicesUpdate_7.4.3
Browse files Browse the repository at this point in the history
[SpicesUpdate@claudiux] v7.4.3 - Wait a few seconds before refreshing data after a change in network status
  • Loading branch information
claudiux authored May 30, 2024
2 parents 21c26de + f08861b commit 63b3a10
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,11 @@ class SpicesUpdate extends IconApplet {
//~ logDebug("The network connectivity is now FULL.");
//~ logDebug("this.netMonitors.length: "+this.netMonitors.length);
this.applet_running = true;
this._on_refresh_pressed();
let id = setTimeout(() => {
this._on_refresh_pressed();
clearTimeout(id);
id = null
}, 10000);
} else {
//~ logDebug("The network connectivity has been LOST.");
//~ logDebug("this.netMonitors.length: "+this.netMonitors.length);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v7.4.3~20240531
* Wait a few seconds before refreshing data after a change in network status.

### v7.4.2~20240805
* Saves memory.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Spices Update",
"max-instances": "1",
"hide-configuration": false,
"version": "7.4.2",
"version": "7.4.3",
"description": "Warns you when installed Spices (actions, applets, desklets, extensions, themes) require an update or new Spices are available.",
"multiversion": true,
"cinnamon-version": [
Expand Down

0 comments on commit 63b3a10

Please sign in to comment.