Skip to content

Deliverable dependency graph

Mike Griese edited this page Sep 21, 2023 · 20 revisions

🚧 very much under construction 🚧

An attempt to codify the way we're thinking about how different features are dependent on others. This is obviously not comprehensive - at the time of writing, there's ~300 open "Features" and another 450 "Tasks". Obviously, mermaid would just explode if we tried to include all that.

This'll probably be updated as we go. Anytime we think "ah well to do X we'll need Y first", then we should loop back on this page.

(Note to editors: Right now this is broken into two graphs. The first is much more inter-linked and fragile. The second is for subtrees that don't really re-connect to other bits in the first)

graph TD

    classDef progress stroke:#ff0
    classDef done stroke:#0f0
    classDef experimental stroke:#0ff
    classDef blocked stroke:#f00

    i3121["#quot;Shell Suggestions#quot;"<br>#3121]:::experimental
    click i3121 "https://github.com/microsoft/terminal/issues/3121"

    EX_1[Basic extension model] 
    EX_2[Connection<br>Extensions] 
    EX_3[UI<br>Extensions] 
    EX_4[Fragment Tasks] 
    shell_int[Shell integration]:::experimental
    
    global_actions[Global actions]
    C_2[actions in<br>dropdown]

    i3337[Right click<br>context menu #3337]:::experimental
    click i3337 "https://github.com/microsoft/terminal/issues/3337"
    i5790[profile-specific<br>keybindings #5790]
    click i5790 "https://github.com/microsoft/terminal/issues/5790"
    i2205[Alternate keymaps<br>#2205]
    click i2205 "https://github.com/microsoft/terminal/issues/2205"
    i1553[mouse bindings<br>#1553]
    click i1553 "https://github.com/microsoft/terminal/issues/1553"
    i6632["#quot;Buffer Suggestions#quot;"<br>from buffer contents<br>#6632]
    click i6632 "https://github.com/microsoft/terminal/issues/6632"

    i997[Non-terminal panes<br>#997]:::progress
    click i997 "https://github.com/microsoft/terminal/issues/997"
    i4717[Pane Titlebars<br>#4717]
    click i4717 "https://github.com/microsoft/terminal/issues/4717"
    i4587a[Drag tab to make a pane<br>#4587]
    click i4587a "https://github.com/microsoft/terminal/issues/4587"
    i4587b[Drag pane to make a pane<br>#4587]
    click i4587b "https://github.com/microsoft/terminal/issues/4587"
    i9229[Drag from new tab menu to make a pane<br>#9229]
    click i9229 "https://github.com/microsoft/terminal/issues/9229"
    i3586[Prompt for profile when opening<br>tab/pane#3586]
    click i3586 "https://github.com/microsoft/terminal/issues/3586"
    
    i16005[a11y pane<br>#16005]
    click i16005 "https://github.com/microsoft/terminal/issues/16005"
    
    T_1["#quot;Recent commands#quot;"<br>The basic Tasks UI]:::done
    T_2["#quot;Tasks#quot;"<br>UI for sendInput actions]:::done
    T_3[Recent commands<br>pane]
    
    i8573[Move cursor with mouse<br>#8573]:::experimental
    click i8573 "https://github.com/microsoft/terminal/issues/8573"

    i8224[reg-based<br> fragments #8224]
    click i8224 "https://github.com/microsoft/terminal/issues/8224"
    i10359[package-relative imgs<br> for fragments #10359]
    click i10359 "https://github.com/microsoft/terminal/issues/10359"
    i14143[Block web resources<br> #14143]
    click i14143 "https://github.com/microsoft/terminal/issues/14143"

    i15858[Use libICU for search<br>#15858]:::done
    click i15858 "https://github.com/microsoft/terminal/pull/15858"
    i6386[Regex search<br>#6386]
    click i6386 "https://github.com/microsoft/terminal/pull/6386"
    i5314[Fuzzy search<br>#5314]
    click i5314 "https://github.com/microsoft/terminal/issues/5314"
    i3920[Search across all tabs<br>#3920]
    click i3920 "https://github.com/microsoft/terminal/issues/3920"
    i7561[highlight all matches<br>#7561]
    click i7561 "https://github.com/microsoft/terminal/issues/7561"

    
    inactive[detect when a<br>control is hidden]
    i1989[Stop rendering when inactive<br>#1989]
    click i1989 "https://github.com/microsoft/terminal/issues/1989"
    i5318[Stop blinking after 5s<br>#5318]
    click i5318 "https://github.com/microsoft/terminal/issues/5318"



    subgraph s1000[Panes <br> #1000]
    i4587a --> i4587b
    i9229 -.- i4587a 
    i997 --> i4717 
    i4717 --> i4587b
    i997 ---> i3586
    i997 --> i16005
    i997 --> T_3
    end
    
    T_1 --> i3121
    T_1 ---> i6632

    global_actions --> i5790

    i15858 ---> i3920
    i997 -----> i3920
    i15858 --> i6386
    i15858 --> i5314
    i15858 --> i7561
    

    subgraph s4000[Extensions <br> #4000]
    EX_1 --> EX_3
    EX_1 --> EX_2
    EX_1 --> Z(other extensions...)
    i997 --> EX_3

    i8224 -.- i10359 --> i14143
    end
    

    subgraph Tasks
    T_1 --> T_2
    T_2 --> EX_4
    end
    
    global_actions --> EX_4

    shell_int --> T_1
    shell_int --> t_4[command separators]
    shell_int --> t_5[gutter icons]
    shell_int --> i8573
    global_actions --> EX_1

    EX_4 --> i2205
    

    global_actions --> C_2
    global_actions --> i1553
    i3337 --> i1553

    subgraph s9600[battery saver <br> #9600]
    i5318
    inactive --> i1989
    end


    subgraph activity indicator
    i7955[notify on inactive output<br>#7955]
    click i7955 "https://github.com/microsoft/terminal/issues/7955"
    i6372[notify on prompt<br>#6372]
    click i6372 "https://github.com/microsoft/terminal/issues/6372"
    i1620[tab busy indicator<br>#1620]
    click i1620 "https://github.com/microsoft/terminal/issues/1620"
    i8449[auto-progress detection<br>#1620]
    click i8449 "https://github.com/microsoft/terminal/issues/8449"
    
    i6372 -.- i7955
    i1620 -.- i8449
    end
    shell_int --> i6372

    inactive --> i7955

    

    
Loading
graph TD

    classDef progress stroke:#ff0
    classDef done stroke:#0f0
    classDef experimental stroke:#0ff
    classDef blocked stroke:#f00

    subgraph headless
    i14944[run without any windows<br>#14944]:::done 
    click i14944 "https://github.com/microsoft/terminal/issues/14944"
    i7374[Start the terminal minimized<br>#7374]:::done 
    click i7374 "https://github.com/microsoft/terminal/issues/7374"
    i9996[Start the terminal headless<br>#9996]
    click i9996 "https://github.com/microsoft/terminal/issues/9996"
    i13630[Start on login headless<br>#13630]
    click i13630 "https://github.com/microsoft/terminal/issues/13630"

    
    i14944 --> i9996
    i9996 --> i13630
    i7374 -.- i9996
    end


    i1503[Emoji Input<br>#1503]
    click i1503 "https://github.com/microsoft/terminal/issues/1503"
    i1472[Surrogate Pair output<br>#1472]
    click i1472 "https://github.com/microsoft/terminal/issues/1472"
    i190[Emoji Support<br>#190]
    click i190 "https://github.com/microsoft/terminal/issues/190"
    i2664[Font Fallback<br> per-glyph #2664]
    click i2664 "https://github.com/microsoft/terminal/issues/2664"
    i1503 --> i190
    i1472 --> i190
    i2664 -.- i190 

Loading
graph TD

    classDef progress stroke:#ff0
    classDef done stroke:#0f0
    classDef experimental stroke:#0ff
    classDef blocked stroke:#f00

    progress[In Progress]:::progress 
    experimental[Completed in an experimental form]:::experimental
    done[Done]:::done 
    blocked[Blocked]:::blocked 
Loading