File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v0.8.1 (2026-06-09)
5+
6+ ### Bug Fixes
7+
8+ - Add proper awareness for awaiting_move
9+ ([ ` 3ab4575 ` ] ( https://github.com/quadsproject/quads-client/commit/3ab4575db7a84642677545376df9350839c07b47 ) )
10+
11+ This was done in CLI but not everywhere and not done in the GUI.
12+
13+ - Refactor for interim move statuses.
14+ ([ ` 187747d ` ] ( https://github.com/quadsproject/quads-client/commit/187747d77c5205a5381adfed2d872856ccec0487 ) )
15+
16+ - _ show_pending_moves refactored into _ get_pending_moves (returns the list instead of printing) -
17+ _ wait_for_active_all and _ wait_for_active_single -- new methods that show a live Rich table of
18+ scheduled moves, poll every 10s, and return active move data once the server's move cycle starts
19+ (or None on Ctrl+C) - _ build_pending_table -- builds the Rich table with caption showing "Last
20+ check: HH:MM: SS | Refresh: 10s | Ctrl+C to stop" - Both _ track_single and _ track_all now: get
21+ pending -> wait for active (live polling) -> seamlessly transition into the existing 5s live
22+ tracking loop
23+
24+ Assisted-by: claude
25+
26+ ### Chores
27+
28+ - Fix test coverage
29+ ([ ` 9806cc0 ` ] ( https://github.com/quadsproject/quads-client/commit/9806cc0704ba761244309c9bf96625c6054bbd2e ) )
30+
31+ - Update doc descriptions
32+ ([ ` 630b423 ` ] ( https://github.com/quadsproject/quads-client/commit/630b42369959bf4b71d1f2c3dbb4488936b03b3c ) )
33+
34+ - Update RPM spec version to 0.8.0
35+ ([ ` a3b022f ` ] ( https://github.com/quadsproject/quads-client/commit/a3b022f507a467236be39d0103f668f8d83df530 ) )
36+
37+
438## v0.8.0 (2026-06-09)
539
640### Bug Fixes
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " quads-client"
7- version = " 0.8.0 "
7+ version = " 0.8.1 "
88description = " QUADS Client provides both a powerful CLI and an intuitive GUI for managing multiple QUADS servers."
99readme = " README.md"
1010requires-python = " >=3.13"
@@ -66,6 +66,7 @@ quads-client-gui = "quads_client.gui:main"
6666
6767
6868
69+
6970
7071
7172[tool .setuptools ]
Original file line number Diff line number Diff line change 1- __version__ = "0.8.0 "
1+ __version__ = "0.8.1 "
You can’t perform that action at this time.
0 commit comments