1. 14 10月, 2020 3 次提交
  2. 13 10月, 2020 2 次提交
    • J
      UI: Fix replay buffer frontend event not triggering · 3d516026
      jp9000 提交于
      The frontend API event OBS_FRONTEND_EVENT_REPLAY_BUFFER_SAVED was not
      being triggered when hotkeys were used because it was only set to
      trigger when the replay buffer button was clicked, not when a hotkey was
      used. This fixes it so that the frontend event sends a signal to the
      frontend so that hotkeys will actually work.
      3d516026
    • J
      UI/obs-frontend-api: Fix replay buffer save event ABI break · a38cd03e
      jp9000 提交于
      New events must go at the bottom of the list, not at the top, otherwise
      ABI will be broken.
      a38cd03e
  3. 11 10月, 2020 4 次提交
  4. 10 10月, 2020 3 次提交
  5. 06 10月, 2020 6 次提交
  6. 05 10月, 2020 6 次提交
  7. 04 10月, 2020 5 次提交
  8. 03 10月, 2020 4 次提交
    • J
      UI: Greatly improve main window repaint performance · f4f2d383
      jp9000 提交于
      The VolumeMeter widgets were apparently being drawn as transparent
      widgets, which meant that it was necessary to redraw everything under
      the widgets in order to properly draw the widgets, so the entire mixer
      section of the window was being redrawn every time the meters updated.
      This caused a significant perf hit when the only thing wanted/desired
      was just to update the meters. This was more noticeable after changing
      the audio meter update rate to 60hz from 30hz.
      
      The fix is to simply mark them as opaque widgets, and paint the
      background ourselves rather than rely on what's under the window. CPU
      perf for painting the main window has been vastly improved because of
      this; CPU usage of Qt in the main window is now reduced by at least half
      of what it was, if not more.
      f4f2d383
    • W
      win-capture: Fix mask handling on some color cursors · 884c43f8
      windwakr 提交于
      884c43f8
    • E
      CI: Fix swig dependency on FreeBSD · da84d82a
      Ed Maste 提交于
      FreeBSD removed the swig30 package and replaced it with just swig,
      currently version 4.0:
      https://bugs.freebsd.org/246613
      da84d82a
    • D
      cmake: Fix finding libfdk header path · f96b6dfe
      Daniel Porter 提交于
      A generally accepted path for DepsPath or LibfdkPath is the parent
      directory that includes the 'bin' and 'include' directories. This fix
      ensures FindLibfdk.cmake acts like other cmake helper scripts.
      
      Closes obsproject/obs-studio#3474
      f96b6dfe
  9. 02 10月, 2020 7 次提交