Subversion Repositories pub

Compare Revisions

Ignore whitespace Rev 244 → Rev 245

/relevation/branches/1.2.1/CHANGELOG
1,7 → 1,9
$Date$
 
1.2.1 (?):
- Updated GUI to the changes in 1.2
- Minimal GUI Fixes:
- Updated to the changes in 1.2
- Handle lack of matches gracefully
- Integrated specfile from Fedora Rawhide
 
1.2 (2013-10-21):
/relevation/branches/1.2.1/gui.py
83,6 → 83,7
global rootw
search = self.search_text.get()
self.lst.delete(0, tk.END)
self.items = []
mode = '-O'
args = sys.argv[1:] + [ '-s', ]
if self.mode.get() == relevation.MODE_AND:
93,7 → 94,12
else:
args += [ search, mode ]
print args
relevation.main(args)
try:
relevation.main(args)
except SystemExit:
# No matches -> Exit with 80
gui.lst.insert(tk.END, '<No matches>')
self.items.append('<No passwords matched search>')
 
def display(self):
global rootw