claude-plugin-viban 1.1.0 → 1.1.1
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/.claude-plugin/plugin.json +1 -1
- package/bin/viban +2 -2
- package/package.json +1 -1
package/bin/viban
CHANGED
|
@@ -637,7 +637,7 @@ build_column_lines() {
|
|
|
637
637
|
local _desc_max_w=$((card_inner - 4))
|
|
638
638
|
local _spinner_w=0
|
|
639
639
|
[[ "$st" == "in_progress" ]] && _spinner_w=2
|
|
640
|
-
local _cc _bc _pfx
|
|
640
|
+
local _cc _bc _pfx _did
|
|
641
641
|
|
|
642
642
|
while IFS=$'\t' read -r _id _title _desc _priority _type _ext_id; do
|
|
643
643
|
[[ -z "$_id" ]] && continue
|
|
@@ -650,7 +650,7 @@ build_column_lines() {
|
|
|
650
650
|
_priorities+=("$_priority"); _types+=("$_type"); _ext_ids+=("$_ext_id")
|
|
651
651
|
|
|
652
652
|
# Per-card title width limit (use display ID length)
|
|
653
|
-
|
|
653
|
+
_did=$(display_id "$_id" "$_ext_id")
|
|
654
654
|
_title_max_ws+=($((card_inner - 4 - ${#_did} - _spinner_w)))
|
|
655
655
|
# Prefix for width calc (X as spinner placeholder - same width 1 as braille chars)
|
|
656
656
|
_pfx=" "
|