1. 06 9月, 2018 4 次提交
  2. 05 9月, 2018 1 次提交
  3. 04 9月, 2018 5 次提交
  4. 03 9月, 2018 2 次提交
  5. 02 9月, 2018 9 次提交
  6. 01 9月, 2018 3 次提交
    • D
      UI: Add retina support and updated icons · d70352a6
      DungFu 提交于
      OBS Studio currently does not support retina rendering for any of the
      images in the app. This adds support for retina pixmap rendering as
      well as adding higher resolution versions of each icon that was not
      a high enough resolution to support 2x. The icons work when switching
      themes and will only render the 2x versions when the device pixel
      ratio is greater than or equal to 2.
      
      I also added credits to the readme for images that were already being
      used that require credit to the author. If the OBS community has
      paid for these images already, I can remove the credits from the
      readme. The credit is for the invisible, visible, and gear icons.
      d70352a6
    • S
      UI: Add rename scene/source shortcut · 6c17c10e
      Shaolin 提交于
      This creates a hidden QAction in sceneDocks and sourceDocks so we can
      assign a shortcut to perform the renaming action.
      6c17c10e
    • S
      libobs-opengl: Store FBOs per texture instead of per device · acd44b52
      Shaolin 提交于
      The previous model stored a new FBO per texture width/height/format on
      a array in the device struct. This allocated memory was only released
      on gs_device_destroy (obs exit).
      
      The new approach stores a FBO on gs_texture and the its info is
      destroyed once the texture is deleted.
      acd44b52
  7. 31 8月, 2018 1 次提交
    • J
      UI/updater: Fix update bug for 32bit/64bit installs · 11b84a5d
      jp9000 提交于
      It would only check whether it should download a package if the 32bit
      version existed.  This would cause it to not download all files
      correctly to update 64bit installs (post 22.0.1).
      11b84a5d
  8. 30 8月, 2018 11 次提交
  9. 29 8月, 2018 4 次提交
    • S
      UI: Use AlwaysOnTop option for windowed projectors · 1ccbc3c6
      Shaolin 提交于
      1ccbc3c6
    • J
      Merge pull request #1456 from admshao/multiview-click-crash-fix · 37f86139
      Jim 提交于
      UI: Fix a rare multiview crash when clicked
      37f86139
    • S
      UI: Fix a rare multiview crash when clicked · 42643614
      Shaolin 提交于
      This was triggered by openning a fullscreen projector and trying to alt
      tab. The projector was still on top but the first click on a KDE system
      was returning a NULL activeWindow.
      42643614
    • J
      UI: Fix macOS bug (scrollbar blocking lock icons) · 4e97b1bb
      jp9000 提交于
      Normally on macOS, scrollbars are supposed to appear/disappear as you
      scroll, but they would be on top of the content you're scrolling.
      However, Qt has a bug where if you apply a custom theme to scroll bars,
      they no longer disappear.  This causes things under the scrollbar (such
      as the lock icons in the sources list) to disappear under the scrollbar,
      because macOS normally expects those scrollbars to face out.  This fixes
      that issue by adding a space to the end of the sources list box items to
      allow space for the scrollbar.
      4e97b1bb