1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 06:37:17 +00:00

Centralized version information in core_* package so that they only live at one place (instead of several).

--HG--
rename : cocoa/me/Info.plist => cocoa/me/InfoTemplate.plist
rename : cocoa/pe/Info.plist => cocoa/pe/InfoTemplate.plist
rename : cocoa/se/Info.plist => cocoa/se/InfoTemplate.plist
This commit is contained in:
Virgil Dupras
2011-01-13 11:29:01 +01:00
parent d139157234
commit e6e4e14781
9 changed files with 15 additions and 10 deletions

View File

@@ -6,7 +6,7 @@
# which should be included with this package. The terms are also available at
# http://www.hardcoded.net/licenses/bsd_license
from core_me import data, scanner, fs
from core_me import data, scanner, fs, __version__
from ..base.app import DupeGuru as DupeGuruBase
from .details_dialog import DetailsDialog
@@ -17,7 +17,7 @@ class DupeGuru(DupeGuruBase):
EDITION = 'me'
LOGO_NAME = 'logo_me'
NAME = 'dupeGuru Music Edition'
VERSION = '5.10.4'
VERSION = __version__
DELTA_COLUMNS = frozenset([2, 3, 4, 5, 7])
def __init__(self):