ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Ecaradec's Software

Qatapult

<< < (44/67) > >>

ewemoa:
Hurray!  No crashes when starting up for both Windows XP Pro SP3 and Windows 7 Pro 64-bit :)

ecaradec:
Wuhuu !

ecaradec:
Hum, judging from the colors of icons it seems that I forgot an alpha premultiplication. If you have weird colors, this is it : I'll fix that this evening.

ewemoa:
Thanks for the pointer -- I'm not noticing anything with the colors under Windows XP Pro SP3.


Below is a bit fancier associations.js.  It provides an array addtoall which can be used to add applications to all configured extensions -- for example, it might be convenient for all extensions to be associated with applications such as hex editors, checksum calculators, etc.


--- Code: Javascript ---table =   (function () {    var table, ext, rule, theType,        //        ahk_h, ahk_l, emacs, frhed, gimp, hashmyfiles, hfs, nppp, pdfx,         sevenzip, smplayer, ssc, sumatra, uniextract, vlc, xnview,        //        imageviewers, videoplayers,        //        addtoall;    //    ahk_h = "..\\AutoHotkey_H\\Win32w\\AutoHotkey.exe";    ahk_l = "..\\AutoHotkey_L\\AutoHotkey.exe";    emacs = "..\\emacs\\bin\\runemacs.exe";    frhed = "..\\FrhedPortable\\FrhedPortable.exe";    gimp = "..\\GIMPPortable\\GIMPPortable.exe";    hashmyfiles = "..\\NirLauncher\\NirSoft\\hashmyfiles.exe";    hfs = "..\\hfs\\hfs.exe";    nppp = "..\\Notepad++Portable\\Notepad++Portable.exe";    pdfx = "..\\PDFX_Vwr\\PDFXCview.exe";    sevenzip = "..\\7-ZipPortable\\7-ZipPortable.exe";    ssc = "..\\ScreenshotCaptor\\ScreenshotCaptor.exe";    smplayer = "..\\SMPlayer\\smplayer.exe";    sumatra = "..\\SumatraPDFPortable\\SumatraPDFPortable.exe";    uniextract = "..\\uniextract\\UniExtract.exe";    vlc = "..\\VLCPortable\\VLCPortable.exe";    xnview = "..\\XnViewPortable\\XnViewPortable.exe";    //    imageviewers = [gimp, xnview];    videoplayers = [smplayer, vlc];    //    addtoall = [frhed, hashmyfiles, hfs];    //    table =       {       "ahk": [ahk_h, ahk_l],       //       "exe": uniextract,       //       "pdf": [sumatra, pdfx],       "txt": [nppp, emacs],          //       "gif": imageviewers,       "jpg": imageviewers,       "png": imageviewers,       "ssc": imageviewers,       //       "avi": videoplayers,       "flv": videoplayers,       "mpg": videoplayers,       "mpeg": videoplayers,       "mp4": videoplayers,       "mov": videoplayers,       //       "7z": sevenzip,       "iso": [sevenzip],       "rar": sevenzip,       "tgz": sevenzip,       "zip": [sevenzip, uniextract]      };    // adding to all    // XXX: not worrying about duplicates atm    for (ext in table) {      rule = table[ext];      theType = typeof rule;      if (theType === "string") {        table[ext] = [rule].concat(addtoall);      } else if (theType === "object") {        table[ext] = table[ext].concat(addtoall);      } else {        // XXX: not expected...      }    }    //    return table;   })();

ecaradec:
It seems that the colors are actually corrects. The new ugly "internet explorer" icon induced me in error. What's the hell were they thinking ? The colors are so awful that I supposed that I had broken something !!!

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version