1
0
mirror of https://github.com/gryf/pygtktalog.git synced 2025-12-22 05:48:09 +01:00

* Added exteranl image viewer.

* Added edit for descriptions and notes for files.
 * Added possibility for make thumbnail for any directory/file.
 * More improvements and bufixes.
This commit is contained in:
2008-04-14 13:29:50 +00:00
parent 371f702f9d
commit 3fd3b2ec19
8 changed files with 400 additions and 162 deletions

View File

@@ -78,6 +78,9 @@ class ConfigModel(Model):
'cd': '/mnt/cdrom',
'ejectapp': 'eject -r',
'imgview': False,
'imgprog': 'gqview',
'retrive': False,
'thumbs': True,
@@ -122,6 +125,8 @@ class ConfigModel(Model):
'retrive extra informatin':'retrive',
'scan exif data':'exif',
'include gthumb image description':'gthumb',
'use external image viewer':'imgview',
'external image viewer program':'imgprog',
}
dbool = (
@@ -141,12 +146,13 @@ class ConfigModel(Model):
'delwarn',
'compress',
'retrive',
'imgview',
)
recent = []
RECENT_MAX = 10
dstring = ('cd','ejectapp')
dstring = ('cd','ejectapp','imgprog')
try:
path = os.environ['HOME']