• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

sgobotta / live_dj
68%
dev: 68%

Build:
Build:
LAST BUILD BRANCH: feature/move-theme-to-settings
DEFAULT BRANCH: dev
Repo Added 20 Feb 2021 06:22PM UTC
Token Bk0XnkZf2wJb27Z9xm0gPIqvXqASBNmon regen
Build 199 Last
Files 83
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH feature/move-theme-to-settings
branch: SELECT
CHANGE BRANCH
x
Sync Branches
  • No branch selected
  • 101-Install-eslint-for-code-enforcement
  • 101-Perform-checks-for-code-analysis-and-style-enforcement
  • 102-Update-room-queue-management-through-Video-and-Playlsit-models
  • 104-Enhance-loader-on-new-and-show-liveviews
  • 86-As-a-User-I-want-to-see-notification-alerts-When-something-relevant-happens
  • 99-Give-the-embedded-player-ability-to-play/pause-other-peers'-players
  • add-tests
  • adds-room-settings-tests
  • adds-show-live-tests
  • coverage-tests-refactor
  • dev
  • develop
  • feat/2026-05-23
  • feat/es-ar-translations
  • feat/ignite-focus-treatment
  • feat/layouts-rework
  • feat/playlist-arrow-key-navigation
  • feature/2026-08-13
  • feature/2026-08-15
  • feature/add-cd
  • feature/add-searched-videos-to-the-queue
  • feature/add-videos-update
  • feature/add-voume-controls
  • feature/auto-end
  • feature/chat-avatar-left-of-username
  • feature/dark-mode
  • feature/general-improvements
  • feature/improve-search-bar
  • feature/move-theme-to-settings
  • feature/multiavatar-integration
  • feature/play-videos-on-list-item-click
  • feature/playlist-and-player-enhancements
  • feature/playlist-keyboard-focus-improvements
  • feature/room-settings-modal
  • feature/rooms-index-redesign
  • feature/rooms-list-rework
  • feature/settings-general-tab-avatar
  • feature/track-change-browser-notifications
  • feature/uiux-improvements-shareable-room-and-header-polishing
  • feature/video-player-controls
  • features/2026-08-09
  • fix/consistent-input-shadows
  • fix/focus-ignite-layer-override
  • launcher-animation-improvements
  • layout-updates
  • migrate-to-phoenix-1.6
  • peers-tests
  • refs/pull/112/merge
  • use-a-video-model

25 Aug 2026 11:01PM UTC coverage: 68.401%. Remained the same
db5637a3e8e7def9480d8681fa2caa2ecb83d720-PR-146

Pull #146

github

sgobotta
Fix plain arrows still seeking/adjusting volume on the sliders

The registry's default ignoreInputs guard blocks a scope whenever the
event target's tag is INPUT - meant to stop shortcuts from firing
while typing, but the seek bar and volume slider are also <input>
elements (type="range"), so this scope was silently declining before
ever reaching its own navigation logic whenever either was focused.
Plain arrow keys fell straight through to the native slider behavior
untouched, defeating the self-loop/preventDefault handling added for
them. Opt this scope out of that guard - move()'s own
this.el.contains(active) check already scopes it correctly, since
nothing text-editable lives inside the player controls container.

Adds an integration-level regression test (mounting the hook against
a real fixture and dispatching real keydown events through the
registry) so this class of bug - a scope's own directions being
correct but never reached - can't silently regress again.
Pull Request #146: Add a consumer-agnostic keyboard system with explicit grid navigation

1472 of 2152 relevant lines covered (68.4%)

30.42 hits per line

Relevant lines Covered
Build:
Build:
2152 RELEVANT LINES 1472 COVERED LINES
30.42 HITS PER LINE
Source Files on dev
  • Tree
  • List 83
  • Changed 3
  • Source Changed 0
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
db5637a3... feature/move-theme-to-settings Fix plain arrows still seeking/adjusting volume on the sliders The registry's default ignoreInputs guard blocks a scope whenever the event target's tag is INPUT - meant to stop shortcuts from firing while typing, but the seek bar and volume slide... Pull #146 25 Aug 2026 11:08PM UTC sgobotta github
68.4
078f8512... feature/move-theme-to-settings Add arrow-key navigation to the rooms lobby grid The grid's column count is a CSS breakpoint (grid-cols-2 sm:grid-cols-3), not a static value a scope's rows can be authored against ahead of time - the one consumer in this pass where an explicit m... Pull #146 25 Aug 2026 04:19AM UTC sgobotta github
68.45
1d26f72b... dev Merge pull request #145 from sgobotta/feature/move-theme-to-settings Add an Appearance tab and consolidate the settings modal push 24 Aug 2026 11:05PM UTC web-flow github
68.4
b3f75f2b... feature/move-theme-to-settings Make the mini avatar stack's member panel tappable on touch Same issue as the header avatar tooltip: the member-list panel only revealed on CSS :hover (plus a brief group-active flash that vanished on touch release), so it was effectively unusabl... Pull #145 24 Aug 2026 10:38PM UTC sgobotta github
68.36
5d12bb25... feature/move-theme-to-settings Make the avatar username tooltip tappable on touch devices user_avatar's tooltip only ever showed on CSS :hover, so it never appeared on touch screens (e.g. the rooms-list header avatar). Tapping the avatar now toggles it via a phx-click/phx-clic... Pull #145 24 Aug 2026 10:28PM UTC sgobotta github
68.42
43c3d6de... feature/move-theme-to-settings Extract shared username-update logic into SettingsHandlers RoomLive.Show and RoomLive.Index both render the settings modal's General tab and had near-identical save_username/username_error_message code. Move the actual Accounts call and changeset... Pull #145 24 Aug 2026 10:01PM UTC sgobotta github
68.36
2a646fff... feature/move-theme-to-settings Give the Appearance options a radio-check look, not a switch The theme rows previously reused toggle_switch's literal track/thumb shape, which reads as an on/off switch rather than a choice between two options. Swap the indicator for a circular r... Pull #145 24 Aug 2026 08:11PM UTC sgobotta github
68.2
321bb162... feature/move-theme-to-settings Remove the theme-switch fade/scale animation The 200ms fade-out plus a 500ms scale/fade-in on <body> made theme switching feel sluggish; apply the theme change immediately instead. Pull #145 24 Aug 2026 08:02PM UTC sgobotta github
68.2
d1dff606... feature/move-theme-to-settings Update room settings tests for the General/Room tab split Moves the room-rename and password tests onto the new Room tab/route, replaces the old per-room display-name tests with username tests on the General tab, and drops the disconnected-render... Pull #145 24 Aug 2026 06:03AM UTC sgobotta github
68.25
24b95747... dev Render Multiavatar avatars instead of initials (#144) * Add @multiavatar/multiavatar dependency Pulls in the JS library that generates unique deterministic SVG avatars from a seed string, used to replace the initial-letter avatar fallback. Co-A... push 24 Aug 2026 04:19AM UTC web-flow github
69.46
See All Builds (146)
  • Settings
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc