1. 19 7月, 2014 3 次提交
  2. 18 7月, 2014 2 次提交
  3. 17 7月, 2014 6 次提交
    • J
      Fix update checck bug · 5da8d145
      jp9000 提交于
      Fix bug where updates for windows would check for mac updates and vise
      versa.
      
      (I am ashamed)
      5da8d145
    • J
      Update to 0.4.1 · a5a7ba46
      jp9000 提交于
      a5a7ba46
    • J
      No need to initialize map value to 0 (bug fix) · 18026c36
      jp9000 提交于
      There's no need to initialize the map value to 0.  What was happening is
      that obs_scene_add was adding a ref to a non-existent value, which
      simply created it and added 1, which is perfectly fine.  Then,
      obs_add_source would set the ref to 0, overwriting the existing value.
      
      So this meant that if you didn't call them in the right order, it
      wouldn't work properly, and would break, which was pretty stupid.
      
      Turns out that if you access a map value that doesn't exist, it'll
      create one with the default constructor of that type.  In this case, int
      will initialize to 0, which was exactly what we wanted in the first
      place, and defeats the purpose of even needing to initialize the value
      to 0.  So, there's no need to manually set it to 0 in
      OBSBasic::SourceAdded, or worry about the order in which the functions
      are called.
      
      Just goes to show you have to be careful with reference counting.
      18026c36
    • J
      Reset blend state for image source · a01b59fb
      jp9000 提交于
      This is more of a temporary fix for the time being, it needs to handle
      blend state changes better, perhaps via push/pop of state changes
      a01b59fb
    • P
      bd2b4c91
    • P
      mac-avcapture: Remove debug code · 2920281e
      Palana 提交于
      2920281e
  4. 16 7月, 2014 4 次提交
  5. 15 7月, 2014 11 次提交
  6. 14 7月, 2014 14 次提交