Skip to content

Commit 433b8d4

Browse files
committed
fix a bug, new version 0.1.4
1 parent 8bdf817 commit 433b8d4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

lib/solarized.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const colors = {
1919
'orange': '#cb4b16',
2020
// functions
2121
getUserColor: (user) => {
22-
const options = ['green', 'magneta', 'violet', 'blue', 'cyan', 'yellow', 'orange', 'red'];
22+
const options = ['green', 'magenta', 'violet', 'blue', 'cyan', 'yellow', 'orange', 'red'];
2323
let color = options[colors.getStringSum(user) % options.length];
2424
return colors[color];
2525
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chattt",
3-
"version": "0.1.3",
3+
"version": "0.1.4",
44
"description": "Chattt",
55
"main": "index.js",
66
"bin": {

ui/box.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ let self = {
6868
lineCount = 0;
6969
},
7070
setJoinMessage: (ch, url) => {
71-
box.content = `{center}#${ch} at {${colors.blue}-fg}${url}{/${colors.blue}-fg}{/center}`;
71+
box.content = `{center}#${ch} at {${colors.blue}-fg}${url}{/${colors.blue}-fg} (ctrl-c to exit){/center}`;
7272
self.screen.render();
7373
}
7474
};

0 commit comments

Comments
 (0)