mirror of
https://github.com/arsenetar/dupeguru.git
synced 2026-01-25 08:01:39 +00:00
Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b8980b4667 | ||
|
|
e0adec7b2b | ||
|
|
eb8b9d663f | ||
|
|
fa4b0cf9ec |
1
.hgtags
1
.hgtags
@@ -42,3 +42,4 @@ ca93352ce35184853ad9fcb881935a43a8b1e249 me5.10.3
|
||||
0056293b0dade8b8230f68c1fe6f0c2d1e0b74d8 se2.12.3
|
||||
8d12cab3b12b723e3a86d02cf8002731a0f73f95 se3.0.0
|
||||
778876a8a9787658aa6adf6944b53aebcb7faeea se3.0.1
|
||||
f1d40b556c01f32c58f9ef9f9acac5b78e01ba7a pe2.0.0
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
"56.title" = "Référence";
|
||||
|
||||
/* Class = "NSMenuItem"; title = "Excluded"; ObjectID = "57"; */
|
||||
"57.title" = "Exclus";
|
||||
"57.title" = "Exclu";
|
||||
|
||||
/* Class = "NSTextFieldCell"; title = "Select folders to scan and press \"Scan\"."; ObjectID = "71"; */
|
||||
"71.title" = "Sélectionnez les dossiers à scanner et cliquez sur Scan.";
|
||||
|
||||
@@ -191,7 +191,7 @@
|
||||
</object>
|
||||
<object class="NSMenuItem" id="142495353">
|
||||
<reference key="NSMenu" ref="104112446"/>
|
||||
<string key="NSTitle">Exclus</string>
|
||||
<string key="NSTitle">Exclu</string>
|
||||
<string key="NSKeyEquiv"/>
|
||||
<int key="NSMnemonicLoc">2147483647</int>
|
||||
<string key="NSAction">_popUpItemAction:</string>
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
__version__ = '5.10.4'
|
||||
__version__ = '6.0.0'
|
||||
__appname__ = 'dupeGuru Music Edition'
|
||||
@@ -1,3 +1,13 @@
|
||||
=== 6.0.0 (2011-02-01)
|
||||
|
||||
* Re-designed the UI. (#129)
|
||||
* Internationalized dupeGuru and localized it to french. (#32)
|
||||
* Changed the format of the help file. (#130)
|
||||
* Fixed crashes when reading malformed songs. (#127 #131)
|
||||
* Removed focus from the cancel button in the progress dialog to avoid accidental cancellations. [Mac OS X] (#135)
|
||||
* Folders added through drag and drop are added to the recent folders list. (#136)
|
||||
* Added a debugging mode. (#132)
|
||||
|
||||
=== 5.10.4 (2010-12-30)
|
||||
|
||||
* Fixed bug causing results to be corrupted after a scan cancellation. (#120)
|
||||
|
||||
@@ -13,6 +13,7 @@ from PyQt4.QtGui import (QWidget, QFileDialog, QHeaderView, QVBoxLayout, QHBoxLa
|
||||
|
||||
from hscommon.trans import tr, trmsg
|
||||
from qtlib.recent import Recent
|
||||
from qtlib.util import moveToScreenCenter
|
||||
from core.app import NoScannableFileError
|
||||
|
||||
from . import platform
|
||||
@@ -144,6 +145,8 @@ class DirectoriesDialog(QMainWindow):
|
||||
|
||||
if self.app.prefs.directoriesWindowRect is not None:
|
||||
self.setGeometry(self.app.prefs.directoriesWindowRect)
|
||||
else:
|
||||
moveToScreenCenter(self)
|
||||
|
||||
def _updateAddButton(self):
|
||||
if self.recentFolders.isEmpty():
|
||||
|
||||
@@ -15,6 +15,7 @@ from PyQt4.QtGui import (QMainWindow, QMenu, QLabel, QHeaderView, QMessageBox, Q
|
||||
|
||||
from hscommon.trans import tr, trmsg
|
||||
from hscommon.util import nonone
|
||||
from qtlib.util import moveToScreenCenter
|
||||
|
||||
from .results_model import ResultsModel, ResultsView
|
||||
from .stats_label import StatsLabel
|
||||
@@ -192,8 +193,11 @@ class ResultWindow(QMainWindow):
|
||||
|
||||
if self.app.prefs.resultWindowIsMaximized:
|
||||
self.setWindowState(self.windowState() | Qt.WindowMaximized)
|
||||
if self.app.prefs.resultWindowRect is not None and not self.app.prefs.resultWindowIsMaximized:
|
||||
self.setGeometry(self.app.prefs.resultWindowRect)
|
||||
else:
|
||||
if self.app.prefs.resultWindowRect is not None:
|
||||
self.setGeometry(self.app.prefs.resultWindowRect)
|
||||
else:
|
||||
moveToScreenCenter(self)
|
||||
|
||||
#--- Private
|
||||
def _load_columns(self):
|
||||
|
||||
@@ -244,7 +244,7 @@
|
||||
</message>
|
||||
<message>
|
||||
<source>Excluded</source>
|
||||
<translation>Exclus</translation>
|
||||
<translation>Exclu</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source>Problems!</source>
|
||||
|
||||
Reference in New Issue
Block a user