Plugin Directory

Changeset 499682


Ignore:
Timestamp:
02/03/2012 10:14:33 AM (14 years ago)
Author:
bpedrassani
Message:

Version 2.3 - addded Win 8 compatibility

Location:
browser-sniff/trunk
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • browser-sniff/trunk/browsersniff.php

    r398091 r499682  
    33 * @package Browser-Sniff
    44 * @author Priyadi Iman Nurcahyo | Bruno Andrade Pedrassani
    5  * @version 2.2
     5 * @version 2.3
    66 */
    77/*
     
    99Plugin URI: http://brunopedrassani.com/wordpress/plugins/browser-sniff
    1010Description: Detects web browser type and operating system to show in the comment loop
    11 Version: 2.2
     11Version: 2.3
    1212Author: Priyadi Iman Nurcahyo | Bruno Andrade Pedrassani
    1313Author URI: http://brunopedrassani.com
     
    705705        $os_code = "win_7";
    706706        $os_ver = "7";
     707    } elseif (preg_match('/Windows NT 6.2/i', $ua)) {
     708        $os_name = "Windows";
     709        $os_code = "win_8";
     710        $os_ver = "8";
    707711    } elseif (preg_match('/Windows NT 5.1/i', $ua)) {
    708712        $os_name = "Windows";
  • browser-sniff/trunk/readme.txt

    r498441 r499682  
    55Requires at least: 1.5.0
    66Tested up to: 3.3.1
    7 Stable tag: 2.2
     7Stable tag: 2.3
    88
    99Detects web browser type and operating system to show in the comment loop
     
    123123* Changed Mac OS X detection to show version
    124124
     125= 2.3 =
     126* Added Windows 8 detection
     127* Updated the compatibility list
     128
    125129== Upgrade Notice ==
     130
     131= 2.3 =
     132Added Windows 8 detection and updated compatibility list
    126133
    127134= 2.2 =
Note: See TracChangeset for help on using the changeset viewer.