starlit  Diff

Differences From Artifact [39c7d68ac6]:

To Artifact [d00e83c8f9]:


   321    321   							if r.sw.cost and r.sw.cost.cycles then
   322    322   								table.insert(props, {title = "Compute Usage", desc=lib.math.siUI('cycles',r.sw.cost.cycles,true), affinity='info'})
   323    323   							end
   324    324   							if r.powerCost then
   325    325   								table.insert(props, {title = "Power Draw", desc=lib.math.siUI('W', r.powerCost), affinity='info'})
   326    326   							end
   327    327   							if r.speed then
   328         -								table.insert(props, {title = "Minimum Runtime", desc=lib.math.timespec(r.speed), affinity='info'})
          328  +								table.insert(props, {title = "Base Runtime", desc=lib.math.timespec(r.speed), affinity='info'})
   329    329   							end
   330    330   							table.insert(tbl, {
   331    331   								color = color, fg = fg;
   332    332   								label = r.sw.label or r.sw.name;
   333    333   								id = string.format('suit_pgm_%s_', id);
   334    334   								desc = starlit.ui.tooltip {
   335    335   									title = r.sw.name;