This commit is contained in:
ingvar1995 2016-08-05 16:58:46 +03:00
parent adcc32fc49
commit a7431cadd1
7 changed files with 631 additions and 490 deletions

View File

@ -326,10 +326,10 @@ class MainWindow(QtGui.QMainWindow, Singleton):
self.profile = Profile(tox, self)
def closeEvent(self, event):
self.profile.save_history()
self.profile.close()
s = Settings.get_instance()
if not s['close_to_tray'] or s.closing:
self.profile.save_history()
self.profile.close()
s['x'] = self.geometry().x()
s['y'] = self.geometry().y()
s['width'] = self.width()

View File

@ -365,7 +365,7 @@ class WelcomeScreen(CenteredWidget):
None, QtGui.QApplication.UnicodeUTF8)
elif num == 6:
text = QtGui.QApplication.translate('WelcomeScreen',
'New in Toxygen v0.2.3:<br>TCS compliance<br>Plugins, smileys and stickers import<br>Bug fixes',
'New in Toxygen v0.2.4:<br>File transfers update<br>Autoreconnection<br>Improvements<br>Bug fixes',
None, QtGui.QApplication.UnicodeUTF8)
elif num == 7:
text = QtGui.QApplication.translate('WelcomeScreen',

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -2,7 +2,7 @@ import os
import time
import shutil
program_version = '0.2.3'
program_version = '0.2.4'
def log(data):