Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: daydreamlive/scope
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.3
Choose a base ref
...
head repository: daydreamlive/scope
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.4
Choose a head ref
  • 18 commits
  • 35 files changed
  • 9 contributors

Commits on Feb 13, 2026

  1. Add NDI feature to README

    Added NDI real-time video sharing feature to README.
    yondonfu authored Feb 13, 2026
    Configuration menu
    Copy the full SHA
    7655c90 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2026

  1. feat: ndi output support & ndi live preview (#457)

    * feat: ndi output support & output sink
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * mjpeg live preview for ndi
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * remove legacy spout sender & address review comments
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * output sink: fix left-over spoutSender label on windows
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * address comments
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * 2fps ndi live preview
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * format app.py
    
    Signed-off-by: gioelecerati <[email protected]>
    
    * add show live preview toggle to frontend
    
    Signed-off-by: gioelecerati <[email protected]>
    
    ---------
    
    Signed-off-by: gioelecerati <[email protected]>
    gioelecerati authored Feb 16, 2026
    Configuration menu
    Copy the full SHA
    9122254 View commit details
    Browse the repository at this point in the history
  2. Add fal deploy github action (#467)

    Signed-off-by: Max Holland <[email protected]>
    mjh1 authored Feb 16, 2026
    Configuration menu
    Copy the full SHA
    eea3e99 View commit details
    Browse the repository at this point in the history
  3. Fal deploy action needs to depend on docker build

    Signed-off-by: Max Holland <[email protected]>
    mjh1 committed Feb 16, 2026
    Configuration menu
    Copy the full SHA
    cdc760f View commit details
    Browse the repository at this point in the history

Commits on Feb 17, 2026

  1. Change dropping processed frame log to debug

    Signed-off-by: Rafal Leszko <[email protected]>
    leszko committed Feb 17, 2026
    Configuration menu
    Copy the full SHA
    4b12b8b View commit details
    Browse the repository at this point in the history
  2. Fix LoRA docs: cloud paths, wget tip, trigger keyword warning

    Closes #464
    
    Signed-off-by: viborc <[email protected]>
    viborc authored and yondonfu committed Feb 17, 2026
    Configuration menu
    Copy the full SHA
    ce6e938 View commit details
    Browse the repository at this point in the history
  3. Ensure plugins installed from manifest on startup

    Signed-off-by: Yondon Fu <[email protected]>
    yondonfu committed Feb 17, 2026
    Configuration menu
    Copy the full SHA
    d1afceb View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2026

  1. Fix plugins.txt name matching for git URLs and local paths

    _extract_package_name returned the repo name for git URLs (e.g.
    "FlashVSR-Pro") instead of the actual package name ("flashvsr"), and
    returned the full filesystem path for local directories. This caused
    ensure_plugins_installed to think plugins were missing on every restart,
    triggering unnecessary reinstalls.
    
    Add _get_name_from_resolved to look up the authoritative package name
    from resolved.txt for git URLs. Update _extract_package_name to use it
    for git URLs and delegate to _get_package_name_from_path for local
    directory paths.
    
    Co-Authored-By: Claude Opus 4.6 <[email protected]>
    Signed-off-by: Yondon Fu <[email protected]>
    yondonfu and claude committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    3c6242d View commit details
    Browse the repository at this point in the history
  2. Cap video input resolution to pipeline's pixel budget

    When a video input (NDI source, webcam, or uploaded video) has a
    resolution larger than the pipeline can handle in real-time, scale it
    down to fit within the pipeline's default pixel budget while preserving
    the source's aspect ratio. This prevents OOMs, black screens, and slow
    output when connecting high-resolution sources to diffusion pipelines.
    
    Co-Authored-By: Claude Opus 4.6 <[email protected]>
    Signed-off-by: Yondon Fu <[email protected]>
    yondonfu and claude committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    589be62 View commit details
    Browse the repository at this point in the history
  3. Dual push Docker image to GHCR

    Signed-off-by: Thom Shutt <[email protected]>
    thomshutt authored and leszko committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    873a49b View commit details
    Browse the repository at this point in the history
  4. Add OCI labels to the image so GHCR properly links the package to the…

    … repository
    
    Signed-off-by: Thom Shutt <[email protected]>
    thomshutt authored and leszko committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    fcbf898 View commit details
    Browse the repository at this point in the history
  5. Fix prompt drop when input queue is not yet full at cache reset

    When reset_cache and lora_scales are popped from self.parameters and
    the input queue doesn't yet have enough frames, the early return
    discards those values. On the next iteration init_cache defaults to
    False (pipeline already prepared), so the pipeline never resets its
    autoregressive cache and the new prompt has no visible effect from
    the user's perspective.
    
    Restore reset_cache and lora_scales into self.parameters before the
    early return so they are applied together with the new prompt once
    frames are available.
    
    Fixes #476
    
    Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
    Signed-off-by: Rafal Leszko <[email protected]>
    leszko and claude committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    2ca6a26 View commit details
    Browse the repository at this point in the history
  6. Add multiple pre/post-prprocessors

    Signed-off-by: Rafal Leszko <[email protected]>
    leszko authored and yondonfu committed Feb 18, 2026
    Configuration menu
    Copy the full SHA
    1a7052f View commit details
    Browse the repository at this point in the history

Commits on Feb 19, 2026

  1. Fix - get daydream URL variable at run time

    Signed-off-by: Max Holland <[email protected]>
    mjh1 committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    1e7d506 View commit details
    Browse the repository at this point in the history
  2. bugfix: cleanup queues

    Signed-off-by: Varshith B <[email protected]>
    varshith15 authored and leszko committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    88d0197 View commit details
    Browse the repository at this point in the history
  3. fix: nit

    Signed-off-by: Varshith B <[email protected]>
    varshith15 authored and leszko committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    b73b07b View commit details
    Browse the repository at this point in the history
  4. Show dropdown with none if there are no preprocessors

    Signed-off-by: Rafal Leszko <[email protected]>
    leszko committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    67e4709 View commit details
    Browse the repository at this point in the history
  5. chore: bump version to 0.1.4

    Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    leszko committed Feb 19, 2026
    Configuration menu
    Copy the full SHA
    3557fcf View commit details
    Browse the repository at this point in the history
Loading