1. 08 9月, 2020 12 次提交
  2. 07 9月, 2020 12 次提交
  3. 06 9月, 2020 3 次提交
  4. 05 9月, 2020 2 次提交
  5. 04 9月, 2020 2 次提交
  6. 03 9月, 2020 9 次提交
    • J
      Merge pull request #3397 from cg2121/fix-stats-bug · a1434fe4
      Jim 提交于
      UI: Fix rec time left not showing in stats
      a1434fe4
    • J
      Merge pull request #3394 from cg2121/fix-leak · 44bdf60d
      Jim 提交于
      UI: Fix memory leak when dropping files
      44bdf60d
    • J
      Merge pull request #3383 from Programatic/warning_fix · a66a8da0
      Jim 提交于
      UI: Fix compiler warning about needing parenthesis
      a66a8da0
    • J
      Merge pull request #3393 from Programatic/crash_fix · 9af5edc6
      Jim 提交于
      UI: Fix source ref bug causing crash on exit
      9af5edc6
    • J
      UI: Make SetupOutputs virtual instead of ignoring vcam · 7286ee42
      jp9000 提交于
      In 218b936b, the virtual camera was ignored when checking the active
      state, which is kind of a lackluster solution.  Instead, this makes
      SetupOutputs() a virtual function, and calls it before starting the
      virtual camera to be more consistent with the rest of the outputs.
      7286ee42
    • M
      cefc8cc7
    • J
      win-capture: Put window capture update data in a mutex · bdd6562a
      jp9000 提交于
      Because the window capture source updates its data whenever certain
      properties are modified, this would cause a race condition because
      source updates normally happen in the graphics thread.  To solve this
      for the time being, put access to that data within a mutex when updating
      or updating visibility.
      bdd6562a
    • J
      UI: Fix auto-remux not working w/ slash filesnames · b99613b6
      jp9000 提交于
      When the feature was added to allow slashes in recording/replay
      filenames to automatically create directories, auto-remux was not
      accounted for, and all filenames were assumed to be complete.  It used
      fi.completeBaseName() to construct the new name which would only add the
      last part after the last slash as the filename, causing the remuxed file
      to save in the base directory rather than the intended directory.  This
      fixes that by simply using the input string as the output string,
      removing the extension, appending the new extension.
      b99613b6
    • J
      UI: Do not show tray icon if not active · 4869167f
      jp9000 提交于
      Because the virtual camera stops immediately when you call
      obs_output_stop() rather than with a delay like other outputs, it
      exposed a bug where the tray icon would show OBS as active when stopping
      the source, regardless of the fact that it was stopped.  The bug was
      that the expression used to activate the tray icon did not check to make
      sure that the output was actually active, so add that to the expression.
      4869167f