diff --git a/toxygen/mainscreen_widgets.py b/toxygen/mainscreen_widgets.py
index 9ff30e5..50cc0a1 100644
--- a/toxygen/mainscreen_widgets.py
+++ b/toxygen/mainscreen_widgets.py
@@ -363,11 +363,7 @@ class WelcomeScreen(CenteredWidget):
text = QtGui.QApplication.translate('WelcomeScreen',
'Since v0.1.3 Toxygen supports plugins. Read more',
None, QtGui.QApplication.UnicodeUTF8)
- elif num == 6:
- text = QtGui.QApplication.translate('WelcomeScreen',
- 'New in Toxygen v0.2.6:
Updater
Better contact sorting
Plugins improvements',
- None, QtGui.QApplication.UnicodeUTF8)
- elif num == 7:
+ elif num in (6, 7):
text = QtGui.QApplication.translate('WelcomeScreen',
'Toxygen supports faux offline messages and file transfers. Send message or file to offline friend and he will get it later.',
None, QtGui.QApplication.UnicodeUTF8)
diff --git a/toxygen/util.py b/toxygen/util.py
index beeb3a9..2c9483d 100644
--- a/toxygen/util.py
+++ b/toxygen/util.py
@@ -4,7 +4,7 @@ import shutil
import sys
import re
-program_version = '0.2.7'
+program_version = '0.2.8'
def log(data):