Skip to content

Commit 8660047

Browse files
committed
fix small bug, update readme, bump version
1 parent 9476db0 commit 8660047

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Toxic [![Build Status](https://travis-ci.org/Tox/toxic.png?branch=master)](https://travis-ci.org/Tox/toxic)
22
Toxic is a [Tox](https://tox.im)-based instant messenging client which formerly resided in the [Tox core repository](https://github.com/irungentoo/toxcore), and is now available as a standalone application.
33

4-
![Toxic Screenshot](https://i.imgur.com/YOZ5NIB.png "Main Screen").
4+
![Toxic Screenshot](https://i.imgur.com/ueK1Tdj.png "Home Screen").
55

66
## Installation
77

@@ -13,11 +13,11 @@ Toxic is a [Tox](https://tox.im)-based instant messenging client which formerly
1313

1414
##### Audio
1515
* libtoxav (libtoxcore compiled with audio support)
16-
* [openal](http://openal.org)
16+
* [openal](http://openal.org) (for Debian based systems, 'libopenal-dev')
1717

1818
##### Sound notifications
1919
* [openal](http://openal.org)
20-
* [openalut](http://openal.org)
20+
* [openalut](http://openal.org) (for Debian based systems, 'libalut-dev')
2121

2222
### Compiling
2323
1. `cd build/`

build/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
TOXIC_VERSION = 0.4.5
1+
TOXIC_VERSION = 0.4.6
22
REV = $(shell git rev-list HEAD --count)
33
VERSION = $(TOXIC_VERSION)_r$(REV)
44

src/prompt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ void prompt_init_statusbar(ToxWindow *self, Tox *m)
382382
strcpy(ver, TOXICVER);
383383
const char *toxic_ver = strtok(ver, "_");
384384

385-
if ( (!strcmp("Online", statusmsg) || !strncmp("Toxing on Toxic", statusmsg, 15)) && toxic_ver != NULL) {
385+
if ( (!statusmsg[0] || !strncmp("Toxing on Toxic", statusmsg, 15)) && toxic_ver != NULL) {
386386
snprintf(statusmsg, MAX_STR_SIZE, "Toxing on Toxic v.%s", toxic_ver);
387387
s_len = strlen(statusmsg);
388388
statusmsg[s_len] = '\0';

0 commit comments

Comments
 (0)