You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you are already on a prior release: run `WKVRCProxy.Updater.exe`from the install folder. It downloads this release, verifies the zip against the SHA256 in this body, atomically swaps the files, and relaunches.
3
+
Fresh install: follow the install steps above. Existing manual or prerelease installs can be replaced with this zip, or updated with `WKVRCProxy.Updater.exe`if that executable is already present in the install folder. The updater downloads this release, verifies the zip against the SHA256 in this body, atomically swaps the files, and relaunches.
4
4
5
5
If you hit a playback bug after this release: re-paste the URL with the watchdog window visible, copy the watchdog log starting from the failed request, and include both in the bug report.
@@ -219,23 +221,24 @@ function Resolve-PrevTagForSlice([string]$Tag, [string]$Repo) {
219
221
Source='subject-match'
220
222
}
221
223
}
222
-
Write-Host"::warning::Prev tag $candidatePrevTag subject '$orphanSubject' not found in current $Tag history. Falling back to root walk."
224
+
Write-Host"::warning::Prev tag $candidatePrevTag subject '$orphanSubject' not found in current $Tag history. Falling back to first-release changelog notes."
223
225
}
224
226
}
225
227
}
226
228
} else {
227
-
Write-Host"::warning::'gh release list' produced no usable output (gh not authed or no releases yet). Falling back to root walk."
229
+
Write-Host"::warning::'gh release list' produced no usable output (gh not authed or no releases yet). Falling back to first-release changelog notes."
228
230
}
229
231
}
230
232
231
-
# Layer 3: root walk.
232
-
$root= (& git rev-list --max-parents=0 HEAD |Select-Object-First 1).Trim()
233
-
Write-Host"::warning::No prior tag matched; walking from root $root."
233
+
# Layer 3: first release. The repository may have a long pre-release commit
234
+
# history whose subjects are not suitable for public release notes. Use the
235
+
# curated CHANGELOG section for this case.
236
+
Write-Host"::warning::No prior tag or published release matched; treating $Tag as the first release."
0 commit comments