Skip to content

Commit 14b5bed

Browse files
committed
Release 2.0.9
1 parent bce702e commit 14b5bed

8 files changed

+64
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# Changelog
22

33
## [vNext]
4+
- Creating a new app instance is now done in a finite retry loop, and stops after 5 failures.
45

5-
## [2.0.9] / Unreleased
6+
## [2.0.9] / 2024-05-20
7+
- When an app is toggled up, it retains its original screen (fixes [#64](https://github.com/flyingpie/windows-terminal-quake/issues/64)).
68
- Reworked how windows are tracked and attached to, should fix a lot of "Main window handle not available yet"-issues.
79
- Added support for multiple configuration file locations (see docs for more info).
810
- Moved default log location to temp directory.

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.9
1+
2.0.10

scoop/wtq-2.0.9.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "2.0.9",
3+
"description": "Turn any app into a Quake-style toggleable app.",
4+
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
5+
"bin": "wtq.exe",
6+
"shortcuts": [
7+
[
8+
"wtq.exe",
9+
"WTQ - Windows Terminal Quake"
10+
]
11+
],
12+
"persist": "wtq.jsonc",
13+
"checkver": "github",
14+
"architecture": {
15+
"64bit": {
16+
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.9/win-x64_self-contained.zip",
17+
"hash": "54720c6cfbd362b59dfba66b506c91f28cc09d6f473b1677ad10d77de9e589db"
18+
}
19+
}
20+
}

scoop/wtq-latest.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.8",
2+
"version": "2.0.9",
33
"description": "Turn any app into a Quake-style toggleable app.",
44
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
55
"bin": "wtq.exe",
@@ -13,8 +13,8 @@
1313
"checkver": "github",
1414
"architecture": {
1515
"64bit": {
16-
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.8/win-x64_self-contained.zip",
17-
"hash": "2fd44326aca5a34f7dcc84e2b37ba79c3395c4c301b5e38523020636fde11ffc"
16+
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.9/win-x64_self-contained.zip",
17+
"hash": "54720c6cfbd362b59dfba66b506c91f28cc09d6f473b1677ad10d77de9e589db"
1818
}
1919
}
2020
}

scoop/wtq-nightly.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.0.8",
2+
"version": "2.0.9",
33
"description": "Turn any app into a Quake-style toggleable app.",
44
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
55
"bin": "wtq.exe",
@@ -13,8 +13,8 @@
1313
"checkver": "github",
1414
"architecture": {
1515
"64bit": {
16-
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.8/win-x64_self-contained.zip",
17-
"hash": "2fd44326aca5a34f7dcc84e2b37ba79c3395c4c301b5e38523020636fde11ffc"
16+
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.9/win-x64_self-contained.zip",
17+
"hash": "54720c6cfbd362b59dfba66b506c91f28cc09d6f473b1677ad10d77de9e589db"
1818
}
1919
}
2020
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PackageIdentifier: flyingpie.windows-terminal-quake
2+
PackageVersion: 2.0.9
3+
InstallerType: zip
4+
NestedInstallerType: portable
5+
NestedInstallerFiles:
6+
- RelativeFilePath: wtq.exe
7+
PortableCommandAlias: wtq
8+
Commands:
9+
- wtq
10+
ReleaseDate: 2024-05-20
11+
Installers:
12+
- Architecture: x64
13+
InstallerUrl: https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.9/win-x64_self-contained.zip
14+
InstallerSha256: 54720c6cfbd362b59dfba66b506c91f28cc09d6f473b1677ad10d77de9e589db
15+
ManifestType: installer
16+
ManifestVersion: 1.5.0
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
PackageIdentifier: flyingpie.windows-terminal-quake
2+
PackageVersion: 2.0.9
3+
PackageLocale: en-US
4+
Publisher: Flyingpie
5+
PublisherUrl: http://flyingpie.nl/
6+
PackageName: windows-terminal-quake
7+
PackageUrl: https://github.com/flyingpie/windows-terminal-quake
8+
License: MIT
9+
LicenseUrl: https://github.com/flyingpie/windows-terminal-quake/blob/master/LICENSE
10+
ShortDescription: Turn any app into a Quake-style toggleable app.
11+
Moniker: windows-terminal-quake
12+
ManifestType: defaultLocale
13+
ManifestVersion: 1.5.0
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
PackageIdentifier: flyingpie.windows-terminal-quake
2+
PackageVersion: 2.0.9
3+
DefaultLocale: en-US
4+
ManifestType: version
5+
ManifestVersion: 1.5.0

0 commit comments

Comments
 (0)