-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS.txt
1743 lines (1495 loc) · 70.1 KB
/
NEWS.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
0.23.2 - 2016/04/10
-------------------
Maintenance release.
* qrun:
* More robust against unicode help from some hidden commands.
Attempt to fix bug #1217371. (Alexander Belchenko)
* qshelve:
* New command line option --all to start with all changes selected.
(Sveinung Kvilhaugsvik, Bug #1227914)
* New command line option --message (-m) to set the message string.
(Sveinung Kvilhaugsvik, Bug #1233909)
* qcommit:
* Better compatibility with bzr 2.6+: fixed warning message
`Cannot expand "commit_data": Dicts do not support option expansion`.
(Alexander Belchenko, Bug #1254838)
0.23.1 - 2013/07/29
-------------------
Maintenance release.
* qannotate:
* option --line=N: properly activate the first line and a line with
uncommitted changes. (Alexander Belchenko)
* qcommit:
* Better support of cancel commit for foreign branches (git/svn/etc).
(Bug #1030343, Jared Silva, Jelmer Vernooij)
* qconfig:
* Fix: Fails to modify or remove merge tool configuration.
(IWATA Hidetaka, Bug #1045827)
* qlog:
* Support for FusionForge bug tracker. (Jérémy Subtil, Bug #1072044)
* Support for Jira bug tracker. (Craig Hewetson, Bug #1189421)
* Support for Flyspray bug tracker URLs (2 styles). (Alexander Belchenko)
* Hack for Vista/Win7 aero style: selected rows should use black text
color. (Alexander Belchenko, Bug #790590)
* Workaround for date column width problem on Windows Vista and higher
(1 pixel miscalculation). (Alexander Belchenko, Bug #430502)
0.23.0 "Birch" - 2012/07/12
---------------------------
What's new in this release:
QBzr 0.23 is companion release for bzr 2.6, and compatible with bzr 2.5.
Behavior change: External diff behavior is changed as below.(IWATA Hidetaka)
1. When calling external diff for multiple files, all diffs shown at once.(Bug #942218)
2. Working tree or branch is locked only when starting up of diff tools.(Bug #942221)
This affects to all commands which use external diff.
(qdiff, qcommit, qbrowse, qannotate, ...)
Now, you can launch 'Shelve' directly from each dialog when uncommitted change blocks action.
And you can launch 'Resolve' directly when conflicts generated. (IWATA Hidetaka #935903)
New feature of qannotate command: command-line option `--line=N` (`-L`)
allows you to jump right to specific line.
That could be used for tighter integration with editors and IDEs.
Annotation window now uses e-mail of revision author to define background
color of revision. Previously we've used author name to define background
color, so changes in different revisions made by user with the same e-mail
but with differently spelled name was highlighted with different colors.
Simple actions to resolve conflicts: 'take "THIS"' and 'take "OTHER"'.
Available from context menu.
Show simple message box instead of exception report dialog when failing to lock. (#935902)
Improvements of qlog's context menus: better context menu of deleted files,
and for files from virtual "Working Tree" revision (available when
qlog run with --show-tree option). Also properly refresh the state of changes
in virtual "Working Tree" revision.
* qannotate:
* New command-line option `--line=N` (`-L`) to activate specified
line number on start of dialog. (Alexander Belchenko)
* Prefer e-mail as "author id" to define background color for lines.
(Alexander Belchenko, Bug #878204)
* qbind:
* Add push location to suggestions. (Alexander Belchenko)
* qconflicts:
* Added 2 resolve actions to context menu: `Take "THIS"`
and `Take "OTHER"`. (Alexander Belchenko)
* Auto-refresh conflicts list after selecting a resolve action.
(Alexander Belchenko)
* qlog:
* Disable context menu items (view, annotate, save) for deleted files.
(Alexander Belchenko, Bug #1009876)
* Fix - Some menus (show tree, view, annotate) don't work when Working
tree revision selected.
(IWATA Hidetaka, Bug #1020530)
* Some menus (tag, update, revert, ...) are disabled when Working tree
revision selected.
(IWATA Hidetaka, Bug #1020530)
* Fixing issue: Working tree revision is never refreshed.
(IWATA Hidetaka, Bug #1021076)
* qrevert:
* it now does a real check to see if there are files (or merges) selected to revert -
if not, it shows a warning message. (André Bachmann, Bug #942744)
* qshelve/qunshelve:
* Use `encoding` settings from branch or global config to properly show
files content. (Alexander Belchenko, Bug #995943)
0.22.5 - yyyy/mm/dd
-------------------
Maintenance release.
* qcommit:
* Better support of cancel commit for foreign branches (git/svn/etc).
(Bug #1030343, Jared Silva, Jelmer Vernooij)
0.22.4 - 2012/07/12
-------------------
Maintenance release.
* qlog:
* Disable context menu items (view, annotate, save) for deleted files.
(Alexander Belchenko, Bug #1009876)
* Fix - Some menus (show tree, view, annotate) don't work when Working
tree revision selected.
(IWATA Hidetaka, Bug #1020530)
* Some menus (tag, update, revert, ...) are disabled when Working tree
revision selected.
(IWATA Hidetaka, Bug #1020530)
* Fixing issue: Working tree revision is never refreshed.
(IWATA Hidetaka, Bug #1021076)
0.22.3 - 2012/05/23
-------------------
Maintenance release.
* qlog
* Fix - crashes when trying show log of subdirectory with --show-trees option.
(IWATA Hidetaka, Bug #974362)
* qshelve/qunshelve:
* Use `encoding` settings from branch or global config to properly show
files content. (Alexander Belchenko, Bug #995943)
0.22.2 - 2012/04/05
-------------------
Maintenance release.
* qrun:
* Localized help text for selected command is shown correctly now.
(Alexander Belchenko, Bug #963542)
* qshelve:
* Pressing Ctrl+Enter in message edit area triggers shelve action.
(IWATA Hidetaka, Bug #936982)
* Hunks are not displayed on Mac OS. (IWATA Hidetaka, Bug #955241)
* qgetnew:
* Ask for verification if a checkout should go to a non-empty
directory - this may cause unwanted conflicts (André Bachmann, Bug #938835)
* qdiff
* Fix - crashes when trying show complete diff of renamed file. (Bug #969055)
* Don't use deprecated API (bzrlib.builtins.tree_files).
(Alexander Belchenko, Bug #776241)
0.22.1 - 2012/02/21
-------------------
Just in time for bzr 2.5.
* New command: qignore. (Alexander Belchenko, Bug #524785)
0.22.0 "Alder" - 2012/02/07
---------------------------
What's new in this release:
QBzr 0.22 is companion release for bzr 2.5, and compatible with bzr 2.4.
This release has many improvements and bugfixes. As usual many improvements
related to qdiff dialog.
While searching for the word or sentence all matches are highlighted.
This highlighting works in qdiff, qshelve, qunshelve, qannotate.
To make navigation faster through the long side-by-side diff, or inside big
annotated file you can use backside guide bar in qdiff and qannotate.
Behavior change: "Unchanged" option in treewidget filter now only applies
to versioned files. (Before it was applied to unknown files too).
Other qdiff improvements include: curved lines are using in side-by-side view,
smart synchronization of side-by-side view in "Complete" mode;
files with wrong or mixed encoding no more shown as "latin-1", but in user-
specified encoding.
For full list of improvements and bugfixes please see changelog below.
* qannotate:
* Vertically center the target line when using "Goto Line" in qannotate.
(Benoît Pierre)
* Show change markers side of annotate view.
It represents where lines changed by selected revisions are.
(IWATA Hidetaka)
* qbrowse:
* Does not crash anymore when called for shared repository.
(André Bachmann, Alexander Belchenko, Bug #578935)
* Avoid using inventory for access to revision and working trees.
(Jelmer Vernooij, Bug #922121)
* qconfig:
* Fixed Set Default button in Merge tab. (Gordon Tyler, Bug #820635)
* qdiff:
* Smart scroll syncronizing for side by side view (in complete mode).
(IWATA Hidetaka)
* Fixed ignore whitespace changes code.
(Alexander Belchenko, Bug #827391)
* Use curved lines in central widget change markers.
(IWATA Hidetaka)
* In the case of file content has mixed encoding that cannot be safely
decode to unicode qdiff don't fallback to use latin-1 encoding anymore,
but try to decode such content in "replace" mode.
(Alexander Belchenko, Bug #814117)
* Implement search highlight. This change affects to qdiff, qshelve,
qunshelve, qannotate. (IWATA Hidetaka, Bug #785565)
* Show change markers side of diff views. (IWATA Hidetaka Bug #827251)
* qgetnew
* Base directories for the source branch and the destination checkout folder
can now be configured in qconfig, tab 'User Interface'. (André Bachmann)
* qlog:
* Do not crash on ghost revisions.
(Jonathan Riddell, Bug #785967)
* Show context menu properly after re-load of branch(es).
(IWATA Hidetaka, Bug #744904)
* qrun:
* Command-line arguments with spaces properly quoted.
(Alexander Belchenko, Bug #824381)
* Add support for UIFactory.choose.
Make it possible to use 'shelve' in qrun. (Benoît Pierre)
* qverify-signatures:
* Report commits signed with expired keys in "verify-signatures".
(Jonathan Riddell, #804254)
* Adapt command progress display to changes needed for translations in bzrlib
which was raising a TypeError with unicode. (Martin Packman, #872616)
* Treewidget 'unchanged' filter is now only versioned files. (Martin Packman)
* Stringify tab_width settings while writing it to branch config.
(Workaround for bug #912344, Alexander Belchenko)
0.21.4 - development
--------------------
Maintenance release.
* qlog:
* Disable context menu items (view, annotate, save) for deleted files.
(Alexander Belchenko, Bug #1009876)
0.21.3 - 2012/04/05
-------------------
Maintenance release.
* Avoid AttributeError on 'is_ignored' from treewidget filtering involving
unversioned files that have been moved. (Martin Packman, Bug #557603)
* Stringify tab_width settings while writing it to branch config.
(Workaround for bug #912344, Alexander Belchenko)
* Don't use deprecated API (bzrlib.builtins.tree_files).
(Alexander Belchenko, Bug #776241)
0.21.2 - 2011/12/07
-------------------
Maintenance release.
* qbrowse:
* Does not crash anymore when called for shared repository.
(André Bachmann, Alexander Belchenko, Bug #578935)
* qconfig:
* Fixed Set Default button in Merge tab. (Gordon Tyler, Bug #820635)
* qdiff:
* Fixed ignore whitespace changes code.
(Alexander Belchenko, Bug #827391)
* qlog:
* Show context menu properly after re-load of branch(es).
(IWATA Hidetaka, Bug #744904)
* qrun:
* Command-line arguments with spaces properly quoted.
(Alexander Belchenko, Bug #824381)
* qunshelve:
* Disable OK button while executing unshelve. (IWATA Hidetaka, Bug #842818)
* Avoid NoSuchFile error when working tree has added and removed file.
(IWATA Hidetaka, Bug #842842)
* Updated translations.
0.21.1 - 2011/08/04
-------------------
Maintenance release.
* qlog:
* Do not crash on ghost revisions. (Jonathan Riddell, Bug #785967)
* qswitch:
* Support unicode locations. (Alexander Belchenko, Bug #819259)
0.21 "Tilia" - 2011/07/21
-------------------------
What's new in this release:
QBzr 0.21 is companion release for bzr 2.4, and compatible with bzr 2.3.
New features in this release:
Now you can select changes to shelve and unshelve your saved changes with
new shiny qshelve and qunshelve dialogs.
qdiff window has been reworked and all controls moved to a toolbar, similar to
one in qannotate window. Also qdiff toolbar provides you new functions: text
search within active pane and also knob to ignore whitespace changes (it's
also available as command-line option).
User can configure the tab width and this setting affects qdiff, qannotate and
qcat windows. By default tab width equals to 8 characters, user can set new
default value in bazaar.conf as ``tab_width = N`` (either via qconfig or
editing [DEFAULT] section of bazaar.conf). Also user can set individual tab
width for branches in their branch.conf. User can configure tab width via
"View Options" menu in toolbars of qdiff, qannotate.
QBzr provides support for new builtin feature of bzr: mergetools. Now you can
easier configure your favorite diff/merge tool to be used from qconflicts or
context menu in qbrowse (Working Tree browser in Bazaar Explorer).
If you have python-gpgme installed and you have enabled gpg-signatures for
your commits then you can see new messages regarding valid gpg-signatures
available in qlog. Also you can run check of your signatures with new
qverify-signatures command.
Other changes include major rework of qinfo dialog (show the same information
as CLI ``bzr info`` does), qcommit dialog now remembers state of "Show
non-versioned" knob between runs, now it's possible to save old state of the
file from qlog dialog (using context menu in file list), error dialogs has been
improved (now also support apport if available)
and several other improvements and bugfixes (see full changelog for details).
Changes after 0.21 beta 1:
* qcat:
* Fixed problem with viewing file from qbrowse.
(Alexander Belchenko, Bug #776196)
* qinfo:
* Turned off word-wrap in location label: prevents strange
path display if there are spaces in the path.
(A. S. Budden, Bug #781040)
* Fixed UnicodeError for non-ascii paths.
(Alexander Belchenko, Bug #790138)
* qdiff, qannotate:
* Tab-width can be customised from the view menu.
(Bug #490377, A. S. Budden)
* qgetnew:
* The target location no longer gets overwritten
when the source location changes. (André Bachmann)
* qlog:
* File list context menu: added support to save content of a file
of specific revision as a new file. (André Bachmann)
* Show digital signature information for commits if python-gpgme is
installed
* Improved error dialogs on internal/other error,
support for apport (if it's available).
(Jonathan Riddell)
* Branch/Checkout dialogs:
* Fixed UnicodeDecodeError with non-ascii paths in target directory
picker. (Alexander Belchenko, Bug #789083)
* Use bzrlib.mergetools for managing and using external merge tools in qconfig
and qconflicts. (Bug #489915, Gordon Tyler)
* New qshelve / qunshelve dialogs. (IWATA Hidetaka)
* New command qverify-signatures to show digital signature statuses
for branch commits
0.21 beta 1 - 2011/05/02
------------------------
* qbranch:
* Fixed problem with very small width of input fields in the dialog
on Mac OSX. (Timothy Reaves, Bug #667090)
* qbrowse:
* Use `qcat --native` equivalent to allow opening copies of files from
branches without working trees. (A. S. Budden, Bug #752422)
* qcommit:
* Remember "Show non-versioned" checkbox state.
(Nick Sonneveld, Bug #258926)
* qconflicts:
* Fixed internal error when there is conflict in non-versioned file.
(Alexander Belchenko, Bug #655451)
* qdiff:
* New toolbar with controls and options (similar to qannotate's toolbar).
(Dorin Scutarașu)
* Support for ignore whitespace differences in changes.
This mode can be turned on from command-line (`qdiff -w`
or `qdiff --ignore-whitespace`) and from GUI itself (in View Options).
(Dorin Scutarașu, Glen Mailer, Bug #642000)
* Added Find action to do text search within either pane.
(Dorin Scutarașu, Bug #497832)
* qinfo:
* Significantly simpler implementation that shows the information
provided by Bazaar. This fills in the gaps in the data shown
by qinfo (such as details of checkouts) and means that changes
to 'bzr info' will automatically be reflected in qinfo.
(A. S. Budden, Bug #439624)
* qsubprocess:
* Reliable exception encoding to pass exception attributes
from subprocess to the GUI process. (Martin [gz], Bug #686735)
* qannotate, qdiff:
* Find text box turns red if no matches are found.
(A. S. Budden, Bug #772244)
* qcat, qannotate, qdiff, qconfig:
* Added ability to customise the tab-stop width (setting in qconfig,
affects qcat, qannotate and qdiff).
The setting is stored in [DEFAULT] section of bazaar.conf,
and is named tab_width (it can also be configured with qconfig). Units
are characters (so 4 means a tab should be displayed with the width of 4
spaces). The default value is 8. The setting can also be adjusted in
branch.conf for specific branches. (Bug #490377, A. S. Budden)
0.20.4
------
NOTE: 0.20 is obsolete series as of September 2012.
Maintenance fixes.
* Workaround for bug in Python http://bugs.python.org/issue4230
(Samuel Bronson, Bug #1051000; Alexander Belchenko, Bug #711602)
0.20.3 - 2011/12/07
-------------------
Maintenance release.
* qbrowse:
* Does not crash anymore when called for shared repository.
(André Bachmann, Alexander Belchenko, Bug #578935)
* qlog:
* Show context menu properly after re-load of branch(es).
(IWATA Hidetaka, Bug #744904)
* qrun:
* Command-line arguments with spaces properly quoted.
(Alexander Belchenko, Bug #824381)
* qswitch:
* Support unicode locations. (Alexander Belchenko, Bug #819259)
0.20.2 - 2011/07/20
-------------------
Maintenance release.
* qconflicts:
* Fixed internal error when there is conflict in non-versioned file.
(Alexander Belchenko, Bug #655451)
* qinfo:
* Fixed UnicodeError with non-ascii locations.
(Alexander Belchenko, Bug #790138)
* Branch/Checkout dialogs:
* Fixed UnicodeDecodeError with non-ascii paths in target directory
picker. (Alexander Belchenko, Bug #789083)
0.20.1 - 2011/04/26
--------------------
Maintenance release.
* Compatibility with patched bzrlib on debian without copy of configobj
library inside it. (Bug #715067, Alexander Belchenko)
* qbranch:
* Fixed problem with very small width of input fields in the dialog
on Mac OSX. (Timothy Reaves, Bug #667090)
* qsubprocess:
* Reliable exception encoding to pass exception attributes
from subprocess to the GUI process. (Martin [gz], Bug #686735)
0.20.0 - 2011/02/03
-------------------
Bazaar 2.3 companion release. Suitable for bzr 2.3 and bzr 2.2.
* Refactor the config code:
* Remove the QBzrGlobalConfig class so that we only have one class that
writes to qbzr.conf.
* Have a global cache for the QBzrConfig, like we have for bzr GlobalConfig,
to reduce reading the config from disk.
* Refactor the window.saveSize methods, so that we only have to write the
config to disk once.
* Lock the config dir when when saving the config file.
(Gary van der Merwe)
* qrun: fixed '--execute' mode. (Bug #590229, Simon Kersey)
* qlog:
* Refactor loggraphprovider so that the state and computed data is separated
from the cache. Rename to loggraphviz.
* Write lots of tests for loggraphviz.
* Remove LogFilterProxyModel which improves performance.
* --no-graph mode now shows nodes per revision, indented by merge depth.
* Fix the layout of octopus merges. (Bug #489383)
* Add a option --show-trees that shows working tree changes as a node
in the graph.
* Fix bug with show log form the tree widget with remote branch.
(Bug #621934)
* qcommit: added option to load commit message from a file.
(Bug #640071, Philip Peitsch)
* qconflicts: fix bug with access to QBzr configuration. (Bug #675894)
* When a interupt signal is recived, close rather than showing a error
message. (Gary van der Merwe)
* qpush: fixed smart suggestion of new push URLs for lp branches.
(Bug #710767, Alexander Belchenko)
0.19.4 - 2011/07/20
-------------------
Maintenance release.
* qconflicts:
* Fixed internal error when deleting non-versioned files/directories.
(Alexander Belchenko, Bug #655451)
0.19.3 - 2010/11/26
-------------------
Maintenance release.
* The 0.19 series is now marked as incompatible with bzr versions >= 2.3.
This due to Bug #650905. (Gary van der Merwe)
* qlog:
* Fix actions that use the branch menu on PyQt 4.7.4.
(Bug #621158, Gary van der Merwe)
* Fix crash when trying to "Revert to this revision",
"Update to this revision", etc. (Bug #680787, Gary van der Merwe)
* Restore ignore button for error dialogs. (Gary van der Merwe)
0.19.2 - 2010/09/24
-------------------
Maintenance release.
* Fix finding bzr.exe when running from bzrw.exe with out full path in the
command line. Handle been launched from tortoisebzr without it having to
change sys.executable. (Bug #640082, Bug #641557, Gary van der Merwe)
0.19.1 "Chestnut" - 2010/09/13
------------------------------
Maintenance release.
* Fix modeltest.py so that it works with Qt 4.7.
(Bug #614123, Gary van der Merwe)
* qbrowse: fixed 'Mark as renamed' feature in treewidget.
(Bug #620433, Alexander Belchenko)
* qconfig: guess user id if there is no whoami set.
(Bug #622336, Gary van der Merwe, Alexander Belchenko)
* qgetupdates: fixed API mismatch. (Bug #636510, Alexander Belchenko)
* qlog:
* better branch labels for `bzr qlog colo:` case. (Alexander Belchenko)
* give a size hint for the GraphTagsBugsItemDelegate so that blured
rendering on Windows with PyQt 4.7 is avoided. (Gary van der Merwe)
* qrun: fixed '--execute' mode. (Bug #590229, Simon Kersey)
0.19 "Shepherd's Tree, aka Boscia albitrunca" - 2010/08/05
----------------------------------------------------------
Bazaar 2.2 companion release. Suitable for bzr 2.2 and bzr 2.1.
Changes since 0.19b2 release:
* qlog:
* Context menu actions for tag, and revert will now show a branch menu if
more than one branch is open. (Craig Hewetson, Gary van der Merwe)
* Add context menu actions for update, cherry-pick, and reverse cherry-pick.
(Bug #258360, Gary van der Merwe)
* Language of GUI can be set in DEFAULT section of bazaar.conf
as ``language = code``. Language codes are the same as for LANG environment
variable. Environment variable LANGUAGE still preferred over settings
in bazaar.conf. (Alexander Belchenko)
* Added Thai translation.
0.19 Beta 2 "Pomegranate" - 2010/07/01
--------------------------------------
* Allow finding locale in system location on Linux
(Bug #542429, Toshio Kuratomi).
* Provide better text on Close and Ignore buttons when exceptions raised.
(Bug #486946, Luis Arias)
* Fix bug where Mac OS X windows start in background. (Bug #417162,
Luis Arias)
* Fix bug in treewidget where folders are repeated.
(Bug #580798, Iwata, Gary van der Merwe)
* qsubprocess: when sending error object over the stdout we should use
unicode-escape encoding for the possible unicode/multiline strings.
(Bug #570564, Alexander Belchenko)
* qinit: set default value for repository format in the combobox.
(Bug #531795, Gordon Tyler)
* qcommit:
* Hide completer's popup when a IME event occurs. (Bug #573652, INADA Naoki)
* If a branch path is passed to the command line, select the files in
the branch. (Gary van der Merwe)
* qdiff: Use the new bzrlib.diff.get_trees_and_branches_to_diff_locked api.
(Gary van der Merwe)
* qlog:
* Handle ghost revisions better. Ghost can now be seen in the graph,
and don't cause search to crash. (Bug #57042, Gary van der Merwe)
* Show better labels for branch tips. Show a tooltip with the full branch
url. (Bug #585309, Gary van der Merwe)
* Fix a bug where branch labels don't show if the have the same tips.
(Bug # 485236, Gary van der Merwe)
* qlog . in a sub dir now filters to only show the sub dir.
(Bug #517592, Gary van der Merwe)
* Fix crash we viewing file history from qbrowse/bzr explorer.
(Bug #585280, Gary van der Merwe)
* qupdate, qunbind, qgetupdates: new --execute option will run these
commands immediately without waiting for the user to click on the Ok button
(Luis Arias)
* qannotate:
* Add find and goto line interfaces. The style for this interface will be
used for other browsing windows in the future.
(Bug #215256, Gary van der Merwe)
* Double clicking or pressing enter for a revision now changes the annotated
revision. Please use the context menu to get to the diff.
(Bug #404276, Gary van der Merwe)
* When changinging the annotated revision, the scroll position, and selection
are maintained. (Bug #404288, Gary van der Merwe)
0.19 Beta 1 "Monkey-puzzle, aka Araucaria araucana" - 2010/03/29
----------------------------------------------------------------
* Added Hungarian translation.
* qcommit: Give the user the option to update the branch if it is not up to
date. (Bug #439920, Gary van der Merwe)
* qpush, qmerge, etc.: When there are uncommit changes in the working tree,
give the user the option to commit, or revert. (Gary van der Merwe)
* qlog: Improve performance by using KnownGraph. (John Arbash Meinel,
Gary van der Merwe)
* TreeWidget dialogs (qcommit, qadd, qrevert, qbrowse):
Performance improvements for select all, and changeing filters.
(Bug #513105, Bug #476641, Gary van der Merwe)
* Improve startup performance by using lazy imports. (Gary van der Merwe)
Note: qbzr now requires bzr 2.1.
0.18.8 - 2011/04/27
-------------------
Maintenance release.
* qrun:
* Fixed '--execute' mode. (Bug #590229, Simon Kersey)
0.18.7 "Juniper" - 2010/08/04
-----------------------------
Maintenance release.
* Don't break when bzr-search tries to import bzr-svn,
and bzr-svn is incompatible with bzrlib.
(Bug #546843, Gary van der Merwe)
* Treewidget: Fix bug in treewidget where folders are repeated.
(Bug #580798, Gary van der Merwe)
* Added Thai translation.
0.18.6 - 2010-05-04
-------------------
Maintenance release.
* qlog: Fix a bug with search. (Bug #575338, Gary van der Merwe)
* qlog: Fix a bug were qlog crashes when bzr-svn is incompatible with bzrlib.
(Bug #546843, Gary van der Merwe)
* Fix bug in treewidget where folders are repeated.
(Bug #580798, Iwata, Gary van der Merwe)
0.18.5 "Silver terminalia" - 2010-04-02
---------------------------------------
Maintenance release.
* qsubprocess: pass command line with double and multiple backslashes
via temporary file. (Bug #528944, Alexander Belchenko)
* qlog, qbrowse: Fix a bug when using with pyqt 4.7.2. (Bug #544928,
Gary van der Merwe)
0.18.4 "Pussy-willow" - 2010/03/22
----------------------------------
Bugfixes in the stable branch. Suitable for bzr 2.1.x.
* Improved support for Redmine bugs URL. (Bug #538414, Alexander Belchenko)
* TreeWidget: Fix a bug where refreshing may result in data inconsistencies.
This bug was causing a number of knock on bugs.
(Bug #538753, Gary van der Merwe)
* qcommit: better support of commit directly into SVN tree.
(Bug #540363, Alexander Belchenko)
0.18.3 "Cypress" - 2010/03/03
-----------------------------
Bugfixes in the stable branch. Suitable for bzr 2.1.x.
* Fixed problem with running diff from qannotate from qbrowse.
(Bug #505987, Alexander Belchenko)
* Rollback changes to qadd made in 0.18.2 which caused regression.
(Bug #526933, Alexander Belchenko)
* Handle FileTimestampUnavailable error when diffing file with ghosts
in history. (Bug #513096, Alexander Belchenko)
* Change dialogs to have normal window flags. This fixes a bug where on
some window managers (metacity, Mac OSX) windows opened from a dialog
would be behind the dialog. (Bug #421039, Gary van der Merwe)
* TreeWidget: emit layoutAboutToBeChanged signal while we remove old items
to ensure model data consistency.
(Bug #513066, Bug #515908, Gary van der Merwe)
* TreeWidget: When renaming a file, pressing enter should not cause the
default action to be run. (Bug #513107, Gary van der Merwe)
* Sub processes dialogs: Fix usability bugs with the Retry button:
* The button position changes on Linux when the Retry button appears.
* The Enter key does not work after the Retry button appears.
(Gary van der Merwe)
* TreeWidget: Add more comprehensive tests. Fix some minor bugs found by
these tests. (Gary van der Merwe)
* TreeWidget: Fix a bug where the TreeWidget if there was a conflict, for
which the file does not exist. (Bug #528548, Gary van der Merwe)
0.18.2 "Cedar" - 2010/02/21
---------------------------
Bugfixes in the stable branch. Suitable for bzr 2.1.x.
* qconfig: don't quote editor path. (Bug #523212, Alexander Belchenko)
* qsubprocess: pass command line with \n in it via temporary file.
(Bug #517420, Alexander Belchenko)
* qsubprocess: relax the unicode problems while decode stdout of subprocess.
(Bug #523746, INADA Naoki)
* Restore standard bzrlib ui_factory on exit from q-commands.
(Bug #498309, Alexander Belchenko)
* Better "select all" logic for qrevert and qadd.
(Bug #524483, Alexander Belchenko)
* Added Hungarian translation.
0.18.1 "Fern" - 2010/02/04
--------------------------
What's new in this release:
* Treewidget: Fix a crash when refreshing tree with a checked item that has a
parent that is ungrouped. (Bug #512006, Gary van der Merwe)
* Avoid importing Qt libs when `bzr help commands` invoked.
(Bug #515636, Alexander Belchenko)
0.18 "Pine-needles" - 2010-01-19
--------------------------------
What's new in this release:
* Fixed problems with rename items in subdirectory. (Bug #495519, INADA Naoki)
* Flush clipboard on exit, so data copied there is available after closing of
q-window. (Bug #503401)
* Fixed problem with insufficient width of revno column in qannotate and
qbrowse (for revision tree) if revno bigger than 9999.
(Bug #505990, Alexander Belchenko)
* Changed buttons behavior in subprocess-based dialogs: if the operation
failed then show Retry button (instead of OK), at the successfull finish
show only Close button. (Simon Kersey)
* qrun has new option --execute which allows to run the supplied command
immediately. If the command failed user can edit the command and its
arguments in usual way. (Simon Kersey)
* Fixed a bug in the new SyntaxHighlighter used in qannotate and qcat so that
it correctly handle tokens without styles. (Bug #508281, Gary van der Merwe)
* Fixed a bug in TreeWidget were some times duplicated in parent directories.
(Gary van der Merwe)
* qbranch has a new --bind option for convenient binding to the parent
location while branching.
* qcommit: Non versioned files are now selected by select all when they are
shown. (Bug #490864, Gary van der Merwe)
* Serbian translations added.
0.17 "Sapin de Noテォl" - 2009/12/12
---------------------------------
What's new in this release:
* New encoding selector added to qdiff, qannotate, qcat and qviewer.
This selector allows change of the text encoding "on the fly". See:
http://bazaarvcs.wordpress.com/2009/12/04/selecting-file-encoding-in-qbzr/
* qpush can auto-suggest push location for feature branches when master
branch hosted on remote server. In the case of Launchpad it suggests
location lp:~user/project/branch.
* Now it's possible to tag a revision while browsing history in qlog.
* Details on revision in qlog now have fancy dots for parent/children
revisions, dots have the same color as in main qlog graph.
* qcat/qviewer: show line numbers for text lines.
* qannotate: new feel & look, you can copy text from annotated view now.
* qrun now groups the commands into several categories (All, Core,
and separate for each installed plugin)
* New translations added: Arabic, Czech, Danish, English (United Kingdom).
* And many other bugfixes as well.
Changelog:
* New encoding selector added to qdiff, qannotate and qcat. This selector
allows change of the text encoding "on the fly". (INADA Naoki)
* qpush:
* When a push location is yet to be defined, qpush suggests a location for
feature branches when the master branch is hosted on Launchpad.
(Bug #487562, Ian Clatworthy)
* qconflicts:
* Double click on file item opens merge tool. (Eugene Tarasenko)
* qdiff:
* Fixed problem with invoking external diff from qdiff dialog
when the current directory is not repository root.
(Bug #439084, Alexander Belchenko)
* qlog:
* Added "tag revision" action to context menu. (Bug #442953, Craig Hewetson)
* Robust handling of bogus --fixed properties. (Bug #436834, Craig Hewetson)
* The properties box in the message box now follow the theme, and hence are
now readable on dark themes. (Bug #407070, Gary van der Merwe)
* Parents and children in the message box are now show with a dot, of the
same color as thier dot in the graph. (Gary van der Merwe)
* qcat:
* Line numbers are now shown when viewing text files. (Gary van der Merwe)
* qannotate:
* It is now possible to select and copy text from qannotate. (Bug #251309,
Gary van der Merwe)
* Show all revisions that touch the file in the log list. (Bug #488824,
Gary van der Merwe)
* qrun:
* A category field has been added to make finding commands easier.
(#486968, Ian Clatworthy)
* The command name, command parameters and command category can be
passed on the command line. (Ian Clatworthy)
* qsubprocess:
* Catch possible errors from bencode decoder is we got malformed string
from child process. Show the error nicely.
(Bug #484624, Alexander Belchenko)
* treewidget (used in qcommit, qadd, qrevert, and qbrowse):
* Fixed compatibility with PyQt < 4.6.
(Bug #479093, Bug #478979, Gary van der Merwe)
* Extended keyboard navigation: pressing Enter invokes default action
for selected item. (Bug #483597, Alexander Belchenko)
* Fixed is_ignored() check (versioned file that matches ignore pattern
should not be called "ignored"). (Bug #487560, Alexander Belchenko)
* qrevert:
* Don't revert entire directory if only one file within it is selected.
(Bug #491212, Alexander Belchenko)
* qbranch:
* If a source URL is given on the command line, focus is set to
the To field.
* The To location is now intelligently set based on the source URL.
(#318214, Ian Clatworthy)
* qexport:
* Fixed NameError when invoked with directory location argument.
(Bug #491702, Alexander Belchenko)
* qconfig:
* Properly save data in empty qbzr.conf. (Bug #493634, Alexander Belchenko)
* New translations added: Arabic, Czech, Danish, English (United Kingdom).
0.16 "Acacia" - 2009/11/9
-------------------------
What's new in this release:
* qswitch:
* Added support for --create-branch option to "bzr switch". (A. S. Budden)
* SubprocessUIFactory and QUIFactory now both support get_username, and
get_boolean. (Bug #421851, Gary van der Merwe)
* Save the size of Dialogs when the user press Esc. (Bug #417809,
Gary van der Merwe)
* qlog:
* Get the max main_line digets in a different way so that we don't break
--no-graph. (Bug #455867, Gary van der Merwe)
* Corrected the margin for the revision number column. (Gary van der Merwe)
* When loading the file list delta, only lock the repositories that are
being used. If the 2 trees are from the same repositories, load them
together. (Gary van der Merwe)
* When viewing a svn repo, only show the file list if 1 revision is selected,
and if so, use a optimized method to do so. (Bug #450225,
Gary van der Merwe)
* Show a throbber above the file list while a delta is being loaded.
(Gary van der Merwe)
* Fix a bug when refreshing a branch with revisions that have been removed.
(Bug #435486, Gary van der Merwe)
* qlog/qannotate:
* Preserve leading whitespace in the lines of the log message.
(Max Bowsher)
* qadd:
* Don't show unchanged directories that contain ignored files.
(Bug #462435, Gary van der Merwe)
* qcommit, qadd, qrevert:
* Directoies with 4 or more sub items are grouped in the tree view.
(Bug #456198, Gary van der Merwe)
* Correct the old path shown for renamed files. (Bug #432572,
Gary van der Merwe)
* Passing a directory via the command line now correctly checks the
directory. (Bug #435034, Gary van der Merwe)
* For qcommit, It is now possible to select unversioned file and directories
via the command line. (Gary van der Merwe)
* Automaticly expand to the check items on load. (Gary van der Merwe)
* Fix View for unversoined files when run from a sub directory of the
working tree. (Gary van der Merwe)
* qcommit/qbrowse:
* Conflicts are shown in the status column. External merge applications
can be launched to resolve these conflicts, and the conflicts can be
marked as merged. (Bug #174509, Gary van der Merwe)
* Improved the usibility of the context menu add, and revert actions.
These now directly use the api, rather than via subprocess. There is
now no prompt for add. With large trees, there is less flicker when the
tree is refreshed, and the scroll position is remembered.
(Gary van der Merwe)
* It is now possible to rename and move files or directories, and to mark
files or directories that have already been renamed or moved as such.
(Gary van der Merwe)
* It is now possible to remove files from the branch. (Gary van der Merwe)
* Show blank icon for missing files. (Bug #418471, Gary van der Merwe)
* qcommit/uncommit:
* Catch AttributeError in save of commit_data during qcommit and/or uncommit
in lightweight checkout from branch accessed via smart-server
(lp:, bzr+ssh://, bzr:// etc).
(Bug #434034 Bug #430382 Bug #463296, Alexander Belchenko)
* qsubprocess:
* Show actual command-line to user when we invoke action via qsubprocess.
(Bug #476025, Alexander Belchenko)
* qcommit:
* Don't run `bzr add --no-recurse` before commit if there is nothing to add.
(Alexander Belchenko)
* qplugins:
* Format plugin version nicely even if it does not follow bzr standards on
version_info tuple. (Bug #475286, Alexander Belchenko)
0.15 "Yellow and green" - 2009-10-19
------------------------------------
What's new in this release:
* Compatible with bzr >= 1.17 (works fine with 2.0.x and 2.1.x series).
* New qrun dialog to launch any (non-interactive) bzr command.
* Improved speed of qcat, qdiff, qlog.
* Added Browse button for editor selection in qconfig.
* qconflicts: Enable multiple selections of conflict items to resolve
or launch merge tool for them.
* qgetupdates and qupdate dialogs now properly support all 3 cases:
* update tree
* update bound branch
* update lightweight checkout
* qlog can display foreign revision info if available.
* Sort tags alphabeticaly and case-insensitive in qtag dialog.
* qexport now has sensible defaults and more user-friendly archive
types (e.g. tar.gz instead of tgz) displayed in the combo box.
On windows, the default archive type is now zip as well.
* And more than 37 bugfixes (plus all critical bugfixes from 0.14.x releases).
Detailed changelog:
* Compatible with bzr >= 1.17 (works fine with 2.0.x and 2.1.x series).
* Internal:
* Install QUIFactory after we have properly initialize QApplication.
(#430232, John Arbash Meinel)
* Better compatibility of qbzr test suite with bzr 2.1.
(#433843, Vincent Ladeuil)
* Use unicode('.') everywhere as current directory marker. (Naoki INADA)
* Don't bundle PyQt4 and Pygments libs to Windows installer anymore.
(Alexander Belchenko)
* Get rid of old-style classes to be compatible with PyQt 4.6.
(#447214)
* New dialog:
* qrun (Alexander Belchenko)
* qadd:
* Properly support adding unversioned files to newly added directory.
(#418520, Gary van der Merwe)
* qbind/qunbind:
* Show Close, not Ok/Cancel, on completion. (#449489, Ian Clatworthy)
* qcat:
* Improve speed of syntax highlighting. (#442965, Atsuo Ishimoto)
* qconfig:
* Added Browse button for editor selection. (#430192, Alexander Belchenko)
* qconflicts:
* Enable multiple selections of conflict items to resolve or launch merge
tool for them. (#415393, Craig Hewetson)
* qdiff:
* More responsive dialog during diff loading. (Gary van der Merwe)
* Better support for external diff tools.
(#422688, #423221, Gary van der Merwe)
* qgetupdates:
* Now able to update lightweight checkouts. (Alexander Belchenko)
* qlog:
* More responsive dialog during revision loading. (Gary van der Merwe)
* Faster qlog on directory. (Gary van der Merwe)
* Show the revision html, and file delta for all selected revisions.
(#412029, Gary van der Merwe)
* Don't show the throbber when loading revisions from a remote repo
to avoid weird behavior. (#412894, Gary van der Merwe)
* Fixed regression with --no-graph feature. (#448232, Craig Hewetson)
* Display foreign revision info if available.
(John Szakmeister, Gary van der Merwe)
* Auto-adjust revno column to the number of digits in latest revno
on mainline. (#450179, Gary van der Merwe)
* qpull/qpush:
* Don't remember location by default. (Alexander Belchenko)
* qsubprocess:
* New command-line option --bencode to use bencoded command list.
(#392920, Alexander Belchenko)
* Very long command-line passed to qsubprocess via temp file
regardless of platform. (#387320, Alexander Belchenko)
* qtag:
* Sort tags alphabeticaly and case-insensitive. (#423075, Craig Hewetson)