Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more.
Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
-Scott Ritchie
On Fri, Oct 1, 2010 at 11:18 PM, Scott Ritchie scott@open-vote.org wrote:
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more.
Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
Nice! Any plans for Kubuntu / KDE support? :)
Octavian
On 10/04/2010 08:39 AM, Octavian Voicu wrote:
On Fri, Oct 1, 2010 at 11:18 PM, Scott Ritchie <scott@open-vote..org mailto:scott@open-vote.org> wrote:
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more. Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
Nice! Any plans for Kubuntu / KDE support? :)
Octavian
Nice!
Just to note, KDE/Dolphin already has built-in support for thumnbailing exe files. (Although, in Fedora at least, it's not enabled by default; just tell dolphin to show previews for "Microsoft Windows Executables".
I've also got code on the KDE reviewboard that'll take care of LNK files - if it gets picked up, that'll be natively supported by KDE too...
Nicholas
On 10/03/2010 07:07 PM, Nicholas van Oudtshoorn wrote:
On 10/04/2010 08:39 AM, Octavian Voicu wrote:
On Fri, Oct 1, 2010 at 11:18 PM, Scott Ritchie <scott@open-vote..org mailto:scott@open-vote.org> wrote:
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more. Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
Nice! Any plans for Kubuntu / KDE support? :)
Octavian
Nice!
Just to note, KDE/Dolphin already has built-in support for thumnbailing exe files. (Although, in Fedora at least, it's not enabled by default; just tell dolphin to show previews for "Microsoft Windows Executables".
I've also got code on the KDE reviewboard that'll take care of LNK files
- if it gets picked up, that'll be natively supported by KDE too...
Nicholas
Patches welcome :)
(I think the exe-thumbnailer I got produces better images than KDE's built in stuff, fwiw)
How are you parsing the LNK files for icons?
Thanks Scott Ritchie
On Mon, Oct 4, 2010 at 5:07 AM, Nicholas van Oudtshoorn vanoudt@gmail.comwrote:
Just to note, KDE/Dolphin already has built-in support for thumnbailing exe files. (Although, in Fedora at least, it's not enabled by default; just tell dolphin to show previews for "Microsoft Windows Executables".
I've also got code on the KDE reviewboard that'll take care of LNK files - if it gets picked up, that'll be natively supported by KDE too...
I got it to work, but it's a bit strange since I must activate Preview for the folder to actually get the icons. I agree with Scott, the gnome version looks better and is more useful :)
On Mon, Oct 4, 2010 at 4:07 AM, Nicholas van Oudtshoorn vanoudt@gmail.com wrote:
On 10/04/2010 08:39 AM, Octavian Voicu wrote:
On Fri, Oct 1, 2010 at 11:18 PM, Scott Ritchie <scott@open-vote..org mailto:scott@open-vote.org> wrote:
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more.
Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
Nice! Any plans for Kubuntu / KDE support? :)
Octavian
Nice!
Just to note, KDE/Dolphin already has built-in support for thumnbailing exe files. (Although, in Fedora at least, it's not enabled by default; just tell dolphin to show previews for "Microsoft Windows Executables".
I've also got code on the KDE reviewboard that'll take care of LNK files - if it gets picked up, that'll be natively supported by KDE too...
Nicholas
How does thumbnailing LNK files work? You get a Windows icon path out, which you have to convert to a *nix path - you'd have to use ~/.wine/dosdevices and do case-insensitive filename matching, and even that would only work for LNK files created by Wine, those on a Windows partition have Windows's idea of drive mappings which is probably different from Wine.
Damjan Jovanovic
On 10/04/2010 09:44 PM, Damjan Jovanovic wrote:
On Mon, Oct 4, 2010 at 4:07 AM, Nicholas van Oudtshoorn vanoudt@gmail.com wrote:
On 10/04/2010 08:39 AM, Octavian Voicu wrote:
On Fri, Oct 1, 2010 at 11:18 PM, Scott Ritchie<scott@open-vote..org mailto:scott@open-vote.org> wrote:
Includes much prettier icons, support for Vista icons (with icoutils 0.29.1) and more. Screenshots and a description are at: http://wiki.winehq.org/exe-thumbnailer
Nice! Any plans for Kubuntu / KDE support? :)
Octavian
Nice!
Just to note, KDE/Dolphin already has built-in support for thumnbailing exe files. (Although, in Fedora at least, it's not enabled by default; just tell dolphin to show previews for "Microsoft Windows Executables".
I've also got code on the KDE reviewboard that'll take care of LNK files - if it gets picked up, that'll be natively supported by KDE too...
Nicholas
How does thumbnailing LNK files work? You get a Windows icon path out, which you have to convert to a *nix path - you'd have to use ~/.wine/dosdevices and do case-insensitive filename matching, and even that would only work for LNK files created by Wine, those on a Windows partition have Windows's idea of drive mappings which is probably different from Wine.
Damjan Jovanovic
Agreed - the gnome version does look much better at the moment. Thumbnailing LNK files is done by doing a simple parse of the LNK file, and then using wine's winepath command to convert that into a wine path. (Hence "winepath" :) )
Certainly, LNK files on Windows partitions wouldn't work at all (under the current way it's being done.)
Nicholas