summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
Diffstat (limited to 'testing')
-rw-r--r--testing/toxic/chat.c1
-rw-r--r--testing/toxic/main.c3
-rw-r--r--testing/toxic/prompt.c10
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
63static void chat_onNickChange(ToxWindow *self, int num, uint8_t *nick, uint16_t len) 62static 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 */
24char WINDOW_STATUS[MAX_WINDOW_SLOTS]; 24char WINDOW_STATUS[MAX_WINDOW_SLOTS];
25#define TOXICVER "0.1.0" //Will be moved to a -D flag later
25 26
26static ToxWindow windows[MAX_WINDOW_SLOTS]; 27static ToxWindow windows[MAX_WINDOW_SLOTS];
27static ToxWindow* prompt; 28static 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();