- deploy-biibaye.sh: VPS deploy script
- patch-index-html.js: post-build HTML patching (title, favicon, meta)
- patch-css-colors.js: post-build CSS color replacement (blue -> orange)
- patch-index-html.py: Python alternative for host-side HTML patching
- console-package.json: snapshot with @biibaye/branding link dependency
- AGENTS.md: full session docs for 2026-05-24 and 2026-05-25
Root cause: ember-intl merge order gives host app translations priority over
addon translations. The translations/en-us.yaml file was silently ignored.
Solution: Call intl.addTranslations('en-us', { 'app.name': 'Biibaye' })
at runtime from both setupExtension and onEngineLoaded hooks. This injects
the translation into the active intl service after the app boots.
Also removes the non-functional translations/en-us.yaml file.
- Call ensureEngineLoaded in setupExtension to trigger translation loading
- Add onEngineLoaded hook to set title after engine fully boots
- This ensures translations override app.name: Biibaye and title persists
- Updated all favicon files with Biibaye-branded icons
- Updated logo SVGs and icon PNGs
- Updated extension.js favicon references to match new filenames
- Updated browserconfig.xml with correct paths and #FF4500 tile color
- Overrides app name to Biibaye via translations
- Sets window title to Biibaye - Delivery System
- Injects primary color #FF4500 and dark bg #343538
- Replaces favicons with custom assets (placeholder files)
- Includes site.webmanifest with Biibaye config
- Minimal Ember engine to satisfy Fleetbase extension system