Revert "Release APT v1.2.6 updater smoke test"
APT build checks / build-checks (push) Successful in 37s

This reverts commit a4faf09b3e.
This commit is contained in:
2026-08-23 15:03:49 +00:00
parent a4faf09b3e
commit b5fd0ef1c3
5 changed files with 7 additions and 11 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"manifest_version": 3, "manifest_version": 3,
"name": "Alta Proxy Tool Bridge", "name": "Alta Proxy Tool Bridge",
"version": "1.2.6", "version": "1.2.5",
"description": "Send Alta session cookies to a paired Alta Proxy Tool desktop app.", "description": "Send Alta session cookies to a paired Alta Proxy Tool desktop app.",
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4EZdkSgOsyiy5DRe0JkX+BpK94FpMjBU59NVIqDPO8QBDwvqNDWT/UjqHK/0aqSxzed5KibX6MdAvc495+u1sCybFdjDdXyBewEvg+PDqGiJketlZKC9dcR1RXHuPgAoM3NaNbMb3TqYcS9J4iGq0UwadxubkQrEcPiuyR6oriOkop8q9/5DWGb15wOGmiCuVmlXfUjNJIvNBm9P/ZHtgFBYDI2PuSSI5GI4j04VFpEyfNlFCrpi8GQ7bYZzezigZWXRjhhNwkx39bNHlkAWYa8XGZseCpKKvi0EaeCoBPjoYSAt161SM1dqX+/UC61/sLOU/SpDB1SYGTm5DC+7wIDAQAB", "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAt4EZdkSgOsyiy5DRe0JkX+BpK94FpMjBU59NVIqDPO8QBDwvqNDWT/UjqHK/0aqSxzed5KibX6MdAvc495+u1sCybFdjDdXyBewEvg+PDqGiJketlZKC9dcR1RXHuPgAoM3NaNbMb3TqYcS9J4iGq0UwadxubkQrEcPiuyR6oriOkop8q9/5DWGb15wOGmiCuVmlXfUjNJIvNBm9P/ZHtgFBYDI2PuSSI5GI4j04VFpEyfNlFCrpi8GQ7bYZzezigZWXRjhhNwkx39bNHlkAWYa8XGZseCpKKvi0EaeCoBPjoYSAt161SM1dqX+/UC61/sLOU/SpDB1SYGTm5DC+7wIDAQAB",
"permissions": ["cookies", "activeTab", "clipboardWrite", "storage"], "permissions": ["cookies", "activeTab", "clipboardWrite", "storage"],
+1 -1
View File
@@ -31,7 +31,7 @@
<main class="main-content"> <main class="main-content">
<div class="content-header"> <div class="content-header">
<h1>Alta Video Camera Proxy!</h1> <h1>Alta Video Camera Proxy</h1>
<button type="button" id="checkUpdateBtn" class="btn-update" title="Securely check GitPeji for a newer release"> <button type="button" id="checkUpdateBtn" class="btn-update" title="Securely check GitPeji for a newer release">
<span class="update-icon">&#x21bb;</span> <span class="update-icon">&#x21bb;</span>
<span class="update-text">Check for Updates</span> <span class="update-text">Check for Updates</span>
+2 -2
View File
@@ -1,12 +1,12 @@
{ {
"name": "alta-api-client", "name": "alta-api-client",
"version": "1.2.6", "version": "1.2.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "alta-api-client", "name": "alta-api-client",
"version": "1.2.6", "version": "1.2.5",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"axios": "1.19.0" "axios": "1.19.0"
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "alta-api-client", "name": "alta-api-client",
"version": "1.2.6", "version": "1.2.5",
"description": "Secure Windows Electron client for the Alta Camera Proxy", "description": "Secure Windows Electron client for the Alta Camera Proxy",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
+2 -6
View File
@@ -11,7 +11,7 @@ const ROOT = path.join(__dirname, '..');
const read = (name) => fs.readFileSync(path.join(ROOT, name), 'utf8'); const read = (name) => fs.readFileSync(path.join(ROOT, name), 'utf8');
const readJson = (name) => JSON.parse(read(name)); const readJson = (name) => JSON.parse(read(name));
function writeKit(root, { version = '1.2.6', legacy = false } = {}) { function writeKit(root, { version = '1.2.5', legacy = false } = {}) {
const extension = path.join(root, 'chrome-extension'); const extension = path.join(root, 'chrome-extension');
fs.mkdirSync(extension, { recursive: true }); fs.mkdirSync(extension, { recursive: true });
fs.writeFileSync(path.join(root, 'AltaCameraProxy.exe'), 'synthetic executable'); fs.writeFileSync(path.join(root, 'AltaCameraProxy.exe'), 'synthetic executable');
@@ -31,7 +31,7 @@ test('application and extension versions and supported dependencies stay coordin
const lock = readJson('package-lock.json'); const lock = readJson('package-lock.json');
const manifest = readJson('chrome-extension/manifest.json'); const manifest = readJson('chrome-extension/manifest.json');
assert.equal(pkg.version, '1.2.6'); assert.equal(pkg.version, '1.2.5');
assert.equal(manifest.version, pkg.version); assert.equal(manifest.version, pkg.version);
assert.equal(lock.version, pkg.version); assert.equal(lock.version, pkg.version);
assert.equal(lock.packages[''].version, pkg.version); assert.equal(lock.packages[''].version, pkg.version);
@@ -56,10 +56,6 @@ test('build remains Windows portable without misleading signing overrides', () =
assert.match(pkg.scripts.check, /verify-kit/); assert.match(pkg.scripts.check, /verify-kit/);
}); });
test('main heading includes the v1.2.6 updater smoke marker', () => {
assert.match(read('index.html'), /<h1>Alta Video Camera Proxy!<\/h1>/);
});
test('GitPeji CI targets the live runner and is build-only on Node 22', () => { test('GitPeji CI targets the live runner and is build-only on Node 22', () => {
const workflow = read('.gitea/workflows/ci.yml'); const workflow = read('.gitea/workflows/ci.yml');
assert.match(workflow, /runs-on:\s*apt-ci/); assert.match(workflow, /runs-on:\s*apt-ci/);