node-mac-recorder 2.13.1 → 2.13.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-mac-recorder",
3
- "version": "2.13.1",
3
+ "version": "2.13.2",
4
4
  "description": "Native macOS screen recording package for Node.js applications",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -168,9 +168,9 @@ Napi::Value StartRecording(const Napi::CallbackInfo& info) {
168
168
  }
169
169
 
170
170
  @try {
171
- // Try ScreenCaptureKit first (macOS 12.3+) with Electron-safe implementation
172
- NSLog(@"🔍 System Version Check - macOS availability for ScreenCaptureKit");
173
- if (@available(macOS 12.3, *)) {
171
+ // Use stable AVFoundation approach - ScreenCaptureKit disabled until Electron crash resolved
172
+ NSLog(@"🔍 Using stable AVFoundation approach (ScreenCaptureKit disabled for Electron compatibility)");
173
+ if (false) { // Disable ScreenCaptureKit completely for now
174
174
  NSLog(@"✅ macOS 12.3+ detected - ScreenCaptureKit should be available");
175
175
  if ([ScreenCaptureKitRecorder isScreenCaptureKitAvailable]) {
176
176
  NSLog(@"✅ ScreenCaptureKit availability check passed");