cctally 1.64.0 → 1.65.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +17 -0
- package/bin/_cctally_cache.py +60 -19
- package/bin/_cctally_dashboard.py +364 -38
- package/bin/_cctally_tui.py +445 -236
- package/bin/_cctally_update.py +5 -0
- package/bin/_lib_conversation_query.py +349 -36
- package/bin/_lib_perf.py +180 -0
- package/bin/_lib_transcript_access.py +23 -0
- package/dashboard/static/assets/index-CJTUCpKt.js +80 -0
- package/dashboard/static/assets/index-DQWNrIqu.css +1 -0
- package/dashboard/static/dashboard.html +2 -2
- package/package.json +2 -1
- package/dashboard/static/assets/index-0jzYm75p.css +0 -1
- package/dashboard/static/assets/index-D_Ylyqsf.js +0 -80
package/bin/_cctally_update.py
CHANGED
|
@@ -2015,6 +2015,11 @@ class _DashboardUpdateCheckThread(threading.Thread):
|
|
|
2015
2015
|
envelope_precompute=(
|
|
2016
2016
|
c._cctally_tui._tui_precompute_envelope_config(load_config())
|
|
2017
2017
|
),
|
|
2018
|
+
# #278 §1.4.1: a version-banner refresh republishes complete data;
|
|
2019
|
+
# force the hydration latch clear so a republish that happens to
|
|
2020
|
+
# carry a prior hydrating seed/partial doesn't freeze the client's
|
|
2021
|
+
# loading skeletons.
|
|
2022
|
+
hydrating=False,
|
|
2018
2023
|
)
|
|
2019
2024
|
self._ref.set(fresh)
|
|
2020
2025
|
self._hub.publish(fresh)
|