forked from metajack/strophejs-plugins
-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package.json for npm support. Set tag date.
- Loading branch information
Showing
3 changed files
with
70 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,28 @@ | ||
# Changelog | ||
|
||
## 0.0.5 (25 August 2015) | ||
|
||
- Fix missing var statements causing error on strophe.roster.js | ||
- Add missing 'hidden' type on FORM_TYPE field | ||
- Wrap Strophe.RSM and Strophe.disco for AMD | ||
- Avoid adding duplicate handlers in XmppRoom objects when join is called | ||
- New bookmarks plugin | ||
- New plugins: sensordata and control | ||
- Allow passing authcid param introduced by [strophe/strophejs#113](https://github.com/strophe/strophejs/pull/113) | ||
- Add event handler management for pubsub plugin | ||
|
||
## 0.0.4 (15 October 2014) | ||
|
||
* Merge pull request #40 from allan-simon/more_precise_control_on_roster_update_events | ||
* Merge pull request #38 from pelish8/master | ||
* Merge pull request #31 from arielscarpinelli/archive-preferences | ||
* mug: Buefix, don't deregister handler when receiving presence stanza containing an error. | ||
* muc: Added ability to invite multiple users. | ||
* muc: New method createConfiguredRoom | ||
* muc: IE9 fixes. | ||
* Create strophe.mam.v0.3.js | ||
- Merge pull request #40 from allan-simon/more_precise_control_on_roster_update_events | ||
- Merge pull request #38 from pelish8/master | ||
- Merge pull request #31 from arielscarpinelli/archive-preferences | ||
- mug: Buefix, don't deregister handler when receiving presence stanza containing an error. | ||
- muc: Added ability to invite multiple users. | ||
- muc: New method createConfiguredRoom | ||
- muc: IE9 fixes. | ||
- Create strophe.mam.v0.3.js | ||
|
||
## 0.0.3 (23 Auguest 2014) | ||
|
||
* Merge pull request #35 from jaygeeseman/fuck_ie8 | ||
* Fix IE9 errors in Strophe.muc | ||
- Merge pull request #35 from jaygeeseman/fuck_ie8 | ||
- Fix IE9 errors in Strophe.muc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"name": "strophejs-plugins", | ||
"description": "Strophe.js community plugins", | ||
"version": "0.0.5", | ||
"homepage": "https://github.com/strophe/strophejs-plugins", | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/strophe/strophejs-plugins.git" | ||
}, | ||
"keywords": [ | ||
"xmpp", | ||
"message", | ||
"bosh", | ||
"websocket", | ||
"browser", | ||
"plugins" | ||
], | ||
"files": [ | ||
"strophe.js", | ||
"CHANGES.md", | ||
"README.md" | ||
], | ||
"author": "The Strophe.js community", | ||
"dependencies": { | ||
}, | ||
"engines": { | ||
"browser": "*" | ||
}, | ||
"devDependencies": { | ||
"bower": "latest", | ||
"grunt": "~0.4", | ||
"grunt-cli": "~0.1.13", | ||
"grunt-contrib-clean": "~0.5.0", | ||
"grunt-contrib-concat": "~0.3.0", | ||
"grunt-contrib-connect": "^0.9.0", | ||
"grunt-contrib-copy": "~0.5.0", | ||
"grunt-contrib-jshint": "~0.10.0", | ||
"grunt-contrib-qunit": "^0.5.2", | ||
"grunt-contrib-requirejs": "^0.4.4", | ||
"grunt-contrib-uglify": "~0.2.7", | ||
"grunt-contrib-watch": "~0.5.3", | ||
"grunt-mkdir": "~0.1.1", | ||
"grunt-natural-docs": "~0.1.1", | ||
"grunt-shell": "~0.6.1", | ||
"requirejs": "~2.1.15" | ||
} | ||
} |