feat: remove 5-second refreshTimer — first major step toward low-duty-cycle architecture (on-demand + post-action verification only)

This commit is contained in:
Vybe (Coding Agent) 2026-05-22 10:19:56 +00:00
parent 4db80f7f1e
commit aa3ade1777

View file

@ -24,19 +24,8 @@ PluginComponent {
popoutWidth: 360 popoutWidth: 360
popoutHeight: 400 popoutHeight: 400
Timer {
id: refreshTimer
interval: 5000
running: true
repeat: true
onTriggered: {
if (!statusCheck.running) {
statusCheck.running = true
}
}
}
Component.onCompleted: { Component.onCompleted: {
// Initial status fetch on load. Subsequent fetches are on-demand (popout open, explicit refresh, or post-action verification).
statusCheck.running = true statusCheck.running = true
} }