All notable changes to this fork of ModMove.
- Optimized
windowInsideFrame()to use cached values instead of Accessibility API queries- Eliminates 120-240 expensive API calls per second during window moves
- Commit: e1b663a
- Replaced
Date()withCACurrentMediaTime()for mouse speed tracking- Eliminates 60-120 object allocations per second
- More accurate timing with monotonic clock
- Commit: f3b3d85
- Improved state cleanup between move/resize operations
- Properly resets tracking variables (prevMousePosition, mouseSpeed, prevTime)
- Ensures clean transitions between operations
- Added
build.shscript for Release builds - Added
deploy.shscript for easy installation to /Applications - Fixed build issues with missing ApplicationServices import
- Windows now resize from the corner closest to the mouse cursor
- Makes resize behavior more intuitive and natural
- Commit: 168b8a0
- Changed from frame-to-frame delta to absolute position tracking
- Tracks initial mouse position, window position, and window size
- Eliminates cumulative drift and jitter during moves/resizes
- Commits: 107c349, 37e0874
- Windows stay within visible screen bounds during slow movements
- Respects macOS menu bar and dock (uses NSScreen.visibleFrame)
- Added to both move and resize operations
- Commits: 88ea9ab, 8c20c56
- Mouse speed tracking using exponential moving average
- Fast movements (>1000 px/sec) bypass boundary constraints
- Allows "throwing" windows outside screen bounds when needed
- Slow movements remain constrained for precision
- Commit: d5e95ee
Based on @keith's ModMove - a lightweight macOS utility implementing the window manipulation feature from HyperDock.