diff options
author | irungentoo <irungentoo@gmail.com> | 2013-08-07 18:20:36 -0400 |
---|---|---|
committer | irungentoo <irungentoo@gmail.com> | 2013-08-07 18:20:36 -0400 |
commit | 00ecb05c1b36bc678fc880a12e71ebf407589216 (patch) | |
tree | c75476f7c1b94e24501805c93001382d0a8b0a0d /testing/toxic | |
parent | 4dbcfdf05dfc9127d2356d68399f91366db8b645 (diff) | |
parent | 3622a5c04c27d28ac7c83d629fea77248f8e709e (diff) |
Merge branch 'master' of https://github.com/stqism/ProjectTox-Core into pull-requests
Conflicts:
testing/toxic/prompt.c
Diffstat (limited to 'testing/toxic')
-rw-r--r-- | testing/toxic/chat.c | 1 | ||||
-rw-r--r-- | testing/toxic/main.c | 3 | ||||
-rw-r--r-- | testing/toxic/prompt.c | 10 |
3 files changed, 12 insertions, 2 deletions
diff --git a/testing/toxic/chat.c b/testing/toxic/chat.c index bd213131..b870e9c2 100644 --- a/testing/toxic/chat.c +++ b/testing/toxic/chat.c | |||
@@ -57,7 +57,6 @@ static void chat_onMessage(ToxWindow *self, int num, uint8_t *msg, uint16_t len) | |||
57 | 57 | ||
58 | self->blink = true; | 58 | self->blink = true; |
59 | beep(); | 59 | beep(); |
60 | flash(); | ||
61 | } | 60 | } |
62 | 61 | ||
63 | static void chat_onNickChange(ToxWindow *self, int num, uint8_t *nick, uint16_t len) | 62 | static void chat_onNickChange(ToxWindow *self, int num, uint8_t *nick, uint16_t len) |
diff --git a/testing/toxic/main.c b/testing/toxic/main.c index 8de76244..27e3d858 100644 --- a/testing/toxic/main.c +++ b/testing/toxic/main.c | |||
@@ -22,6 +22,7 @@ extern int add_req(uint8_t *public_key); // XXX | |||
22 | 22 | ||
23 | /* Holds status of chat windows */ | 23 | /* Holds status of chat windows */ |
24 | char WINDOW_STATUS[MAX_WINDOW_SLOTS]; | 24 | char WINDOW_STATUS[MAX_WINDOW_SLOTS]; |
25 | #define TOXICVER "0.1.0" //Will be moved to a -D flag later | ||
25 | 26 | ||
26 | static ToxWindow windows[MAX_WINDOW_SLOTS]; | 27 | static ToxWindow windows[MAX_WINDOW_SLOTS]; |
27 | static ToxWindow* prompt; | 28 | static ToxWindow* prompt; |
@@ -258,7 +259,7 @@ static void draw_bar() | |||
258 | move(LINES - 1, 0); | 259 | move(LINES - 1, 0); |
259 | 260 | ||
260 | attron(COLOR_PAIR(4) | A_BOLD); | 261 | attron(COLOR_PAIR(4) | A_BOLD); |
261 | printw(" TOXIC 1.0 |"); | 262 | printw(" TOXIC " TOXICVER " |"); |
262 | attroff(COLOR_PAIR(4) | A_BOLD); | 263 | attroff(COLOR_PAIR(4) | A_BOLD); |
263 | 264 | ||
264 | int i; | 265 | int i; |
diff --git a/testing/toxic/prompt.c b/testing/toxic/prompt.c index 0bdf69fb..486273d3 100644 --- a/testing/toxic/prompt.c +++ b/testing/toxic/prompt.c | |||
@@ -62,6 +62,16 @@ static void execute(ToxWindow *self, char *u_cmd) | |||
62 | if (!isspace(cmd[cmd_end])) | 62 | if (!isspace(cmd[cmd_end])) |
63 | break; | 63 | break; |
64 | cmd[cmd_end + 1] = '\0'; | 64 | cmd[cmd_end + 1] = '\0'; |
65 | |||
66 | /* What is this supposed to do? | ||
67 | if (cmd[0] == '/') { | ||
68 | wprintw(self->window,"Warning: Run your command without the /, this may not work\n"); | ||
69 | int i; | ||
70 | for (i = 1; i < strlen(cmd); i++) { //This doesn't work when it doesn't end with a space and another word | ||
71 | cmd[i - 1] = cmd[i]; //Still working on why | ||
72 | } | ||
73 | } | ||
74 | */ | ||
65 | 75 | ||
66 | if (!strcmp(cmd, "quit") || !strcmp(cmd, "exit") || !strcmp(cmd, "q")) { | 76 | if (!strcmp(cmd, "quit") || !strcmp(cmd, "exit") || !strcmp(cmd, "q")) { |
67 | endwin(); | 77 | endwin(); |