-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Introduce a ContentManager helper #14851
Commits on Jan 30, 2023
-
I definitely want all of this. But I started down a path for refactor…
…ing AppLogic that I hate so I'm gonna start over
Configuration menu - View commit details
-
Copy full SHA for 581acd4 - Browse repository at this point
Copy the full SHA 581acd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5255ba - Browse repository at this point
Copy the full SHA a5255baView commit details -
Revert "I don't think I want any of these"
This reverts commit a5255ba.
Configuration menu - View commit details
-
Copy full SHA for e6220b7 - Browse repository at this point
Copy the full SHA e6220b7View commit details -
Start splitting AppLogic into AppLogic and Window logic
We'll need this for #5000, for ainulindale. This refactoring will be annoying enough as it is so we may as well do it as a first, separate PR.
Configuration menu - View commit details
-
Copy full SHA for 936c01f - Browse repository at this point
Copy the full SHA 936c01fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 439b21f - Browse repository at this point
Copy the full SHA 439b21fView commit details
Commits on Jan 31, 2023
-
It doesn't crash on launch. That's something. There's no startupActio…
…ns though, so it immediately exits
Configuration menu - View commit details
-
Copy full SHA for 99bc280 - Browse repository at this point
Copy the full SHA 99bc280View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2195515 - Browse repository at this point
Copy the full SHA 2195515View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5116ca1 - Browse repository at this point
Copy the full SHA 5116ca1View commit details -
Merge branch 'dev/migrie/oop/3/foreword' into dev/migrie/oop/3/ainuli…
…ndale # Conflicts: # src/cascadia/WindowsTerminal/AppHost.h
Configuration menu - View commit details
-
Copy full SHA for ef7e2ed - Browse repository at this point
Copy the full SHA ef7e2edView commit details -
[TO PARENT] Move the page ctor call, so that it can happen after the …
…XAML island is started. I think this can work in the parent at least
Configuration menu - View commit details
-
Copy full SHA for af14c2b - Browse repository at this point
Copy the full SHA af14c2bView commit details -
Use the single AppLogic for all windows. Remove the _app references. …
…It launches and crashes immediately. We'll keep shuffling code.
Configuration menu - View commit details
-
Copy full SHA for d456210 - Browse repository at this point
Copy the full SHA d456210View commit details -
Configuration menu - View commit details
-
Copy full SHA for f5b030c - Browse repository at this point
Copy the full SHA f5b030cView commit details
Commits on Feb 1, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2c4613a - Browse repository at this point
Copy the full SHA 2c4613aView commit details -
Start rewriting WindowManager to facilitate the new process model
At this point, I determined that I would need to make some big changes to AppHost and decided that it was time to commit before moving on.
Configuration menu - View commit details
-
Copy full SHA for 7a3e2e0 - Browse repository at this point
Copy the full SHA 7a3e2e0View commit details -
This does successfully get a window on the screen, which is pretty im…
…pressive It exits itself after 30s, but hey it worked
1Configuration menu - View commit details
-
Copy full SHA for f655296 - Browse repository at this point
Copy the full SHA f655296View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 274d62d - Browse repository at this point
Copy the full SHA 274d62dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e623299 - Browse repository at this point
Copy the full SHA e623299View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 1b4f1ef - Browse repository at this point
Copy the full SHA 1b4f1efView commit details
Commits on Feb 7, 2023
-
[ainulindale] Clean tear down the
App
when the process exits(cherry picked from commit 57d1dd4)
Configuration menu - View commit details
-
Copy full SHA for 47336c0 - Browse repository at this point
Copy the full SHA 47336c0View commit details -
[ainulindale] "fix" hot reload
Doesn't work with multiple windows open, but doesn't do _nothing_ (cherry picked from commit 427a4a5)
Configuration menu - View commit details
-
Copy full SHA for 9924e23 - Browse repository at this point
Copy the full SHA 9924e23View commit details -
[ainulindale] This I'm confident fixes some of the x-thread errors, b…
…ut this doesn't fix the crash (cherry picked from commit 700aadc)
Configuration menu - View commit details
-
Copy full SHA for f06e484 - Browse repository at this point
Copy the full SHA f06e484View commit details -
[ainulindale] Expand commands in the AppLogic, not on each page
TerminalPage is the thing that ends up expanding iterable Command. It does this largely with copies - it makes a new map, a new vector, copies the Commands over, and does the work there before setting up the cmdpal. Except, it's not making a copy of the Commands, it's making a copy of the vector, with winrt objects all pointing at the Command objects that are ultimately owned by CascadiaSettings. This doesn't matter if there's only one TerminalPage - we'll only ever do that once. If there's many, on different threads, then one tpage will end up expanding the subcommands of one Command while another tpage is ALSO iterating on those subcommands. Hence why I'm getting `hresult_changed_state`s (cherry picked from commit 2122eec)
1Configuration menu - View commit details
-
Copy full SHA for 2822c36 - Browse repository at this point
Copy the full SHA 2822c36View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for f27db59 - Browse repository at this point
Copy the full SHA f27db59View commit details
Commits on Feb 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 2332f0c - Browse repository at this point
Copy the full SHA 2332f0cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e7da2e - Browse repository at this point
Copy the full SHA 4e7da2eView commit details -
Move the initialization of the showHide Throttler after we init the d…
…ispatcher. 35 TODOs left
Configuration menu - View commit details
-
Copy full SHA for 23c4d4c - Browse repository at this point
Copy the full SHA 23c4d4cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 761bd6a - Browse repository at this point
Copy the full SHA 761bd6aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 93e9dc5 - Browse repository at this point
Copy the full SHA 93e9dc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5396d1 - Browse repository at this point
Copy the full SHA d5396d1View commit details -
Plumb initial load result into the window on startup
30 TODOs left
Configuration menu - View commit details
-
Copy full SHA for 07ff418 - Browse repository at this point
Copy the full SHA 07ff418View commit details -
Configuration menu - View commit details
-
Copy full SHA for 40fdbc1 - Browse repository at this point
Copy the full SHA 40fdbc1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4db381e - Browse repository at this point
Copy the full SHA 4db381eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 64257d8 - Browse repository at this point
Copy the full SHA 64257d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3026922 - Browse repository at this point
Copy the full SHA 3026922View commit details -
Start to move window restoration into the Emperor
I think I have a vision for it now. 25 TODOs left.
Configuration menu - View commit details
-
Copy full SHA for 84e228f - Browse repository at this point
Copy the full SHA 84e228fView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc1ae9a - Browse repository at this point
Copy the full SHA dc1ae9aView commit details -
move more window persist code around.
It doesn't save or restore, but it does seem to not crash. 24 TODOs left
Configuration menu - View commit details
-
Copy full SHA for 8bb8391 - Browse repository at this point
Copy the full SHA 8bb8391View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f4c4d8 - Browse repository at this point
Copy the full SHA 0f4c4d8View commit details -
Hey look I brought two windows back into existence!...
They weren't from the persisted JSON, but they did come back 21 TODOs left
Configuration menu - View commit details
-
Copy full SHA for a5a9930 - Browse repository at this point
Copy the full SHA a5a9930View commit details -
We're getting closer to loading up the previous state, but it doesn't…
… always work as expected 20 TODOs left
Configuration menu - View commit details
-
Copy full SHA for 6e6d14e - Browse repository at this point
Copy the full SHA 6e6d14eView commit details -
The trick is, that if you do this while debugging, the AppState will get persisted as you're stepping through, which can make debugging this really tricky
Configuration menu - View commit details
-
Copy full SHA for 3fb8e8c - Browse repository at this point
Copy the full SHA 3fb8e8cView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 4d5f6d2 - Browse repository at this point
Copy the full SHA 4d5f6d2View commit details
Commits on Feb 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a7379ca - Browse repository at this point
Copy the full SHA a7379caView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0b79e81 - Browse repository at this point
Copy the full SHA 0b79e81View commit details -
make pane brushes a member variable, which is good enough
(cherry picked from commit 7bad8c9)
Configuration menu - View commit details
-
Copy full SHA for 950ce6c - Browse repository at this point
Copy the full SHA 950ce6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 055da35 - Browse repository at this point
Copy the full SHA 055da35View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0726c2 - Browse repository at this point
Copy the full SHA b0726c2View commit details -
Configuration menu - View commit details
-
Copy full SHA for e214624 - Browse repository at this point
Copy the full SHA e214624View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for c69f0bc - Browse repository at this point
Copy the full SHA c69f0bcView commit details -
This actually seems to make the lifetime management worse - we just d…
…tor the WindowEmperor randomly now, which is no good
Configuration menu - View commit details
-
Copy full SHA for 7e91bdb - Browse repository at this point
Copy the full SHA 7e91bdbView commit details -
Revert "This actually seems to make the lifetime management worse - w…
…e just dtor the WindowEmperor randomly now, which is no good" This reverts commit 7e91bdb.
1Configuration menu - View commit details
-
Copy full SHA for 0395dc4 - Browse repository at this point
Copy the full SHA 0395dc4View commit details
Commits on Feb 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f904e5d - Browse repository at this point
Copy the full SHA f904e5dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4548729 - Browse repository at this point
Copy the full SHA 4548729View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 7660937 - Browse repository at this point
Copy the full SHA 7660937View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 0ad5b59 - Browse repository at this point
Copy the full SHA 0ad5b59View commit details -
Configuration menu - View commit details
-
Copy full SHA for cfa6108 - Browse repository at this point
Copy the full SHA cfa6108View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for e40575b - Browse repository at this point
Copy the full SHA e40575bView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for dffb416 - Browse repository at this point
Copy the full SHA dffb416View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for a769933 - Browse repository at this point
Copy the full SHA a769933View commit details
Commits on Feb 11, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for c065897 - Browse repository at this point
Copy the full SHA c065897View commit details
Commits on Feb 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 33685d9 - Browse repository at this point
Copy the full SHA 33685d9View commit details -
Configuration menu - View commit details
-
Copy full SHA for a4f19a9 - Browse repository at this point
Copy the full SHA a4f19a9View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 1ec8c0d - Browse repository at this point
Copy the full SHA 1ec8c0dView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 2621519 - Browse repository at this point
Copy the full SHA 2621519View commit details -
Configuration menu - View commit details
-
Copy full SHA for 603a2ce - Browse repository at this point
Copy the full SHA 603a2ceView commit details -
Configuration menu - View commit details
-
Copy full SHA for a9ac218 - Browse repository at this point
Copy the full SHA a9ac218View commit details -
Configuration menu - View commit details
-
Copy full SHA for 82224bc - Browse repository at this point
Copy the full SHA 82224bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for d9d4d2e - Browse repository at this point
Copy the full SHA d9d4d2eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3f9deca - Browse repository at this point
Copy the full SHA 3f9decaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0f0316f - Browse repository at this point
Copy the full SHA 0f0316fView commit details
Commits on Feb 14, 2023
-
[valaquenta] Lifetime manage controls
(cherry picked from commit 4eba01f)
Configuration menu - View commit details
-
Copy full SHA for 7734600 - Browse repository at this point
Copy the full SHA 7734600View commit details -
Don't add multiple event handlers for the core
Basically, because we were projecting the event straight trhough the control, from core->page, basically when we would do a PasteRequested, we'd call the handler registered on the first control, then also the handler added by the second.
Configuration menu - View commit details
-
Copy full SHA for 2873511 - Browse repository at this point
Copy the full SHA 2873511View commit details -
Add auto_revokers to all TermControl ev handlers, but that wasn't wha…
…t ended up fixing this bug. All we actually needed was to do a _FontSizeChangedHandlers() to set up the font size and the markers in the TermControl.
Configuration menu - View commit details
-
Copy full SHA for 855a79d - Browse repository at this point
Copy the full SHA 855a79dView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 4b22963 - Browse repository at this point
Copy the full SHA 4b22963View commit details -
Configuration menu - View commit details
-
Copy full SHA for d06ad8b - Browse repository at this point
Copy the full SHA d06ad8bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 118bffa - Browse repository at this point
Copy the full SHA 118bffaView commit details -
Configuration menu - View commit details
-
Copy full SHA for aa8b0c5 - Browse repository at this point
Copy the full SHA aa8b0c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc80943 - Browse repository at this point
Copy the full SHA bc80943View commit details
Commits on Feb 15, 2023
-
I'm committing everything just in case, but I'm gonna revert and just…
… do the part that fixed it
Configuration menu - View commit details
-
Copy full SHA for 667b658 - Browse repository at this point
Copy the full SHA 667b658View commit details -
Revert "I'm committing everything just in case, but I'm gonna revert …
…and just do the part that fixed it" This reverts commit 667b658.
Configuration menu - View commit details
-
Copy full SHA for 2bc578b - Browse repository at this point
Copy the full SHA 2bc578bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62a4ee0 - Browse repository at this point
Copy the full SHA 62a4ee0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 091f32c - Browse repository at this point
Copy the full SHA 091f32cView commit details
Commits on Feb 16, 2023
-
Configuration menu - View commit details
-
Copy full SHA for ecab57f - Browse repository at this point
Copy the full SHA ecab57fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13257da - Browse repository at this point
Copy the full SHA 13257daView commit details -
Configuration menu - View commit details
-
Copy full SHA for f9caf19 - Browse repository at this point
Copy the full SHA f9caf19View commit details
Commits on Feb 23, 2023
-
[ainulindale] The Terminal shouldn't crash on a WM_SETTINGCHANGE
(cherry picked from commit 7649725)
Configuration menu - View commit details
-
Copy full SHA for 9a47396 - Browse repository at this point
Copy the full SHA 9a47396View commit details -
Configuration menu - View commit details
-
Copy full SHA for 273f2a8 - Browse repository at this point
Copy the full SHA 273f2a8View commit details
Commits on Feb 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for c79f27c - Browse repository at this point
Copy the full SHA c79f27cView commit details -
Configuration menu - View commit details
-
Copy full SHA for b75fb24 - Browse repository at this point
Copy the full SHA b75fb24View commit details -
Configuration menu - View commit details
-
Copy full SHA for cacb822 - Browse repository at this point
Copy the full SHA cacb822View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6934bc8 - Browse repository at this point
Copy the full SHA 6934bc8View commit details
Commits on Feb 28, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b589d09 - Browse repository at this point
Copy the full SHA b589d09View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0199aba - Browse repository at this point
Copy the full SHA 0199abaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e23a72 - Browse repository at this point
Copy the full SHA 5e23a72View commit details -
Configuration menu - View commit details
-
Copy full SHA for ada3f42 - Browse repository at this point
Copy the full SHA ada3f42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5164bff - Browse repository at this point
Copy the full SHA 5164bffView commit details
Commits on Mar 2, 2023
-
Apply suggestions from code review
Co-authored-by: Carlos Zamora <carlos.zamora@microsoft.com>
Configuration menu - View commit details
-
Copy full SHA for 7e2eb0d - Browse repository at this point
Copy the full SHA 7e2eb0dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c852c3 - Browse repository at this point
Copy the full SHA 5c852c3View commit details -
Merge branch 'dev/migrie/oop/3/ainulindale' of https://github.com/mic…
…rosoft/terminal into dev/migrie/oop/3/ainulindale
Configuration menu - View commit details
-
Copy full SHA for 1e331a0 - Browse repository at this point
Copy the full SHA 1e331a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e2c7a7 - Browse repository at this point
Copy the full SHA 8e2c7a7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 08f6a53 - Browse repository at this point
Copy the full SHA 08f6a53View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8803324 - Browse repository at this point
Copy the full SHA 8803324View commit details -
Configuration menu - View commit details
-
Copy full SHA for b983c69 - Browse repository at this point
Copy the full SHA b983c69View commit details -
Configuration menu - View commit details
-
Copy full SHA for 48aa555 - Browse repository at this point
Copy the full SHA 48aa555View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3aa083b - Browse repository at this point
Copy the full SHA 3aa083bView commit details
Commits on Mar 6, 2023
-
[ainulindale] Prevent a race between the Emperor and the window logic…
… when updating settings (cherry picked from commit 35c7474)
Configuration menu - View commit details
-
Copy full SHA for 9a9fa43 - Browse repository at this point
Copy the full SHA 9a9fa43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11ef8ef - Browse repository at this point
Copy the full SHA 11ef8efView commit details
Commits on Mar 7, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b24cf61 - Browse repository at this point
Copy the full SHA b24cf61View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3fa1017 - Browse repository at this point
Copy the full SHA 3fa1017View commit details
Commits on Mar 8, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 5fe3fa5 - Browse repository at this point
Copy the full SHA 5fe3fa5View commit details -
Configuration menu - View commit details
-
Copy full SHA for b0ca581 - Browse repository at this point
Copy the full SHA b0ca581View commit details -
Configuration menu - View commit details
-
Copy full SHA for 74af809 - Browse repository at this point
Copy the full SHA 74af809View commit details -
Configuration menu - View commit details
-
Copy full SHA for 547b2c9 - Browse repository at this point
Copy the full SHA 547b2c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f6880c - Browse repository at this point
Copy the full SHA 6f6880cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dc2436 - Browse repository at this point
Copy the full SHA 1dc2436View commit details
Commits on Mar 9, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6e4b2e1 - Browse repository at this point
Copy the full SHA 6e4b2e1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7721813 - Browse repository at this point
Copy the full SHA 7721813View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6dead99 - Browse repository at this point
Copy the full SHA 6dead99View commit details -
Remove the need for TerminalPage to know the number of open windows
This removes all the weirdness around the way that TerminalPage needs to track the number of open windows. Instead of TerminalPage persisting empty state when the last tab closes, it lets the AppHost know that the last tab was closed due to _closing the tab_ (as opposed to closing the window / quitting). This gives AppHost an opportunity to persist empty state for that case, because _it_ knows how many windows there are. This could basically be its own PR. Probably worth xlinking this commit to #9800
Configuration menu - View commit details
-
Copy full SHA for 434abc2 - Browse repository at this point
Copy the full SHA 434abc2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1b59eb9 - Browse repository at this point
Copy the full SHA 1b59eb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for 39a9450 - Browse repository at this point
Copy the full SHA 39a9450View commit details -
Configuration menu - View commit details
-
Copy full SHA for 44b238e - Browse repository at this point
Copy the full SHA 44b238eView commit details
Commits on Mar 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 073350e - Browse repository at this point
Copy the full SHA 073350eView commit details -
Configuration menu - View commit details
-
Copy full SHA for ca511c9 - Browse repository at this point
Copy the full SHA ca511c9View commit details -
Configuration menu - View commit details
-
Copy full SHA for f70775a - Browse repository at this point
Copy the full SHA f70775aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 81140a5 - Browse repository at this point
Copy the full SHA 81140a5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 339972e - Browse repository at this point
Copy the full SHA 339972eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6d04353 - Browse repository at this point
Copy the full SHA 6d04353View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1138416 - Browse repository at this point
Copy the full SHA 1138416View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9957e5c - Browse repository at this point
Copy the full SHA 9957e5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for c8ce5b4 - Browse repository at this point
Copy the full SHA c8ce5b4View commit details
Commits on Mar 13, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 6aec80b - Browse repository at this point
Copy the full SHA 6aec80bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9316f5b - Browse repository at this point
Copy the full SHA 9316f5bView commit details
Commits on Mar 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 0808f94 - Browse repository at this point
Copy the full SHA 0808f94View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b3dc08 - Browse repository at this point
Copy the full SHA 5b3dc08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 59b07f1 - Browse repository at this point
Copy the full SHA 59b07f1View commit details -
Each page was registering as a handoff target, so basically we'd start the server then yeet the connection back to the first window and presto, you'd have a dead window and a connection on the wrong thread and everything was awful. Instead, only register as the handoff listener when we've actually said we want to be a handoff listener.
Configuration menu - View commit details
-
Copy full SHA for 7142ae8 - Browse repository at this point
Copy the full SHA 7142ae8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d55bb43 - Browse repository at this point
Copy the full SHA d55bb43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 11f9957 - Browse repository at this point
Copy the full SHA 11f9957View commit details -
Merge remote-tracking branch 'origin/main' into dev/migrie/oop/3/ainu…
…lindale # Conflicts: # src/cascadia/TerminalApp/AppLogic.cpp # src/cascadia/TerminalApp/AppLogic.h # src/cascadia/TerminalApp/AppLogic.idl # src/cascadia/TerminalApp/TerminalPage.h # src/cascadia/TerminalApp/TerminalWindow.cpp # src/cascadia/TerminalApp/TerminalWindow.h # src/cascadia/TerminalSettingsModel/GlobalAppSettings.cpp # src/cascadia/TerminalSettingsModel/GlobalAppSettings.h # src/cascadia/TerminalSettingsModel/GlobalAppSettings.idl # src/cascadia/WindowsTerminal/AppHost.cpp # src/cascadia/WindowsTerminal/AppHost.h
Configuration menu - View commit details
-
Copy full SHA for 55ee49b - Browse repository at this point
Copy the full SHA 55ee49bView commit details -
Merge remote-tracking branch 'origin/dev/migrie/oop/3/ainulindale' in…
…to dev/migrie/oop/3/valaquenta
Configuration menu - View commit details
-
Copy full SHA for fe2ee91 - Browse repository at this point
Copy the full SHA fe2ee91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1e4cc33 - Browse repository at this point
Copy the full SHA 1e4cc33View commit details
Commits on Mar 20, 2023
-
Merge remote-tracking branch 'origin/dev/migrie/oop/3/ainulindale' in…
…to dev/migrie/oop/3/valaquenta
Configuration menu - View commit details
-
Copy full SHA for 5a420d8 - Browse repository at this point
Copy the full SHA 5a420d8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 24da827 - Browse repository at this point
Copy the full SHA 24da827View commit details
Commits on Mar 21, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b02b935 - Browse repository at this point
Copy the full SHA b02b935View commit details -
Configuration menu - View commit details
-
Copy full SHA for f73ec9a - Browse repository at this point
Copy the full SHA f73ec9aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3659744 - Browse repository at this point
Copy the full SHA 3659744View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3af4d94 - Browse repository at this point
Copy the full SHA 3af4d94View commit details
Commits on Mar 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 697b420 - Browse repository at this point
Copy the full SHA 697b420View commit details