Applications can now be marked as installed, status bar can now show real data

This commit is contained in:
2026-09-16 14:26:22 -05:00
parent b551312751
commit b505f22b8c
5 changed files with 114 additions and 24 deletions

View File

@@ -140,6 +140,15 @@ module W3DHubLauncher
@client&.flush
end
def message_requester(request_id:, status:, data:, error: nil)
payload = { status: status, request_id: request_id, data: data, error: error }.to_json
@client&.write(payload)
@client&.write(RESPONSE_SEPARATOR)
@client&.flush
end
# Send request to server
def request(query)
# pp [:client_request, query]