← Back to team overview

bzr-windows team mailing list archive

Call for testing: bzrw.exe: windows GUI application

 

Hi all,

As discussed earlier we'd like to get rid of black console window behind Bazaar Explorer window and/or qbzr dialogs. For achieve this we need special version of bzr.exe built as windows GUI application. Py2exe has option to create such binaries, so I did quick hack: copy bzr script to bzrw.py and add the latter to gui_targets list in setup.py.

Resulting executable bzrw.exe is available for testing for those who using bzr 1.18 installer:

http://bzrdev.bialix.com/bzrw.exe

You need just copy it to your C:\Program Files\Bazaar directory along with bzr.exe.

If you're using bzr-explorer and can test it, then please run "bzrw.exe explorer" and try to work as usual. There is possible artifacts. I'd like to hear about them. You need to use latest qbzr trunk where I've already fixed one problem related to bzrw.exe.

If you're using python-based version you can help too: create bzrw.bat wrapper where use pythonw.exe to run bzr script with GUI commands.

If you build your own bzr.exe/installer here is diff to apply for setup.py:

--- setup.py    2009-08-28 11:24:40.875000000 +0300
+++ setup.py    2009-09-03 11:46:49.031250000 +0300
@@ -631,7 +631,7 @@
     console_targets = [target,
                        'tools/win32/bzr_postinstall.py',
                        ]
-    gui_targets = []
+    gui_targets = ['bzrw.py']
     com_targets = []
     data_files = topics_files + plugins_files





Follow ups