Release Notes - v1.0.2
🚀 Highlights
- Enhanced hotkey handling system with smart normalization
- Improved performance optimizations
✨ New Features
🎮Hotkey System Enhancements
- Intelligent hotkey normalization for consistent behavior
- Case-insensitive modifier handling
- Support for common keyboard shortcut aliases
- Standardized modifier order (Ctrl → Alt → Shift → Win)
###⚡Performance Improvements
- Optimized collection usage for service registration
- Reduced memory allocations in critical paths
- Enhanced string handling efficiency
- Better resource management
🛠️ Technical Improvements
- Added FOSSA license scanning for better compliance tracking
- Enhanced documentation with usage examples
- Fixed service collection registration to use the correct collection type
📝 Documentation
- Added comprehensive examples for hotkey registration
🤝 Contributors
Special thanks to our new contributors:
- @pictos - Improved performance optimizations
For complete details, see the full changelog.
💡 Usage Example
// Register hotkeys with flexible syntax
_hotkeyHandler.RegisterHotkey("Ctrl+Shift+X", ActionX);
_hotkeyHandler.RegisterHotkey("Shift+Ctrl+X", ActionX); // Same as above