') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })(); PR_26172_OWNER_034-history-snapshot-backfill by ToolboxAid · Pull Request #84 · ToolboxAid/HTML-JavaScript-Gaming · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `8fad0cd7095df4382aec6f86b56fd12dac8b907f`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_017 project instructions bootstrap install`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/PROJECT_INSTRUCTIONS.md`
- `docs_build/dev/ProjectInstructions/README.txt`
- `docs_build/dev/ProjectInstructions/TEAM_START_COMMANDS.md`
- `docs_build/dev/ProjectInstructions/addendums/build_path_sync.md`
- `docs_build/dev/ProjectInstructions/addendums/deprecation.md`
- `docs_build/dev/ProjectInstructions/addendums/multi_team.md`
- `docs_build/dev/ProjectInstructions/addendums/preservation.md`
- `docs_build/dev/ProjectInstructions/addendums/team_release_readiness.md`
- `docs_build/dev/ProjectInstructions/addendums/tile_overlay_status.md`
- `docs_build/dev/ProjectInstructions/archive/README.md`
- `docs_build/dev/ProjectInstructions/backlog/BACKLOG_MASTER.md`
- `docs_build/dev/ProjectInstructions/deprecation/README.md`
- `docs_build/dev/ProjectInstructions/team_assignments/TEAM_ASSIGNMENTS.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `66cce79c85f3b78be74ce17b6fe81c34121411e7`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_023 NATO team normalization final`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/TEAM_START_COMMANDS.md`
- `docs_build/dev/ProjectInstructions/addendums/team_release_readiness.md`
- `docs_build/dev/ProjectInstructions/backlog/BACKLOG_MASTER.md`
- `docs_build/dev/ProjectInstructions/team_assignments/TEAM_ASSIGNMENTS.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `903db837289fb90dcc131bc1e1ef5c4e690ae17b`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_024 active team registry`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/team_assignments/TEAM_ASSIGNMENTS.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `4f91ac755789c45e07a5e1d42d0075d21b5b7da1`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_025 active registry main reset`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/team_assignments/TEAM_ASSIGNMENTS.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `f262a624ca056734e6b9db05614f83aa11b58229`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_026 governance production ready closeout`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/backlog/BACKLOG_MASTER.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `ceb1864d8789af603bac0d8bc65c3b3fb838d5b1`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_028 EOD mainline closeout governance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/multi_team.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `8f7140e73cae22a6d0b4abc0d369dc282b4ee916`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_030 workstream hygiene governance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/multi_team.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `706c4697650e56a327046a92c4e1aa289ce48ec2`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_031 PI closeout governance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/multi_team.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `92000ccbcc440f7ac06f871cf9c6e198cca7a5f1`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_032 GitHub hygiene audit template`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/multi_team.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `2a8b557c2f802e3efeb25a40b345ed87cd22277d`
- Commit date: 2026-06-21
- Commit subject: `PR_26172_OWNER_033 governance hygiene closeout`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/backlog/BACKLOG_MASTER.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `addea6a143c0f798645e849c6cbc767e91f061bc`
- Commit date: 2026-06-21
- Commit subject: `OWNER: add canonical status model governance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/status_model.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `1e87bcfee5d0f89d9308f9e845d51775b9e80692`
- Commit date: 2026-06-21
- Commit subject: `OWNER: add canonical status model governance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/status_model.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `77bd3234c6a97d68be7166b6907db440712baeb4`
- Commit date: 2026-06-21
- Commit subject: `OWNER: add batch governance mode and PI hygiene standards`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/README.txt`
- `docs_build/dev/ProjectInstructions/addendums/batch_governance_mode.md`
- `docs_build/dev/ProjectInstructions/addendums/postgres_only.md`
- `docs_build/dev/ProjectInstructions/addendums/referenced_asset_protection.md`
- `docs_build/dev/ProjectInstructions/addendums/table_first_ui.md`
- `docs_build/dev/ProjectInstructions/addendums/tool_imagery.md`
- `docs_build/dev/ProjectInstructions/team_assignments/team_ownership.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `cc376b3abf1598391a5071befaf52921c39137d9`
- Commit date: 2026-06-21
- Commit subject: `OWNER: close Governance Phase 1`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/build_path_sync.md`
- `docs_build/dev/ProjectInstructions/addendums/governance_phase1_complete.md`
- `docs_build/dev/ProjectInstructions/addendums/naming_registry.md`
- `docs_build/dev/ProjectInstructions/addendums/pr_workflow.md`
- `docs_build/dev/ProjectInstructions/team_assignments/team_ownership.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `185a9f8156891506fa6bcc515235895ed9f845bd`
- Commit date: 2026-06-21
- Commit subject: `OWNER: close Governance Phase 1`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/build_path_sync.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `622161a7651f2e1065375a7532ccd20b5eeec936`
- Commit date: 2026-06-22
- Commit subject: `OWNER: add PRs shortcut and environment naming`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/naming_registry.md`
- `docs_build/dev/ProjectInstructions/addendums/pr_workflow.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Project Instructions History Snapshot

Status: Historical snapshot
Owner: OWNER

## Snapshot Source

- Source commit: `f4252348f0ad5b8324d2e887133c1580be33599a`
- Commit date: 2026-06-22
- Commit subject: `OWNER: consolidate historical governance guidance`
- History window: 2026-04-23 through 2026-06-22

## Changed Project Instructions Files

- `docs_build/dev/ProjectInstructions/addendums/branch_context_governance.md`
- `docs_build/dev/ProjectInstructions/addendums/branch_lock_governance.md`
- `docs_build/dev/ProjectInstructions/addendums/release_gate.md`
- `docs_build/dev/ProjectInstructions/addendums/team_start_and_release.md`
- `docs_build/dev/ProjectInstructions/team_assignments/ACTIVE_TEAM_REGISTRY.md`

## Notes

This snapshot preserves the 60-day Project Instructions history trail.
Active guidance remains in its original Project Instructions files.
Loading