Update versioning manually

This commit is contained in:
Faisalman 2012-07-30 07:37:20 +07:00
parent a243a6a7c3
commit d3668b9c2f
3 changed files with 7 additions and 7 deletions

View File

@ -1,11 +1,11 @@
{ {
"title": "UA-Parser.js", "title": "UA-Parser.js",
"name": "ua-parser-js", "name": "ua-parser-js",
"version": "0.3.0", "version": "0.3.1",
"author": "Faisal Salman <fyzlman@gmail.com> (http://faisalman.com)", "author": "Faisal Salman <fyzlman@gmail.com> (http://faisalman.com)",
"description": "Lightweight JavaScript-based user-agent parser", "description": "Lightweight JavaScript-based user-agent parser",
"keywords": [ "keywords": [
"user-agent", "user agent",
"parser", "parser",
"browser", "browser",
"engine", "engine",

View File

@ -1,11 +1,11 @@
# UA-Parser.js # UA-Parser.js
JavaScript-based user-agent parser Lightweight JavaScript-based user-agent parser
* Author : Faisalman <<fyzlman@gmail.com>> * Author : Faisalman <<fyzlman@gmail.com>>
* Home : http://faisalman.github.com/ua-parser-js * Home : http://faisalman.github.com/ua-parser-js
* Source : https://github.com/faisalman/ua-parser-js * Source : https://github.com/faisalman/ua-parser-js
* License : GPLv2 & MIT * License : GPLv2 & MIT
## Features ## Features
@ -63,7 +63,7 @@ Get detailed type and version of web browser, layout engine, operating system, a
console.log(UAParser.result.os); // {name: "Ubuntu", version: "11.10"} console.log(UAParser.result.os); // {name: "Ubuntu", version: "11.10"}
// let's take another test please // let's take another test please
UAParser.setUA("Mozilla/5.0 (compatible; Konqueror/4.1; OpenBSD) KHTML/4.1.4 (like Gecko)").getOS().name; // prints "OpenBSD" console.log(UAParser.setUA("Mozilla/5.0 (compatible; Konqueror/4.1; OpenBSD) KHTML/4.1.4 (like Gecko)").getOS().name); // "OpenBSD"
</script> </script>
``` ```

View File

@ -1,4 +1,4 @@
// UA-Parser.js v0.3.0 // UA-Parser.js v0.3.1
// Lightweight JavaScript-based user-agent parser // Lightweight JavaScript-based user-agent parser
// https://github.com/faisalman/ua-parser-js // https://github.com/faisalman/ua-parser-js
// //