node-mac-recorder 2.10.34 → 2.10.35

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.10.34",
3
+ "version": "2.10.35",
4
4
  "description": "Native macOS screen recording package for Node.js applications",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -389,8 +389,9 @@ void updateScreenOverlays();
389
389
  self.wantsLayer = YES;
390
390
  // Semi-transparent black background for screen overlay (same as window overlay)
391
391
  self.layer.backgroundColor = [[NSColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.3] CGColor];
392
- // Ensure no borders or decorations
392
+ // Purple border for screen selection (same as window highlight)
393
393
  self.layer.borderWidth = 1.0;
394
+ self.layer.borderColor = [[NSColor colorWithRed:0.27 green:0.0 blue:0.77 alpha:0.9] CGColor];
394
395
  self.layer.cornerRadius = 8.0;
395
396
  self.layer.masksToBounds = YES;
396
397
  self.layer.shadowOpacity = 0.0;