Skip to content

Commit

Permalink
Merge pull request #10 from studentIvan/dev
Browse files Browse the repository at this point in the history
######New in 1.2.3:
* UMD compatible (thanks to RasCarlito <cogren@eleven-labs.com>)
* Microsoft Edge attested (thanks to toby11)
  • Loading branch information
studentIvan committed Feb 18, 2016
2 parents 9b9dd9e + 937a848 commit 3c37644
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 17 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DuelJS v1.2.2
DuelJS v1.2.3
======
[![Documentation Status](https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat-square)](http://dueljs.readthedocs.org/) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg?style=flat-square)](https://raw.githubusercontent.com/studentIvan/dueljs/master/LICENSE) [![Bower](https://img.shields.io/bower/v/duel.svg?style=flat-square)](http://bower.io/search/?q=duel) [![](https://img.shields.io/github/issues-raw/studentIvan/dueljs.svg?style=flat-square)](https://github.com/studentIvan/dueljs/issues/) [![GitHub stars](https://img.shields.io/github/stars/studentIvan/dueljs.svg?style=flat-square)](https://github.com/studentIvan/dueljs/stargazers)

Expand All @@ -8,6 +8,10 @@ See a brief look on [the homepage](http://dueljs.studentivan.ru)

Documentation available on http://dueljs.readthedocs.org/

######New in 1.2.3:
* UMD compatible (thanks to RasCarlito <cogren@eleven-labs.com>)
* Microsoft Edge attested (thanks to toby11)

######New in 1.2.2:
* Fixed some additional bugs (extra-release)

Expand Down Expand Up @@ -40,6 +44,7 @@ duel.useStorageEvent = false; // auto false in IE
4. Internet Explorer 11 (without storage event)
5. Safari 534.57.2 (with storage event)
6. Android 4.3 LT29i default browser (with storage event)
7. Microsoft Edge 25.10586.0.0 (with storage event)

Internet Explorer does incorrect. So it using force `useStorageEvent = false` by default.

Expand Down
12 changes: 8 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{
"name": "duel",
"version": "1.2.2",
"version": "1.2.3",
"description": "DuelJS - JavaScript HTML5 Master/Slave Browser Tabs Helper",
"main": "public/lib/duel.js",
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.1.0",
"mocha-phantomjs": "^3.5.3",
"phantomjs": "^1.9.13"
"phantomjs": "^1.9.13",
"http-server": "*",
"uglifyjs": "*"
},
"scripts": {
"pretest": "npm install && mocha-phantomjs test/mocha.test.html",
"test": "phantomjs test/phantom.script.js"
"pretest": "npm install && mocha-phantomjs test/mocha.test.html && mocha-phantomjs test/mocha.min.test.html",
"test": "phantomjs test/phantom.script.js",
"start": "npm install && node_modules/.bin/http-server",
"min": "npm install && node_modules/.bin/uglifyjs --compress --bare-returns --keep-fnames --source-map=public/lib/duel.min.js.map --source-map-url=duel.min.js.map --output=public/lib/duel.min.js --mangle -- public/lib/duel.js"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion public/lib/duel.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* DuelJS JavaScript Library v1.2.2
* DuelJS JavaScript Library v1.2.3
* https://github.com/studentIvan/dueljs
* http://dueljs.readthedocs.org/en/latest/
*
Expand Down
13 changes: 2 additions & 11 deletions public/lib/duel.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions public/lib/duel.min.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3c37644

Please sign in to comment.