Skip to content

Commit 2becf73

Browse files
committed
ready for 0.4.0 release
1 parent b7dc227 commit 2becf73

File tree

7 files changed

+14
-11
lines changed

7 files changed

+14
-11
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,5 +63,8 @@ If you do not want to connect to the default room component (see options.default
6363
var connector = conn.join("[email protected]")
6464
```
6565

66+
## License
67+
Yjs is licensed under the [MIT License](./LICENSE.txt).
6668

69+
6770

build/browser/y-xmpp-polymer.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/browser/y-xmpp.js

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/node/y-xmpp.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ XMPPConnector = (function() {
166166
if (sender === this.user_id) {
167167

168168
} else if (stanza.getAttribute("type") === "unavailable") {
169-
return this.userLeft(sender, sender_role);
169+
return this.userLeft(sender);
170170
} else {
171171
sender_role = stanza.getChild("role", "http://y.ninja/role").getText();
172172
return this.userJoined(sender, sender_role);

lib/y-xmpp.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class XMPPConnector
140140
# nop
141141
else if stanza.getAttribute("type") is "unavailable"
142142
# a user left the room
143-
@userLeft sender, sender_role
143+
@userLeft sender
144144
else
145145
sender_role = stanza
146146
.getChild("role","http://y.ninja/role")

y-xmpp-polymer.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

y-xmpp.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)