') + ')', '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); } })(); })(); Update to AARCHMRS-2026-06 by monoid · Pull Request #56 · monoid/harm · GitHub
Skip to content

Update to AARCHMRS-2026-06 - #56

Merged
monoid merged 2 commits into
masterfrom
aarchmrs-2026-06
Jul 8, 2026
Merged

Update to AARCHMRS-2026-06#56
monoid merged 2 commits into
masterfrom
aarchmrs-2026-06

Conversation

@monoid

@monoidmonoid commented Jul 8, 2026

Copy link
Copy Markdown
Owner

Summary by CodeRabbit

  • New Features

    • Updated the available release artifacts to the 2026-06 build.
    • Bumped related package versions to align with the latest release.
  • Chores

    • Refreshed download metadata so users will receive the newer archive package and checksums.

@monoidmonoid self-assigned this Jul 8, 2026
@monoidmonoid added enhancement New feature or request aarchmrs labels Jul 8, 2026
@coderabbitai

coderabbitaiBot commented Jul 8, 2026

Copy link
Copy Markdown

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 9e9d6b5f-891a-4f21-8437-b55db6eeeeda

📥 Commits

Reviewing files that changed from the base of the PR and between a6edde4 and 6a97a55.

⛔ Files ignored due to path filters (2)
  • aarchmrs-instructions/src/A64/control.rs is excluded by !aarchmrs-instructions/src/**
  • aarchmrs-instructions/src/A64/control/extendedhints.rs is excluded by !aarchmrs-instructions/src/**
📒 Files selected for processing (4)
  • Cargo.toml
  • aarchmrs-gen/Cargo.toml
  • aarchmrs-gen/src/lib.rs
  • aarchmrs-instructions/Cargo.toml

📝 Walkthrough

Walkthrough

This PR bumps version strings from 2026-03 to 2026-06 in the workspace Cargo.toml, aarchmrs-gen/Cargo.toml, and aarchmrs-instructions/Cargo.toml, and updates the AARCHMRS_2026_03_* download constants (URL, filename, MD5, size) in aarchmrs-gen/src/lib.rs to reference the 2026-06 archive.

Changes

Version and Artifact Metadata Bump

Layer / File(s)Summary
Workspace and crate version bumps
Cargo.toml, aarchmrs-gen/Cargo.toml, aarchmrs-instructions/Cargo.toml
Version fields updated from 2026-03 to 2026-06 across workspace dependency declarations and crate package manifests.
Download constants update
aarchmrs-gen/src/lib.rs
URL, filename, MD5 hash, and size constants updated to reference the FAT-2026-06 archive instead of FAT-2026-03.

Estimated code review effort: 1 (Trivial) | ~3 minutes

Possibly related PRs

  • monoid/harm#46: Both PRs update the same AARCHMRS artifact metadata constants (URL/filename/MD5/size) in aarchmrs-gen for a new dated release.
  • monoid/harm#53: Both PRs update the AARCHMRS versioned download/archive metadata in aarchmrs-gen/src/lib.rs tied to dated artifact sets.

Suggested labels:instructions, generation

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check nameStatusExplanation
Description Check✅ PassedCheck skipped - CodeRabbit’s high-level summary is enabled.
Title check✅ PassedThe title clearly matches the main change: bumping AARCHMRS artifacts and crate versions to 2026-06.
Docstring Coverage✅ PassedNo functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check✅ PassedCheck skipped because no linked issues were found for this pull request.
Out of Scope Changes check✅ PassedCheck skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch aarchmrs-2026-06

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@monoid
monoid merged commit 6a1053e into masterJul 8, 2026
2 checks passed
@monoid
monoid deleted the aarchmrs-2026-06 branch July 8, 2026 15:34
@monoidmonoid added instructions `aarchmrs-instructions` and `aarchmrs-types` and removed aarchmrs labels Jul 10, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancementNew feature or requestinstructions`aarchmrs-instructions` and `aarchmrs-types`

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@monoid