Skip to content

v2.0.10

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 20 May 13:02
· 38 commits to c94f77f86b9197f6cabafad6497e483d3fcfed97 since this release
  • Correctly handle multiple monitor setup, where apps that got toggled off lingered around at the top of the screen (fixes #133).

  • Added options to control the animation speed and style:

    • AnimationDurationMs How long the animation takes.
    • AnimationDurationMsWhenSwitchingApps How long the animation takes, when switching between WTQ-attached apps.
    • AnimationTargetFps How often to attempt to move an application window per second.
    • AnimationTypeToggleOn Easing used for toggling on an app.
    • AnimationTypeToggleOff Easing used for toggling off an app.
  • Reworked how apps are tracked

Previously, a background worker was constantly looking for configured apps, and starting processes for ones that weren't running (by default, unless the AttachMode was set to something other than FindOrCreate).

Now, finding and creating app processes only happens when WTQ starts (configurable) and when a hot key is pressed.

As a result, an app that is manually closed is no longer automatically restarted. And perhaps more relevant, when starting an app doesn't succeed, it no longer results in an infinite retry loop.

This was especially problematic when starting a conhost-hosted app (such as PowerShell), while Windows Terminal was configured to be the default console host. In such cases, Windows Terminal would take over PowerShell, the conhost process would exit, and WTQ assumed the process failed to start.

  • Added AlwaysOnTop, which forces an app to always be above other windows, even if it doesn't have focus.