mirror of
https://github.com/QwenLM/qwen-code.git
synced 2026-05-01 21:20:44 +00:00
### Shell & Interactive Terminal Improvements - PTY shell is now enabled by default instead of disabled - Improved shell output rendering, process termination, and added fallback warning - Background commands now properly capture subprocess PIDs on non-Windows ### Coding Plan Improvements - Simplified auth message, added /model tip, improved system info display - Reordered model list to prioritize glm-5, kimi-k2.5, MiniMax-M2.5 - Model selection is now preserved when updating if the model still exists ### Other Changes - Added shared symlink utility; debug logs now have latest alias - Unknown settings warnings go to debug log instead of user-facing warnings - Fixed subagent confirmation state detection - Removed debug UI from AgentCreationWizard Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
19 lines
477 B
Bash
Executable file
19 lines
477 B
Bash
Executable file
#!/bin/bash
|
|
# Rapid output script for testing render throttle behavior
|
|
# Outputs 200 lines as fast as possible, then pauses, then outputs more
|
|
|
|
echo "=== Phase 1: Rapid burst (200 lines) ==="
|
|
for i in $(seq 1 200); do
|
|
echo "line $i: $(date +%H:%M:%S.%N)"
|
|
done
|
|
|
|
echo ""
|
|
echo "=== Phase 2: Pause 2s ==="
|
|
sleep 2
|
|
|
|
echo "=== Phase 3: Rapid burst with progress overwrite ==="
|
|
for i in $(seq 1 100); do
|
|
printf "\rProcessing item %3d/100..." "$i"
|
|
done
|
|
echo ""
|
|
echo "=== Done ==="
|