v0.2.4
This commit is contained in:
parent
adcc32fc49
commit
a7431cadd1
7 changed files with 631 additions and 490 deletions
|
@ -326,10 +326,10 @@ class MainWindow(QtGui.QMainWindow, Singleton):
|
||||||
self.profile = Profile(tox, self)
|
self.profile = Profile(tox, self)
|
||||||
|
|
||||||
def closeEvent(self, event):
|
def closeEvent(self, event):
|
||||||
self.profile.save_history()
|
|
||||||
self.profile.close()
|
|
||||||
s = Settings.get_instance()
|
s = Settings.get_instance()
|
||||||
if not s['close_to_tray'] or s.closing:
|
if not s['close_to_tray'] or s.closing:
|
||||||
|
self.profile.save_history()
|
||||||
|
self.profile.close()
|
||||||
s['x'] = self.geometry().x()
|
s['x'] = self.geometry().x()
|
||||||
s['y'] = self.geometry().y()
|
s['y'] = self.geometry().y()
|
||||||
s['width'] = self.width()
|
s['width'] = self.width()
|
||||||
|
|
|
@ -365,7 +365,7 @@ class WelcomeScreen(CenteredWidget):
|
||||||
None, QtGui.QApplication.UnicodeUTF8)
|
None, QtGui.QApplication.UnicodeUTF8)
|
||||||
elif num == 6:
|
elif num == 6:
|
||||||
text = QtGui.QApplication.translate('WelcomeScreen',
|
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)
|
None, QtGui.QApplication.UnicodeUTF8)
|
||||||
elif num == 7:
|
elif num == 7:
|
||||||
text = QtGui.QApplication.translate('WelcomeScreen',
|
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
|
@ -2,7 +2,7 @@ import os
|
||||||
import time
|
import time
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
program_version = '0.2.3'
|
program_version = '0.2.4'
|
||||||
|
|
||||||
|
|
||||||
def log(data):
|
def log(data):
|
||||||
|
|
Loading…
Reference in a new issue