Skip to content

Commit

Permalink
V2.0.13 (#170)
Browse files Browse the repository at this point in the history
* v2.0.13

* Workspace

* Workspace
  • Loading branch information
flyingpie authored Feb 7, 2025
1 parent fced4bd commit 6e9732b
Show file tree
Hide file tree
Showing 11 changed files with 318 additions and 61 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.13
preview
20 changes: 20 additions & 0 deletions scoop/wtq-2.0.13.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"version": "2.0.13",
"description": "Turn any app into a Quake-style toggleable app.",
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
"bin": "wtq.exe",
"shortcuts": [
[
"wtq.exe",
"WTQ - Windows Terminal Quake"
]
],
"persist": "wtq.jsonc",
"checkver": "github",
"architecture": {
"64bit": {
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.13/win-x64_self-contained.zip",
"hash": "964795921fde6729a811d434433def15f81862b31276eca50c7d0e56d9523c39"
}
}
}
6 changes: 3 additions & 3 deletions scoop/wtq-latest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.12",
"version": "2.0.13",
"description": "Turn any app into a Quake-style toggleable app.",
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
"bin": "wtq.exe",
Expand All @@ -13,8 +13,8 @@
"checkver": "github",
"architecture": {
"64bit": {
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.12/win-x64_self-contained.zip",
"hash": "e92289895aca5edfbdf95edba96016fee77cb57c2bd2e81970e68cdee7b3a3ac"
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.13/win-x64_self-contained.zip",
"hash": "964795921fde6729a811d434433def15f81862b31276eca50c7d0e56d9523c39"
}
}
}
6 changes: 3 additions & 3 deletions scoop/wtq-nightly.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.12",
"version": "2.0.13",
"description": "Turn any app into a Quake-style toggleable app.",
"homepage": "https://github.com/flyingpie/windows-terminal-quake",
"bin": "wtq.exe",
Expand All @@ -13,8 +13,8 @@
"checkver": "github",
"architecture": {
"64bit": {
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.12/win-x64_self-contained.zip",
"hash": "e92289895aca5edfbdf95edba96016fee77cb57c2bd2e81970e68cdee7b3a3ac"
"url": "https://github.com/flyingpie/windows-terminal-quake/releases/download/v2.0.13/win-x64_self-contained.zip",
"hash": "964795921fde6729a811d434433def15f81862b31276eca50c7d0e56d9523c39"
}
}
}
4 changes: 2 additions & 2 deletions src/01-Build/NukeBuild/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public sealed class Build : NukeBuild
var sha256 = Convert.ToHexString(await SHA256.HashDataAsync(File.OpenRead(PathToWin64SelfContainedZip))).ToLowerInvariant();

var manifest = tpl
.Replace("$GH_RELEASE_VERSION$", $"v{SemVerVersion}", StringComparison.OrdinalIgnoreCase)
.Replace("$GH_RELEASE_VERSION$", SemVerVersion, StringComparison.OrdinalIgnoreCase)
.Replace("$PACKAGE_VERSION$", SemVerVersion, StringComparison.OrdinalIgnoreCase)
.Replace("$SELF_CONTAINED_SHA256$", sha256, StringComparison.OrdinalIgnoreCase);

Expand Down Expand Up @@ -356,7 +356,7 @@ public sealed class Build : NukeBuild
var target = manifestRoot / fn;

var manifest = tpl
.Replace("$GH_RELEASE_VERSION$", $"v{SemVerVersion}", StringComparison.OrdinalIgnoreCase)
.Replace("$GH_RELEASE_VERSION$", SemVerVersion, StringComparison.OrdinalIgnoreCase)
.Replace("$PACKAGE_VERSION$", SemVerVersion, StringComparison.OrdinalIgnoreCase)
.Replace("$RELEASE_DATE$", DateTimeOffset.UtcNow.ToString("yyyy-MM-dd"), StringComparison.OrdinalIgnoreCase)
.Replace("$SELF_CONTAINED_SHA256$", sha256, StringComparison.OrdinalIgnoreCase);
Expand Down
Loading

0 comments on commit 6e9732b

Please sign in to comment.