') + ')', '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); } })(); })(); chore: release 1.0.0 by ineedjet · Pull Request #174 · rubykatzen/flightdeck · 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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
{
".": "0.11.1"
".": "1.0.0"
}
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
# Changelog

## [1.0.0](https://github.com/rubykatzen/flightdeck/compare/v0.11.1...v1.0.0) (2026-08-28)


### ⚠ BREAKING CHANGES

* rework deploy/renovate as composite actions with validated targets ([#162](https://github.com/rubykatzen/flightdeck/issues/162))

### Bug Fixes

* rename dependabot label to deps, matching baseline 0.16.2 ([#175](https://github.com/rubykatzen/flightdeck/issues/175)) ([800eb86](https://github.com/rubykatzen/flightdeck/commit/800eb860fc58653a1a95e0c11151dd76dbf4ce53))


### Code Refactoring

* rework deploy/renovate as composite actions with validated targets ([#162](https://github.com/rubykatzen/flightdeck/issues/162)) ([cfd3cb7](https://github.com/rubykatzen/flightdeck/commit/cfd3cb7d170e06a54f9513cfcd5e4b391ab4b448))

## [0.11.1](https://github.com/rubykatzen/flightdeck/compare/v0.11.0...v0.11.1) (2026-08-26)


Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -294,12 +294,12 @@ Builds a zip archive from caller-selected paths, rejects runtime state and env f
steps:
- uses: actions/checkout@v7
with:
ref: v0.11.1
- uses: rubykatzen/flightdeck/.github/actions/build-bundle@v0.11.1
ref: v1.0.0
- uses: rubykatzen/flightdeck/.github/actions/build-bundle@v1.0.0
with:
paths: apps
bundle-name: flightdeck-apps.zip
release-tag: v0.11.1
release-tag: v1.0.0
token: ${{ secrets.GITHUB_TOKEN }}
```

Expand All@@ -319,10 +319,10 @@ A thin defaults wrapper around `build-bundle`: `paths` defaults to `apps`, `bund
steps:
- uses: actions/checkout@v7
with:
ref: v0.11.1
- uses: rubykatzen/flightdeck/.github/actions/build-apps-bundle@v0.11.1
ref: v1.0.0
- uses: rubykatzen/flightdeck/.github/actions/build-apps-bundle@v1.0.0
with:
release-tag: v0.11.1
release-tag: v1.0.0
token: ${{ secrets.GITHUB_TOKEN }}
```

Expand DownExpand Up@@ -352,7 +352,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: rubykatzen/flightdeck/.github/actions/deploy@v0.11.1
- uses: rubykatzen/flightdeck/.github/actions/deploy@v1.0.0
with:
target-manifest: targets/mainframe.yml # required, path in this repository
ssh-private-key: ${{ secrets.DEPLOY_SSH_PRIVATE_KEY }}
Expand All@@ -362,7 +362,7 @@ jobs:
# tailscale-oauth-secret: ${{ secrets.TAILSCALE_OAUTH_SECRET }} # required only if tailscale-oauth-client-id is set
# tailscale-tags: tag:ci # default: tag:ci
- name: Notify Telegram
uses: rubykatzen/baseline/.github/actions/send-telegram-message@v0.16.1
uses: rubykatzen/baseline/.github/actions/send-telegram-message@v1.0.0
with:
message: "Deploy: mainframe updated"
telegram-bot-token: ${{ secrets.TELEGRAM_BOT_TOKEN }}
Expand All@@ -371,7 +371,7 @@ jobs:

<!-- x-release-please-end -->

The `@v0.11.1` pin on the `uses:` line only controls which ref this action's own code runs at. `target-manifest`'s own `app_refs` entries are separate and don't have to match it. <!-- x-release-please-version -->
The `@v1.0.0` pin on the `uses:` line only controls which ref this action's own code runs at. `target-manifest`'s own `app_refs` entries are separate and don't have to match it. <!-- x-release-please-version -->

#### `deploy.yml`

Expand Down