File tree Expand file tree Collapse file tree
systemUptime@KopfDesDaemons/files/systemUptime@KopfDesDaemons Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 2.0.1] - 09.04.2026
4+
5+ - Fix frozen uptime in the layout with disabled icon
6+
37## [ 2.0.0] - 06.02.2026
48
59- New features:
Original file line number Diff line number Diff line change @@ -150,8 +150,10 @@ class MyDesklet extends Desklet.Desklet {
150150 this . _startupValue . set_style ( valueStyle ) ;
151151
152152 // Icon
153- this . _clockIcon . set_style ( iconStyle ) ;
154- this . _iconBox . set_style ( iconStyle ) ;
153+ if ( this . showIcon && this . _clockIcon && this . _iconBox ) {
154+ this . _clockIcon . set_style ( iconStyle ) ;
155+ this . _iconBox . set_style ( iconStyle ) ;
156+ }
155157 }
156158
157159 async _fetchUptimeText ( ) {
Original file line number Diff line number Diff line change 22 "uuid" : " systemUptime@KopfDesDaemons" ,
33 "name" : " System Uptime" ,
44 "description" : " Displays the current system uptime." ,
5- "version" : " 2.0.0 " ,
5+ "version" : " 2.0.1 " ,
66 "max-instances" : " 50" ,
77 "author" : " KopfdesDaemons"
88}
You can’t perform that action at this time.
0 commit comments