Avdump GUI: Difference between revisions

From AniDB
Jump to navigation Jump to search
(New page: <pre> import wx,os,subprocess class stuff: def read_file(self,filepath): """reads a file and returns the containing text""" f = open(filepath,"r") config = f.r...)
 
No edit summary
 
(74 intermediate revisions by 9 users not shown)
Line 1: Line 1:
<pre>
{{TOCright}}
import wx,os,subprocess


class stuff:
==Introduction==
    def read_file(self,filepath):
{{eyecatch|Note|You have to set an API key in your profile before auto-creqing with Avdump GUI.}}
        """reads a file and returns the containing text"""
        f = open(filepath,"r")
        config = f.readlines()
        f.close()
        return config


    def create_file(self,filepath,new):
A simple GUI for [[Avdump2]] is available for CLI skeptics. The GUI package includes the most recent version of Avdump2 as well.
        """writes content to a not existing file"""
[[File:Avd2gui.png|thumb|Screenshot of the GUI]]
        f = open(filepath,"w")
===Usage===
        f.write(new)
# Download the GUI [https://cdn-eu.anidb.net/client/avdump2-gui/avdump-gui-2.4.2.win32.zip here].
        f.close()
# Set your AniDB user name and API password in the options menu.
## API password is set on your user settings page: http://anidb.net/perl-bin/animedb.pl?show=profile
## Under the "Account" tab, create a UDP API key; it can be anything you want. It is used for Avdump2 to connect to AniDB.
# Save the options.
# Select what you want to scan from the main menu; files or folders.
# Select the stuff you want to scan (... Button) (you can select multiple files at once).
# Click ''Start''.


class mainFrame(wx.Frame):
For further Assistance join [[IRC:anidb]] and bug [[User:Der Idiot|Der Idiot]].<noinclude>[[Category:Text Module]]</noinclude>
    __simple = ['p','z','r','m','c','o']
    __options = {'avdump':'avdump.exe','user':'','pass':'','ext':'','misc':'','bsize':'2048','port':'','tout':'30','retries':'6','exp':'export.txt','log':'log.txt','done':'done.txt'}
    __configfile='config.ini'
   
    def read_config(self):
        '''read the config file and return the content'''
        if not os.path.exists(self.__configfile):
            self.write_config()
        for line in glob.read_file(self.__configfile):
            if not line.endswith('='):
                temp,val = line.rstrip('\n').split('=',1)
            else:
                val = ''
            for elem in self.__options:
                if temp == elem:
                    self.__options[temp] = val


    def write_config(self,newconfig=''):
===For Vista and Windows 7 permission issues on installation:===
        for elem in self.__options:
*Create a blank .bat file.
            newconfig += ('%s=%s\n') %(elem,self.__options[elem])
*Insert this text into it and modify it to your situation:<br> <tt>"C:\Windows\System32\msiExec.exe" -i  "C:\Directory\Where\Located\avdump-gui.msi"</tt>
        glob.create_file(self.__configfile,newconfig)
*Right click and run the .bat file as administrator.


    def avdump(self):
        self.__options['param'] = ''
        if self.__options['misc'].lstrip(',') > 0:
            for elem in self.__options['misc'].split(','):
                if elem not in ['retries','']:
                    if elem in self.__simple:
                        self.__options['param'] += ' -' + elem
                    elif elem == 'tout':
                        self.__options['param'] += ' -' + elem + ':' + self.__options[elem] + ':' + self.__options['retries']
                    else:
                        self.__options['param'] += ' -' + elem + ':' + self.__options[elem]
        return ('"%s" -ac:%s:%s%s %s') %(self.__options['avdump'], self.__options['user'], self.__options['pass'], self.__options['param'], self.__options['scanpath'])


==Changelog==
<pre>
v2.42 - 08.01.2019 *available as auto update*
* Avdump2 Build 7080 added


    def __init__(self, parent, title):
v2.41 - 05.01.2019 *available as auto update*
        wx.Frame.__init__(self, parent, -1, u'Avdump GUI', wx.DefaultPosition, (350, 140), style=wx.CLOSE_BOX | wx.SYSTEM_MENU | wx.CAPTION | 0 | 0 | wx.MINIMIZE_BOX)
* show error message about too long paths
        self.panel = wx.Panel(self, -1)
* fallback to cp437 in case shell encoding fails which i guess should work?


        self.filepath = wx.TextCtrl(self.panel, -1, '', (95, 25), size=(190, 24))
v2.40 - 03.01.2019 *available as auto update*
        self.start = wx.Button(self.panel, -1, 'Start', (90,75), (-1, -1))
* Avdump2 Build 7070 added
        self.options = wx.Button(self.panel, -1, 'Options', (185,75), (-1, -1))
* show errors in filelist if we encounter one while processing a file instead of endless retrying
        self.select = wx.Button(self.panel, -1, '...', (295, 25), (25, -1))
        self.scantype = wx.RadioBox(self.panel,-1,pos=(5,5),size=(-1, 59),style=wx.RA_VERTICAL,label='scantype',choices = ['Files','Folder'])
       
        self.Bind(wx.EVT_BUTTON, self.selectClick, self.select)
        self.Bind(wx.EVT_BUTTON, self.optionsClick, self.options)
        self.Bind(wx.EVT_BUTTON, self.startClick, self.start)
        self.read_config()


        self.child = OptionsFrame(self, 'App')
v2.33 - 09.11.2016 *available as auto update*
* new icon
* progressbar and status not updating


    def selectClick(self, event,path=''):
v2.32 - 09.11.2016 *available as auto update*
        if self.scantype.GetStringSelection() == 'Files':
* options not being stored on initial start
            dialog = wx.FileDialog ( None, message = 'Pick a directory.', style= wx.FD_MULTIPLE)
            if dialog.ShowModal() == wx.ID_OK:
                temp = dialog.GetPaths()
                if len(temp)>1:
                    for elem in temp:
                        path += '"' + elem + '" '
                else:
                    path = '"' + temp[0] + '"'
        else:
            dialog = wx.DirDialog ( None, message = 'Pick a directory.' )
            if dialog.ShowModal() == wx.ID_OK:
                path = '"' + dialog.GetPath() + '"'


        self.filepath.Clear()
v2.31 - 09.11.2016 *available as auto update*
        dialog.Destroy()
* fixed drag and drop
        self.filepath.write(path)
        self.__options['scanpath'] = path


    def startClick(self, event):
v2.30 - 03.11.2016 *available as auto update*
        if self.filepath.GetValue() != '':
* ported from python 2.7 to 3.4
            self.read_config()
* path/filename encoding woes fixed(?)
            subprocess.call(str(self.avdump()))
* export option removed and made implicit to be always enabled


    def optionsClick(self, event):
v2.20 - 18.08.2015 *available as auto update*
        self.child.Show(True)
* Avdump2 Build 6714 added
* dependencies updated


class OptionsFrame(wx.Frame):
v2.19 - 11.11.2012 *available as msi installer & auto update*
    __box = {'ext':False,'log':False,'exp':False,'port':False,'done':False,'bsize':False,'tout':False,'c':False,'m':False,'p':False,'r':False,'z':False,'o':False}
* Avdump2 Build 6525 added
    __options = {'avdump':'avdump.exe','user':'','pass':'','ext':'','misc':'','bsize':'2048','port':'','tout':'30','retries':'6','exp':'export.txt','log':'log.txt','done':'done.txt'}
* recompiled with updated dependencies which may or may not fix some issues or cause new ones
    __configfile='config.ini'


    def read_config(self):
v2.18 - 31.07.2012 *available as auto update*
        '''read the config file and return the content'''
* Avdump2 Build 5290 added
        if not os.path.exists(self.__configfile):
            self.write_config()
        for line in glob.read_file(self.__configfile):
            if not line.endswith('='):
                temp,val = line.rstrip('\n').split('=',1)
            else:
                val = ''
            for elem in self.__options:
                if temp == elem:
                    self.__options[temp] = val


    def write_config(self,newconfig=''):
v2.17 - 21.09.2011 *available as auto update*
        for elem in self.__options:
* filename encoding issue fixed
            newconfig += ('%s=%s\n') %(elem,self.__options[elem])
        glob.create_file(self.__configfile,newconfig)


    def set_misc(self,misc=''):
v2.15 - 13.09.2011
        for elem in self.__box:
* Avdump2 Build 5028 added
            if self.__box[elem] is True:
* text fix (Optionen instead of Options. watch out for da evil germanz ja)
                misc += elem + ','
* can now drop files into the table to process
        self.__options['misc'] = misc
* speed improvement when adding lots of files at once (really only noticeable > 500)
* potentially fixing some issue with the last filehash not being shown in the export box


    def get_checkboxes(self,misc):
v2.14 - 11.09.2011
        if misc is not None:
* Avdump2 Build 5000 added
            misc = misc.rstrip(',').lstrip(',')
            if misc.find(',') > 0:
                for elem in misc.split(','):
                    self.__box[elem] = True
            else:
                self.__box[misc] = True


   
v2.13 - 06.09.2011
    def __init__(self, parent, title):
* Avdump2 Build 4991 added
        wx.Frame.__init__(self, parent, -1, 'options', wx.DefaultPosition, (301, 691), style=wx.CLOSE_BOX | wx.SYSTEM_MENU | wx.CAPTION | 0 | 0 | wx.MINIMIZE_BOX)
* fixes to be compatible to the new Avdump2 CLI
        self.panel = wx.Panel(self, -1)
        self.adoptions = wx.StaticBox(self.panel, -1, "advanced options", (5,170), (275, 275))
        self.groupbox3 = wx.StaticBox(self.panel, -1, "Path to Avdump", (5,0), (275, 55))
        self.groupbox4 = wx.StaticBox(self.panel, -1, "UDP API Username/Password", (5,55), (275, 115))
        self.groupbox5 = wx.StaticBox(self.panel, -1, "logs", (5,445), (275, 170))
        self.filepath = wx.TextCtrl(self.panel, -1, '', (15,20), size=(220, 25))
        self.selectavdump = wx.Button(self.panel, -1, '...', (245,20), (25, 25))
        self.username = wx.TextCtrl(self.panel, -1, '', (15,90), size=(255, 25))
        self.password = wx.TextCtrl(self.panel, -1, '', (15,135), size=(255, 25))
        self.delete = wx.CheckBox(self.panel, -1, 'delete files after parsing', (15,190), (240, 17))
        self.recursive = wx.CheckBox(self.panel, -1, 'do _not_ recurse into subfolders', (15,205), (240, 17))
        self.monitor = wx.CheckBox(self.panel, -1, 'Monitor folder(s)', (15,220), (240, 17))
        self.bsize = wx.CheckBox(self.panel, -1, 'overwrite the default setting for buffersize', (15,235), (240, 17))
        self.ext = wx.CheckBox(self.panel, -1, 'overwrite the default setting for extentions', (15,250), (240, 17))
        self.port = wx.CheckBox(self.panel, -1, 'overwrite the default setting for port', (15,265), (240, 17))
        self.tout = wx.CheckBox(self.panel, -1, 'overwrite the default setting for timeouts', (15,280), (240, 17))
        self.pause = wx.CheckBox(self.panel, -1, 'Pause when done (hold cmd window)', (15,295), (240, 17))
        self.random = wx.CheckBox(self.panel, -1, 'Random file order', (15,310), (240, 17))
        self.wait = wx.CheckBox(self.panel, -1, 'wait for response when sending dumps', (15,325), (240, 17))
        self.extention = wx.TextCtrl(self.panel, -1, '', (15,360), size=(255, 25))
        self.buffersize = wx.TextCtrl(self.panel, -1, '', (15,405), size=(55, 25))
        self.portnumber = wx.TextCtrl(self.panel, -1, '', (81,405), size=(55, 25))
        self.timeout = wx.TextCtrl(self.panel, -1, '', (149,405), size=(55, 25))
        self.retries = wx.TextCtrl(self.panel, -1, '', (215,405), size=(55, 25))
        self.exp = wx.CheckBox(self.panel, -1, '', (15,478), (17, 17))
        self.exppath = wx.TextCtrl(self.panel, -1, '', (35,475), size=(200, 25))
        self.selectexp = wx.Button(self.panel, -1, '...', (245,475), (25, 23))
        self.done = wx.CheckBox(self.panel, -1, '', (15,538), (17, 17))
        self.donepath = wx.TextCtrl(self.panel, -1, '', (35,535), size=(200, 25))
        self.selectdone = wx.Button(self.panel, -1, '...', (245,535), (25, 23))
        self.log = wx.CheckBox(self.panel, -1, '', (15,583), (17, 17))
        self.logpath = wx.TextCtrl(self.panel, -1, '', (35,580), size=(200, 25))
        self.selectlog = wx.Button(self.panel, -1, '...', (245,580), (25, 23))
        self.save = wx.Button(self.panel, -1, 'Save', (65,620), (75, 23))
        self.cancel = wx.Button(self.panel, -1, 'Cancel', (150,620), (75, 23))
        self.Retries = wx.StaticText(self.panel, -1, 'Retries:', (220,387), (44, 17))
        self.Timeout = wx.StaticText(self.panel, -1, 'Timeout:', (152,387), (50, 17))
        self.Buffersize = wx.StaticText(self.panel, -1, 'Buffersize:', (16,387), (60, 17))
        self.Port = wx.StaticText(self.panel, -1, 'Port:', (86,387), (44, 17))
        self.donelog = wx.StaticText(self.panel, -1, 'save processed-file-paths to file and exlude existing from proc', (40,505), (200, 25))
        self.exported2k = wx.StaticText(self.panel, -1, 'export ed2k-links to file', (40,457), (150, 17))
        self.writelog = wx.StaticText(self.panel, -1, 'write output to log', (40,563), (150, 17))
        self.apiuser = wx.StaticText(self.panel, -1, 'Username:', (20,73), (150, 17))
        self.apipass = wx.StaticText(self.panel, -1, 'Password:', (20,118), (150, 17))
        self.extentionlist = wx.StaticText(self.panel, -1, 'comma seperated extension list', (20,343), (170, 17))
        self.Bind(wx.EVT_BUTTON, self.selectavdClick, self.selectavdump)
        self.Bind(wx.EVT_BUTTON, self.selectlogClick, self.selectlog)
        self.Bind(wx.EVT_BUTTON, self.selectexpClick, self.selectexp)
        self.Bind(wx.EVT_BUTTON, self.selectdoneClick, self.selectdone)
        self.Bind(wx.EVT_BUTTON, self.saveClick, self.save)
        self.Bind(wx.EVT_BUTTON, self.cancelClick, self.cancel)
        self.Bind(wx.EVT_CLOSE, self.onclose)
        self.refresh()


    def selectavdClick(self, event):
v2.12 - 05.09.2011 *pulled*
        dialog = wx.FileDialog ( None, message = 'Pick a directory.')
* Avdump2 Build 4964 added
        if dialog.ShowModal() == wx.ID_OK:
            self.filepath.Clear()
            self.filepath.write(dialog.GetPath())


    def selectlogClick(self, event):
v2.11 - 01.07.2011
        dialog = wx.FileDialog ( None, message = 'Pick a directory.')
* trying to scan files without having provided a username/password -> BOOM (trying to kill the subprocess without it running)
        if dialog.ShowModal() == wx.ID_OK:
* removing already scanned files form the list and readding them will process them again even if "done" is set
            self.logpath.Clear()
  (from frontend at least. avdump itself would ignore them. this would leave a couple "new" entries in the list)
            self.logpath.write(dialog.GetPath())


    def selectexpClick(self, event):
v2.10 - 01.07.2011
        dialog = wx.FileDialog ( None, message = 'Pick a directory.')
* Avdump2 Build 4334 added
        if dialog.ShowModal() == wx.ID_OK:
* Autoupdater implemented
            self.exppath.Clear()
* last scanned dir stored in config
            self.exppath.write(dialog.GetPath())
* window size stored in config (unless it's maximized)
* use stderr to catch errors instead of stdout
* lots of rewriting


    def selectdoneClick(self, event):
v2.02 - 09.06.2011
        dialog = wx.FileDialog ( None, message = 'Pick a directory.')
* Avdump2 Build 4320 added
        if dialog.ShowModal() == wx.ID_OK:
* ditched subprocess module in favour of qprocess
            self.donepath.Clear()
* peek into console output and notice the user when an error happened (outdated version or wrong password/username)
            self.donepath.write(dialog.GetPath())


    def saveClick(self,event):
v2.01 - 06.06.2011
        self.update()
* various nasty bugs removed
        self.Show(False)
* windows can be enlarged on demand


    def cancelClick(self,event):
v2.00 - 03.06.2011
        self.refresh()
* Avdump2 Build 4260 added
        self.Show(False)
* rewrote the whole lot and simplified it


    def onclose(self,event):
v1.07 - 06.04.2008
        self.Show(False)
* Avdump 0.34 added
* fixed a bug with the bufferfield not allowing 16 buffer while that being the default
* made option o default when no profile exists


    def refresh(self):
v1.06 - 12.02.2008
        self.read_config()
* Avdump 0.33 added
        self.get_checkboxes(self.__options['misc'])
        self.filepath.Clear()
        self.filepath.write(self.__options['avdump'])
        self.username.Clear()
        self.username.write(self.__options['user'])
        self.password.Clear()
        self.password.write(self.__options['pass'])
        self.extention.Clear()
        self.extention.write(self.__options['ext'])
        self.buffersize.Clear()
        self.buffersize.write(self.__options['bsize'])
        self.portnumber.Clear()
        self.portnumber.write(self.__options['port'])
        self.timeout.Clear()
        self.timeout.write(self.__options['tout'])
        self.retries.Clear()
        self.retries.write(self.__options['retries'])
        self.exppath.Clear()
        self.exppath.write(self.__options['exp'])
        self.logpath.Clear()
        self.logpath.write(self.__options['log'])
        self.donepath.Clear()
        self.donepath.write(self.__options['done'])
        self.ext.SetValue(self.__box['ext'])
        self.log.SetValue(self.__box['log'])
        self.exp.SetValue(self.__box['exp'])
        self.port.SetValue(self.__box['port'])
        self.done.SetValue(self.__box['done'])
        self.bsize.SetValue(self.__box['bsize'])
        self.tout.SetValue(self.__box['tout'])
        self.recursive.SetValue(self.__box['c'])
        self.monitor.SetValue(self.__box['m'])
        self.pause.SetValue(self.__box['p'])
        self.random.SetValue(self.__box['r'])
        self.delete.SetValue(self.__box['z'])
        self.wait.SetValue(self.__box['o'])


    def update(self):
v1.05 - 13.11.2007
        self.__options['avdump'] = self.filepath.GetValue()
* thx to rar for fixing dumping of files with characters in non local codepage
        self.__options['user'] = self.username.GetValue()
        self.__options['pass'] = self.password.GetValue()
        self.__options['ext'] = self.extention.GetValue()
        temp = int(self.buffersize.GetValue())
        '''make sure it's mod 8 and at least 256kb'''
        if int(temp) < 256:
            temp = 256
        if not temp % 8:
            temp = temp - (temp%8)
        self.__options['bsize'] = unicode(temp)
        self.__options['port'] = self.portnumber.GetValue()
        self.__options['tout'] = self.timeout.GetValue()
        temp = int(self.timeout.GetValue())
        '''make sure it's at least 20'''
        if int(temp) < 20:
            temp = 20
        self.__options['tout'] = unicode(temp)
        self.__options['retries'] = self.retries.GetValue()
        self.__options['exp'] = self.exppath.GetValue()
        self.__options['log'] = self.logpath.GetValue()
        self.__options['done'] = self.donepath.GetValue()
        self.__box['ext'] = self.ext.GetValue()
        self.__box['log'] = self.log.GetValue()
        self.__box['exp'] = self.exp.GetValue()
        self.__box['port'] = self.port.GetValue()
        self.__box['done'] = self.done.GetValue()
        self.__box['bsize'] = self.bsize.GetValue()
        self.__box['tout'] = self.tout.GetValue()
        self.__box['c'] = self.recursive.GetValue()
        self.__box['m'] = self.monitor.GetValue()
        self.__box['p'] = self.pause.GetValue()
        self.__box['r'] = self.random.GetValue()
        self.__box['z'] = self.delete.GetValue()
        self.__box['o'] = self.wait.GetValue()
        self.set_misc()
        self.write_config()


class App(wx.App):
v1.04 - 10.11.2007
    def OnInit(self):
* fix for not being able to dump files with Japanese characters in the filename
        frame = mainFrame(None, 'App')
* Avdump 0.32 added and changes implemented
        frame.Show(True)
        self.SetTopWindow(frame)
        return True


if __name__ == '__main__':
v1.03 - 13.05.2007
    glob = stuff()
* added the console again
    app = App(True)
* fix for log, export and done paths with spaces
    app.MainLoop()
* added parents for the dialogues so they die with the program and can't stay open any more
* option 9 added (experimental mp3 hashing for ostdb)
v1.02 - 13.05.2007
* added error and warning dialogue boxes to prevent a couple problems
* added some exception handling for a few fields
v1.01 - 12.05.2007
* killed a nasty bug with trailing \ in the scanpath
v1.00 - 12.05.2007
* Initial release
</pre>
</pre>
[[Category:Features]]
[[Category:AniDB Clients]]
[[Category:Avdump]]
[[Category:Development]]

Latest revision as of 23:15, 2 January 2022

Introduction

Note You have to set an API key in your profile before auto-creqing with Avdump GUI.

A simple GUI for Avdump2 is available for CLI skeptics. The GUI package includes the most recent version of Avdump2 as well.

Screenshot of the GUI

Usage

  1. Download the GUI here.
  2. Set your AniDB user name and API password in the options menu.
    1. API password is set on your user settings page: http://anidb.net/perl-bin/animedb.pl?show=profile
    2. Under the "Account" tab, create a UDP API key; it can be anything you want. It is used for Avdump2 to connect to AniDB.
  3. Save the options.
  4. Select what you want to scan from the main menu; files or folders.
  5. Select the stuff you want to scan (... Button) (you can select multiple files at once).
  6. Click Start.

For further Assistance join IRC:anidb and bug Der Idiot.

For Vista and Windows 7 permission issues on installation:

  • Create a blank .bat file.
  • Insert this text into it and modify it to your situation:
    "C:\Windows\System32\msiExec.exe" -i "C:\Directory\Where\Located\avdump-gui.msi"
  • Right click and run the .bat file as administrator.


Changelog

 v2.42 - 08.01.2019 *available as auto update*
 * Avdump2 Build 7080 added

 v2.41 - 05.01.2019 *available as auto update*
 * show error message about too long paths
 * fallback to cp437 in case shell encoding fails which i guess should work?

 v2.40 - 03.01.2019 *available as auto update*
 * Avdump2 Build 7070 added
 * show errors in filelist if we encounter one while processing a file instead of endless retrying

 v2.33 - 09.11.2016 *available as auto update*
 * new icon
 * progressbar and status not updating

 v2.32 - 09.11.2016 *available as auto update*
 * options not being stored on initial start

 v2.31 - 09.11.2016 *available as auto update*
 * fixed drag and drop

 v2.30 - 03.11.2016 *available as auto update*
 * ported from python 2.7 to 3.4
 * path/filename encoding woes fixed(?)
 * export option removed and made implicit to be always enabled

 v2.20 - 18.08.2015 *available as auto update*
 * Avdump2 Build 6714 added
 * dependencies updated

 v2.19 - 11.11.2012 *available as msi installer & auto update*
 * Avdump2 Build 6525 added
 * recompiled with updated dependencies which may or may not fix some issues or cause new ones

 v2.18 - 31.07.2012 *available as auto update*
 * Avdump2 Build 5290 added

 v2.17 - 21.09.2011 *available as auto update*
 * filename encoding issue fixed

 v2.15 - 13.09.2011
 * Avdump2 Build 5028 added
 * text fix (Optionen instead of Options. watch out for da evil germanz ja)
 * can now drop files into the table to process
 * speed improvement when adding lots of files at once (really only noticeable > 500)
 * potentially fixing some issue with the last filehash not being shown in the export box

 v2.14 - 11.09.2011
 * Avdump2 Build 5000 added

 v2.13 - 06.09.2011
 * Avdump2 Build 4991 added
 * fixes to be compatible to the new Avdump2 CLI

 v2.12 - 05.09.2011 *pulled*
 * Avdump2 Build 4964 added

 v2.11 - 01.07.2011
 * trying to scan files without having provided a username/password -> BOOM (trying to kill the subprocess without it running)
 * removing already scanned files form the list and readding them will process them again even if "done" is set
   (from frontend at least. avdump itself would ignore them. this would leave a couple "new" entries in the list)

 v2.10 - 01.07.2011
 * Avdump2 Build 4334 added
 * Autoupdater implemented
 * last scanned dir stored in config
 * window size stored in config (unless it's maximized)
 * use stderr to catch errors instead of stdout
 * lots of rewriting

 v2.02 - 09.06.2011
 * Avdump2 Build 4320 added
 * ditched subprocess module in favour of qprocess
 * peek into console output and notice the user when an error happened (outdated version or wrong password/username)

 v2.01 - 06.06.2011
 * various nasty bugs removed
 * windows can be enlarged on demand

 v2.00 - 03.06.2011
 * Avdump2 Build 4260 added
 * rewrote the whole lot and simplified it

 v1.07 - 06.04.2008
 * Avdump 0.34 added
 * fixed a bug with the bufferfield not allowing 16 buffer while that being the default
 * made option o default when no profile exists

 v1.06 - 12.02.2008
 * Avdump 0.33 added

 v1.05 - 13.11.2007
 * thx to rar for fixing dumping of files with characters in non local codepage

 v1.04 - 10.11.2007
 * fix for not being able to dump files with Japanese characters in the filename
 * Avdump 0.32 added and changes implemented

 v1.03 - 13.05.2007
 * added the console again
 * fix for log, export and done paths with spaces
 * added parents for the dialogues so they die with the program and can't stay open any more
 * option 9 added (experimental mp3 hashing for ostdb)
 
 v1.02 - 13.05.2007
 * added error and warning dialogue boxes to prevent a couple problems
 * added some exception handling for a few fields
 
 v1.01 - 12.05.2007
 * killed a nasty bug with trailing \ in the scanpath
 
 v1.00 - 12.05.2007
 * Initial release