Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: coder/mux
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: coder/mux
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ryan/git-debounce
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 2 commits
  • 9 files changed
  • 1 contributor

Commits on Dec 23, 2025

  1. perf: 1s debounce for active workspace git status

    Active workspace now uses 1s debounce for git status refresh after
    file-modifying tools complete, while background workspaces keep 3s.
    
    This makes the visible git indicators feel more responsive without
    adding load from background workspace refreshes.
    ammar-agent committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    f415518 View commit details
    Browse the repository at this point in the history
  2. feat: show last refresh time and trigger in tooltip

    Adds debugging visibility to ReviewPanel's refresh button tooltip:
    - Shows how long ago the last refresh occurred (e.g., '5s ago', '2m ago')
    - Shows what triggered the refresh (manual click, tool completion, focus, etc.)
    
    RefreshController now tracks trigger type through the refresh lifecycle:
    - manual: user clicked refresh button
    - scheduled: debounced tool completion
    - priority: debounced tool completion (active workspace)
    - focus: window regained focus
    - visibility: tab became visible
    - unpaused: interaction ended, flushing pending
    - in-flight-followup: queued while previous refresh was running
    
    Also adds formatRelativeTimeCompact() to dateTime utils for compact
    elapsed time display in space-constrained UI.
    ammar-agent committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    5cd96eb View commit details
    Browse the repository at this point in the history
Loading