Skip to content

Commit ebdd712

Browse files
committed
Release 0.4.0
1 parent e7c8584 commit ebdd712

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 0.4.0 (2015-06-04)
2+
3+
Enhancements
4+
5+
* Private and password-protected rooms
6+
* Private 1-to-1 chat between XMPP users
7+
* Giphy image search
8+
* @all mentions are highlighted for everyone
9+
* Basic server-side i18n support
10+
111
## 0.3.13 (2015-05-29)
212

313
Fixes

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,19 @@ A self-hosted chat app for small teams built by [Security Compass][seccom].
99
* BYOS (bring your own server)
1010
* Persistent messages
1111
* Multiple rooms
12+
* Private and password-protected rooms
1213
* New message alerts / notifications
13-
* Mentions (hey @you)
14-
* Image embeds
14+
* Mentions (hey @you/@all)
15+
* Image embeds / Giphy search
1516
* Code pasting
1617
* File uploads (Local / [Amazon S3][s3] / [Azure][azure])
1718
* Transcripts / chat history
1819
* XMPP Multi-user chat (MUC)
20+
* 1-to-1 chat between XMPP users
1921
* Local / [Kerberos][kerberos] / [LDAP][ldap] authentication
2022
* [Hubot Adapter][hubot]
2123
* REST-like API
24+
* Basic i18n support
2225
* MIT Licensed
2326

2427

locales/en.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,8 @@
7171
"Revoke token": "Revoke token",
7272
"Your generated token is below. It will not be shown again.": "Your generated token is below. It will not be shown again.",
7373
"Add Room": "Add Room",
74-
"Slug": "Slug"
74+
"Slug": "Slug",
75+
"XMPP/Jabber": "XMPP/Jabber",
76+
"Private?": "Private?",
77+
"Empty for public room": "Empty for public room"
7578
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "lets-chat",
3-
"version": "0.3.13",
3+
"version": "0.4.0",
44
"description": "A chat app for small teams.",
5-
"license" : "MIT",
5+
"license": "MIT",
66
"main": "app.js",
77
"scripts": {
88
"start": "node app.js",
@@ -97,6 +97,6 @@
9797
"grunt": "~0.4.5",
9898
"grunt-bower": "~0.19.0",
9999
"grunt-bower-task": "~0.4.0",
100-
"eslint": "^0.21.2"
100+
"eslint": "^0.22.1"
101101
}
102102
}

0 commit comments

Comments
 (0)