Users should now experience consistent and fast widget loading across all supported platforms. If any related issues persist, please open a ticket with detailed logs for our development team.
The issue was traced to a bottleneck in the rendering pipeline for dashboard widgets. Specifically:
velox64/common/wldr25.dll
caused duplicate queries to the database, leading to significant delays during data assembly.ui/render_widget_core.cpp
caused high memory usage during widget refresh cycles, particularly when handling real-time updates.core/api/data_fetch_manager.py
led to race conditions, delaying the aggregation of widget data.The issue primarily affected users running Velocty on:
wldr25.dll
to reduce redundant queries, cutting database fetch times by 40%.render_widget_core.cpp
memory management routines to ensure dynamic memory is allocated and freed efficiently.data_fetch_manager.py
to resolve threading conflicts.