← Back to team overview

bzr-windows team mailing list archive

[Fwd: Re: Call for testing: bzrw.exe: windows GUI application]

 

Sorry, forgot to hit Reply All.

-------- Исходное сообщение --------
Тема: Re: [Bzr-windows] Call for testing: bzrw.exe: windows GUI	application
Дата: Thu, 03 Sep 2009 13:02:18 +0300
От: Alexander Belchenko <bialix@xxxxxxx>
Кому: INADA Naoki <songofacandy@xxxxxxxxx>
Ссылки: <4A9F85E1.3050700@xxxxxxx> <ee9557410909030251j6c302127t5c6e3dddcb0a36dc@xxxxxxxxxxxxxx>

INADA Naoki пишет:
bzr.exe have icon but bzrw doesn't.
How does bzr.exe embed icon resource?

As I said bzrw is quick hack right now. All qbzr/explorer windows force
to use bzr.ico.

Proper bzrw executable should be described in setup.py in similar way to
bzr script:

    target = py2exe.build_exe.Target(script = "bzr",
                                     dest_base = "bzr",
                                     icon_resources = [(0,'bzr.ico')],
                                     name = META_INFO['name'],
                                     version = version_str,
                                     description =
META_INFO['description'],
                                     author = META_INFO['author'],
                                     copyright = "(c) Canonical Ltd,
2005-2007",
                                     company_name = "Canonical Ltd.",
                                     comments = META_INFO['description'],
                                    )