1. 16 12月, 2019 1 次提交
    • V
      UI: Ensure OBS launches when theme is missing · 798556c0
      VodBox 提交于
      This change makes it so OBS will still launch even if a theme is
      missing. This change also deprecates the "CurrentTheme" config key, and
      is replaced by "CurrentTheme2".
      
      This is because a previous change to make sure OBS fell back to the
      System theme in case of a missing theme had been accidentally removed.
      Changing the key prevents a new version of OBS setting a theme that
      doesn't exist in an older version, which would prevent that version from
      launching.
      798556c0
  2. 15 12月, 2019 3 次提交
  3. 14 12月, 2019 8 次提交
  4. 13 12月, 2019 3 次提交
  5. 12 12月, 2019 4 次提交
  6. 11 12月, 2019 7 次提交
  7. 10 12月, 2019 2 次提交
  8. 09 12月, 2019 4 次提交
  9. 08 12月, 2019 2 次提交
  10. 07 12月, 2019 3 次提交
  11. 06 12月, 2019 1 次提交
  12. 05 12月, 2019 2 次提交
    • J
      UI: Delete cookies before connecting account · ccb7d897
      jp9000 提交于
      Fixes an issue where when trying to connect a Twitch account, and the
      Twitch two-factor authentication check fails, the user will still
      technically be logged in because the cookies will still be present, thus
      when they try to click the "Connect" button again, it will skip the
      login part (because they're already technically logged in), and just
      give them the two-factor failure message without letting them enter in
      their login information again.
      ccb7d897
    • J
      UI: Fix bug in untested/unused function code path · cfddf111
      jp9000 提交于
      In the current user interface code, OBSBasic::AddSceneCollection has a
      qname parameter to allow explicitly specifying a name, but that code
      path is unused in the UI code itself, and qname is typically empty.  If
      qname is not empty, it does not properly generate a file name associated
      with that specified scene collection name.  This fixes that issue.
      cfddf111