Package the portable DSH profiles, local plugins, desktop integration, Firefox wrapper, and ownership-aware installer lifecycle. Bundle checksum-pinned OpenVSCode, editor extensions, translation assets, and cloudflared so unreliable upstream artifact downloads cannot break a clean installation.
16 lines
442 B
JavaScript
16 lines
442 B
JavaScript
/**
|
|
* dsh-header-menu — host half.
|
|
*
|
|
* Client-only: all behavior lives in the browser half (exports "./client"),
|
|
* which collapses the conversation header utility buttons into a dropdown.
|
|
* The host half exists solely so the profile row loads cleanly.
|
|
* @module dsh-header-menu
|
|
*/
|
|
|
|
export const name = 'dsh-header-menu'
|
|
|
|
/** No host services required. */
|
|
export const inject = []
|
|
|
|
/** No-op host apply. */
|
|
export function apply() {}
|