July 15, 2018
What's new since last version:
- WARNING! Breaking change: new Wolfcast namespace. Use
new Wolfcast\BrowserDetection(). - iPad, iPhone and iPod are all under iOS now.
- Added Android Oreo detection.
- Added macOS High Sierra detection.
- Added UC Browser detection.
- Improved regular expressions (even less false positives).
- Removed AOL detection.
- Removed the following Web browsers detection: Amaya, Galeon, NetPositive, OmniWeb, Vivaldi detection (use
addCustomBrowserDetection()). - Removed the following legacy platforms detection: BeOS, OS/2, SunOS (use
addCustomPlatformDetection()).
To re-enable removed Web browsers and platforms in this release you can simply do:
$browser = new Wolfcast\BrowserDetection();
$browser->addCustomBrowserDetection('Amaya', 'amaya');
$browser->addCustomBrowserDetection('Galeon');
$browser->addCustomBrowserDetection('NetPositive');
$browser->addCustomBrowserDetection('OmniWeb');
$browser->addCustomBrowserDetection('Vivaldi');
$browser->addCustomPlatformDetection('BeOS');
$browser->addCustomPlatformDetection('OS/2');
$browser->addCustomPlatformDetection('SunOS');