You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While ScreenCaptureKit is available on >= 12.3, some APIs like isActive are only available on newer versions.
I'm still on macOS 12.5 and am unable to use SCWindow since it requires checking isActive, which causes a crash since the properly cannot be found.
I assume the solution would be to either raise the minimum macOS version requirement, conditionally expose the property depending on minimum macOS version of the crate this is being used in, or default to false for older macOS versions.
The text was updated successfully, but these errors were encountered:
While ScreenCaptureKit is available on >= 12.3, some APIs like
isActive
are only available on newer versions.I'm still on macOS 12.5 and am unable to use
SCWindow
since it requires checkingisActive
, which causes a crash since the properly cannot be found.I assume the solution would be to either raise the minimum macOS version requirement, conditionally expose the property depending on minimum macOS version of the crate this is being used in, or default to
false
for older macOS versions.The text was updated successfully, but these errors were encountered: