1. 21 1月, 2020 1 次提交
  2. 20 1月, 2020 2 次提交
  3. 19 1月, 2020 3 次提交
  4. 17 1月, 2020 3 次提交
  5. 16 1月, 2020 2 次提交
  6. 15 1月, 2020 7 次提交
  7. 14 1月, 2020 5 次提交
    • C
      UI: Fix studio mode transition bugs · f7d39c12
      Clayton Groeneveld 提交于
      -If the user were in the middle of a transition and clicked
      the cut transition, the transitions would become borked.
      
      -This actually disables the transition widgets, so the
      user doesn't click them. Before, the disabling of the
      widgets didn't work as expected. The code for enabling/disabling
      them was also simplified.
      
      -This loading of studio mode was moved in OBSInit because
      the loading of transitions needs to happen first. This fixes
      a bug when enabling/disabling the t-bar when the program
      is first loaded. The t-bar would be disabled even if a
      cut or stinger transition was not used.
      
      -When the user would click the quick transitions, the
      t-bar would be enabled even when it was not supposed
      to.
      f7d39c12
    • J
      Merge pull request #2319 from jpark37/rgb-dib · 37a7805a
      Jim 提交于
      win-dshow: Fix upside-down RGB DIBs
      37a7805a
    • J
      win-dshow: Fix upside-down RGB DIBs · 9eeef48b
      jpark37 提交于
      Fix regression to RGB DIB orientation according to MSDN.
      9eeef48b
    • K
      UI: Support DnD overlay in linuxbrowser · aeed4a3a
      Kurt Kartaltepe 提交于
      Add support for checking multiple source types in Drag n Drop callback
      to support overlays for linuxbrowser users. Once the "browsersource" is
      available on the platform it will have priority.
      aeed4a3a
    • J
      Merge pull request #2291 from jpark37/cube-lut · 1b3525e6
      Jim 提交于
      Cube LUT file support
      1b3525e6
  8. 13 1月, 2020 12 次提交
  9. 12 1月, 2020 1 次提交
  10. 10 1月, 2020 2 次提交
  11. 09 1月, 2020 1 次提交
  12. 08 1月, 2020 1 次提交
    • F
      obs-outputs: Fix mbedtls use of deprecated functions · 2699bbbd
      Florian Zwoch 提交于
      mbedtls_md5_starts(), mbedtls_md5_update() and mbedtls_md5_finish()
      have been marked deprecated since mbedtls version 2.7 and may go
      away in the future.
      
      These function have been superseded by versions with a return
      value. They are suffixed with "_ret". We do not actually check
      return values.
      
      Also the header "mbedtls/net.h" has been superseded by
      "mbedtls/net_sockets.h".
      2699bbbd