Skip to content

Releases: flyingpie/windows-terminal-quake

v2.0.10

20 May 13:02
Compare
Choose a tag to compare
v2.0.10 Pre-release
Pre-release
Release 2.0.9

v2.0.9

28 Apr 19:24
Compare
Choose a tag to compare
  • When an app is toggled up, it retains its original screen (fixes #64).
  • Reworked how windows are tracked and attached to, should fix a lot of "Main window handle not available yet"-issues.
  • Added support for multiple configuration file locations (see docs for more info).
  • Moved default log location to temp directory.
  • Added "Open logs" button to tray icon.
  • Added "HideOnFocusLost", which controls whether an app should be toggled out if another app gains focus.

Globally, for all apps:

{
  "HideOnFocusLost": true | false
}

Or per app:

{
  "Apps": [
    {
      "Name": "Terminal",
      "HideOnFocusLost": true | false
    },
    ...
  ]
}

v2.0.8

27 Apr 23:12
Compare
Choose a tag to compare
  • Automated Scoop and WinGet manifest generation.
  • Automated GitHub release creation.

v2.0.0-prerelease7

18 Apr 22:18
Compare
Choose a tag to compare
v2.0.0-prerelease7 Pre-release
Pre-release
  • Added opacity;
  • Toggleable task bar icon visibility.

image

Globally, for all apps:

{
  "Opacity": 0-100,
  "TaskBarIconVisibility": "AlwaysHidden | AlwaysVisible"
}

Or per app:

{
  "Apps": [
    {
      "Name": "Terminal",

      "Opacity": 0-100,
      "TaskBarIconVisibility": "AlwaysHidden | AlwaysVisible"
    },
    ...
  ]
}

v2.0.0-prerelease6

31 Mar 22:24
Compare
Choose a tag to compare
v2.0.0-prerelease6 Pre-release
Pre-release

Added sizing.

wtq-sizing-01

Globally, for all apps:

{
  // Horizontal screen coverage, as a percentage (defaults to 95).
  "HorizontalScreenCoverage": 95,

  // Vertical screen coverage, as a percentage (defaults to 95).
  "VerticalScreenCoverage": 95,

  // How much room to leave between the top of the terminal and the top of the screen, in pixels.
  "VerticalOffset": 0
}

Or per app:

{
  "Apps": [
    {
      "Name": "Terminal",

      // Horizontal screen coverage, as a percentage (defaults to 95).
      "HorizontalScreenCoverage": 95,

      // Vertical screen coverage as a percentage (defaults to 95).
      "VerticalScreenCoverage": 95,
    
      // How much room to leave between the top of the terminal and the top of the screen, in pixels.
      "VerticalOffset": 0
    },
    ...
  ]
}

v2.0.0-prerelease5

17 Mar 22:58
Compare
Choose a tag to compare
v2.0.0-prerelease5 Pre-release
Pre-release

Initial support for auto-starting apps.

BREAKING CHANGES
The configuration file has been simplified.

Old syntax:

"Apps": [
  {
    "Name": "Terminal",
    "HotKeys": [ { "Modifiers": "Control", "Key": "D1" } ],
    "FindExisting": {
      "ProcessName": "WindowsTerminal"
    },
    "StartNew": {
      "FileName": "wt"
    }
  }
]

The "ProcessName"-property is optional for processes where they are the same.

New syntax:

"Apps": [
  {
    "Name": "Terminal",
    "HotKeys": [{ "Modifiers": "Control", "Key": "D1" }],
    "FileName": "wt",
    "ProcessName": "WindowsTerminal"
  }
]

Auto-starting apps to toggle

Currently exploring the direction where an app has an "AttachMode", which dictates how WTQ grabs an app:

  • FindOrStart (default)
    Looks for an existing process as specified by the "FileName"- and/or "ProcessName"-properties. If no process was found, a new one will be started using the value under the "FileName"-property.
  • Find
    Just looks for existing processes as specified by the "FileName"- and/or "ProcessName"-properties. No new processes will be started (previous version behavior, where you always had to manually start the app.
  • Start (very experimental)
    Always starts a new process, specifically to be used by WTQ. Meant for apps that have multiple open instances. Initially meant for (among other things) browsers, but these turn out to be more complicated. This will be documented later.
  • Manual
    Attaches whatever app has focus, when the hot key is pressed. Keeps the app attached until WTQ is closed.

The mode can be specified per app (note that "FindOrStart" is the default:

"Apps": [
  {
    "Name": "Terminal",
    "AttachMode": "Find", // Only attach to process that is already running, don't auto-start one.
    "HotKeys": [{ "Modifiers": "Control", "Key": "D1" }],
    "FileName": "wt",
    "ProcessName": "WindowsTerminal"
  }
]

v2.0.0-prerelease3

11 Feb 20:48
Compare
Choose a tag to compare
v2.0.0-prerelease3 Pre-release
Pre-release

WinGet preperation

v2.0.0-prerelease4

13 Feb 20:18
1c6cfcd
Compare
Choose a tag to compare
v2.0.0-prerelease4 Pre-release
Pre-release

Added "PreferMonitor" and "MonitorIndex" to control what monitor apps are toggled on.

The setting is available at the root config level, and can be overridden per application.

{
  "PreferMonitor": "WithCursor", // WithCursor | Primary | AtIndex
  "MonitorIndex": 0,

  "Apps": [
    {
      "PreferMonitor": "WithCursor", // WithCursor | Primary | AtIndex
      "MonitorIndex": 0,
    }
  ]
}

v2.0.0-prerelease1

22 Jan 21:17
Compare
Choose a tag to compare
v2.0.0-prerelease1 Pre-release
Pre-release

The next major version of Windows-Terminal-Quake, with support for multiple apps, including terminals other than Windows Terminal.

5ICdmaAYuz.mp4

Feel free to join the v2 discussion.

Includes example configuration (windows-terminal-quake.jsonc):

  • Ctrl + 1: Windows Terminal

  • Ctrl + 2: Q-Dir

  • Ctrl + 3: Process Hacker

  • Ctrl + 4: Spotify

  • Ctrl + Q: Most recent app

Comes in 2 flavors:
Self Contained: Runs without any prerequisites, but is massive.
Requires Net8: You'll need to download the .Net 8 runtime first.

2.0.0-prerelease2

01 Feb 00:28
83db694
Compare
Choose a tag to compare
2.0.0-prerelease2 Pre-release
Pre-release
  • Re-introduced tray icon, app runs in the background now
  • Toggle out on focus lost (not configurable yet)
  • Alternative method for toggling focus back to previous app, that does not change app state, reduces flickering

Feel free to join the v2 discussion.

The config file has changed slightly, see included example
Includes example configuration (windows-terminal-quake.jsonc):

  • Ctrl + 1: Windows Terminal

  • Ctrl + 2: Q-Dir

  • Ctrl + 3: Process Hacker

  • Ctrl + 4: Spotify

  • Ctrl + Q: Most recent app

Comes in 2 flavors:
Self Contained: Runs without any prerequisites, but is massive.
Requires Net8: You'll need to download the .Net 8 runtime first.