This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathNEWS
1074 lines (698 loc) · 30 KB
/
NEWS
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
2013-6-4 meld 1.7.3
===================
Features:
* Support launching conflict comparisons from Subversion (Louis des
Landes)
* The external text editor setting now supports opening files at a
particular line number (Konstantin Starojitski)
* A host of minor improvements to the version control UI, including:
* Add a new Push action for VC modules, currently supported in Git (Kai
Willadsen)
* Show a summary of unpushed commits, currently supported in Git (Kai
Willadsen)
* Reworked commit dialog, including more details about files to be
committed and more useful previous-log selection (Kai Willadsen)
* Console output for VC comparisons is now formatted to better
distinguish commands, output and errors (Kai Willadsen)
* Support better sensitivity handling in VC comparisons, currently
implemented by Git (Kai Willadsen)
* Sundry minor UI improvements:
* Much HIG-ification and better wording for actions, dialogs and
labels (Kai Willadsen, with diligent bug reporting from Adam Dingle)
* Make columns user-resizable in version control and folder comparisons
(Kai Willadsen)
* There is now a Save All action, to save all modified files in the
current comparison (Kai Willadsen)
* Rather than giving up on long inline-highlighting comparisons, Meld
now prompts to continue the comparison (Kai Willadsen)
* F5 is now a additional shortcut for Refresh (Kai Willadsen)
* Reload has been renamed to Revert and its UI has been improved for
file comparisons (Kai Willadsen)
Fixes:
* Version control updates and miscellaneous fixes (Dominique Leuenberger,
Louis des Landes, Timothy Babych, Kai Willadsen)
* When guessing file types for syntax highlighting, we now use file
contents as well as extension (Kai Willadsen)
* Prev/Next Change navigation now centres changes slightly more
aggressively (Kai Willadsen)
Translations:
* Daniel Mustieles (es)
* Gabor Kelemen (hu)
* Inaki Larranaga Murgoitio (eu)
* Jiro Matsuzawa (ja)
* Marek Černocký (cs)
* Martin Srebotnjak (sl)
* Matej Urbančič (sl)
* Pere Orga (ca)
* Piotr Drąg (pl)
* Rafael Ferreira (pt_BR)
* Мирослав Николић (sr, sr@latin)
2013-4-16 meld 1.7.2
====================
Features:
* In version control view, conflicts now open in a three-way merge mode
for Bazaar and Git, with other VCs to follow (Louis des Landes)
* Manual synchronisation of split points for comparisons (Piotr Piastucki,
Kai Willadsen)
* The "Ignore blank lines" setting is now used in folder comparisons, in
same manner as text filters (Kai Willadsen)
Fixes:
* Many minor Windows compatibility fixes (Vincent Legoll, Robert Wahler,
Kai Willadsen)
* Version control compatibility updates and fixes (Manuel Siggen, Kai
Willadsen)
* Better handling of Unicode filenames (Kai Willadsen)
* Better support for cross-platform newline behaviour, particularly on
Windows (Kai Willadsen)
* Sensitivity fixes for file and folder comparisons (Kai Willadsen)
* Build and installation fixes (Kalev Lember, Kai Willadsen)
Translations:
* Daniel Mustieles (es)
* Gabor Kelemen (hu)
* Marek Černocký (cs)
* Martin Srebotnjak (sl).
* Matej Urbančič (sl)
* Мирослав Николић (sr, sr@latin)
* Piotr Drąg (pl)
* Rafael Ferreira (pt_BR)
2013-2-28 meld 1.7.1
====================
Features:
* Folder comparisons can now show extra information, such as file size and
modification times. Column visibility and ordering are properly
configurable. (Philipp Müller, Kai Willadsen)
* Shallow comparison (i.e., based on size and timestamp) are now supported
for folder comparisons, including timestamp resolution preferences for
cross-filesystem comparisons. (Cristian Dinu)
* The UI for launching new comparisons has been reworked to have a clearer
workflow, and is now shown on startup if no other comparisons have been
opened (Kai Willadsen)
* Recently-used comparisons are now supported, allowing you to re-open
previous comparisons directly. (Kai Willadsen)
* Read-only files are now not editable by default, making merge actions
clearer and more consistent. Individual read-only files can easily be set
as editable as desired. (Kai Willadsen)
Fixes:
* New version control API, currently used by Git and Subversion (Kai
Willadsen)
* Version control compatibility updates and fixes (Cedric Le Dillau, Louis
des Landes, Kai Willadsen)
* Command line labelling options now apply to folder tabs (Kai Willadsen)
* Regressions from parallel inline highlighting calculations have been
fixed (Kai Willadsen)
* Diff algorithm cleanups (Piotr Piastucki)
* Compatibility fixes for Python 3; this does *not* mean that Meld works on
Python 3 yet, just that 2to3 issues have been addressed (Kai Willadsen)
Translations:
* Daniel Mustieles (es)
* Dominique Leuenberger (pt)
* Enrico Nicoletto (pt_BR)
* Florencio Neves (pt_BR)
* Fran Diéguez (gl)
* Marek Černocký (cs)
* Matej Urbančič (sl)
* Мирослав Николић (sr, sr@latin)
* Piotr Drąg (pl)
2012-11-07 meld 1.7.0
=====================
Features:
* File comparisons are faster! Meld now has a smarter pre-processing step
for inline highlighting of differences (Piotr Piastucki) and does its
highlighting calculations asynchronously (Kai Willadsen), leading to
better overall performance and interactivity.
* Auto-merge mode is now available from the command-line (Piotr Piastucki)
* Comparisons can be opened in new tabs (rather than in a new window) from
the command line (Kacper Wysocki, Antoine, Kai Willadsen)
* Custom colours can now be configured for all Meld drawing (Kai Willadsen)
Fixes:
* Improved behaviour when opening many tabs at once (Peter Tyser)
* Notification of searches wrapping around the buffer (Philipp Müller)
* Better compatibility with non-standard keyboard layouts (Stephan Hilb)
* Better error reporting for failed VC comparisons (Kai Willadsen)
* Version control compatibility updates and fixes (Jan Danielsson, Tim
Babych, Kai Willadsen)
* Other miscellaneous bug fixes (Jeff Oliver, Pacho Ramos, Rainer Suhm, Kai
Willadsen)
Translations:
* Alexandre Franke (fr)
* Daniel Mustieles (es)
* Fran Diéguez (gl)
* Gabor Kelemen (hu)
* Matej Urbančič (sl)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Martin Srebotnjak (sl)
* Мирослав Николић (sr, sr@latin)
* Piotr Drąg (pl)
2012-4-28 meld 1.6.0
====================
Fixes:
* Fix cursor location handling when our tree models change (Kai Willadsen)
Translation updates:
* Bruno Brouard (fr)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Fran Diéguez (gl)
* Marek Černocký (cs)
* Matej Urbančič (sl)
* Piotr Drąg (pl)
2012-4-3 meld 1.5.4
====================
Fixes:
* Slightly faster diff calculation (Piotr Piastucki)
* Avoid too-tall commit dialogues (Nguyễn Hồng Quân)
* Minor bug fixes and performance improvments (Kai Willadsen)
Translation updates:
* Alexander Shopov (bg)
* Fran Diéguez (gl)
* Kjartan Maraas (nb)
* Kristjan SCHMIDT (eo)
* Nguyễn Thái Ngọc Duy (vi)
* Toshiharu Kudoh (ja)
* Trương Ứng Minh (vi)
* Мирослав Николић (sr) (sr@latin)
2012-1-27 meld 1.5.3
====================
New features:
* Add simple animations for chunk actions to make it easier to follow the
result of insertion and deletion actions (Kai Willadsen)
* Show the currently displayed page area in the side bars (Kai Willadsen)
Fixes:
* Don't show links between chunks where one of the chunks is completely
off-screen, reducing visual clutter (Kai Willadsen)
* Syntax highlighting will now assume that all files in a comparison are
of the same type if we can't determine otherwise (Kai Willadsen)
* Some fixes to colour usage and legibility for dark themes, with more
theme fixes coming soon (Kai Willadsen)
* Remember active filters across sessions in directory and VC comparions
(Kai Willadsen)
* Guess which version control system a user is most likely to want to see,
in the event of multiple VCs in a single working copy (Kai Willadsen)
* Work with Subversion 1.7 (Kai Willadsen)
* Many sundry bug fixes (Aaron Schrab, Julian Taylor, Kai Willadsen)
Translation updates:
* Bruno Brouard (fr)
* Christian Kirbach (de)
* Daniel Mustieles (es)
* Fran Dieguez (gl)
* Gabriel Speckhahn (pt_BR)
* Jiro Matsuzawa (ja)
* Jorge González (es)
* Marcin Floryan (pl)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Petr Kovar (cs)
* Piotr Drąg (pl)
* Takeshi AIHANA (ja)
* Yuri Myasoedov (ru)
2011-7-24 meld 1.5.2
=====================
New features:
* Add a new menu item and shortcut for switching between panes in
file comparisons (Kai Willadsen)
* Support type-ahead search in version control views (Oliver Gerlich)
Fixes:
* Non-editable files are now handled properly when doing sensitivity
setting of change actions, and actions on the central change bar are
presented accordingly (Piotr Piastucki, Kai Willadsen)
* Fix incorrect comparison display in files containing FF or NEL linebreak
literals (Kai Willadsen)
* Updates to the Fossil version control support (Jan Danielsson)
* Use faster validity check for Bazaar repositories (Kai Willadsen)
* Many minor updates and other fixes (Tomasz Bury, Alan Horkan,
Julian Taylor, Kai Willadsen)
Translation updates:
* Bruno Brouard (fr)
* Daniel Mustieles (es)
* Daniel Nylander (sv)
* Jorge González (es)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Мирослав Николић (sr, sr@latin)
2011-3-20 meld 1.5.1
=====================
New features:
* Add menu items and keyboard shortcuts for version control and directory
comparison actions (Kai Willadsen)
* Add support for the Fossil SCM (Jan Danielsson)
* Add a menu for switching between tabs (Kai Willadsen)
* Add a menu item to unlock scrolling (Kai Willadsen)
Code changes and fixes:
* Improve filter handling with inline error reporting in the preference
pane, and correct refreshing of file and directory comparisons on filter
changes (Kai Willadsen)
* Make line number display work with GtkSourceView 2.10+ (Piotr Piastucki)
* Support external diff tools in subversion (Cedric Le Dillau)
* Support CVSNT as a CVS alternative (Kai Willadsen)
* Performance fixes for subversion and bazaar (Tristan Hill, Kirill Müller)
* Correctly update a modified file's status in git and svn version control
views (Peter Tyser)
* Make temporary files unwritable to avoid unintentionally editing them
(Peter Tyser)
* Clean up diff results for cleaner comparisons (Piotr Piastucki)
* Improve symlink and binary handling, and error cases for directory
comparisons (Kai Willadsen)
* Improve copy semantics for directories and symlinks (Kai Willadsen)
* Show case insensitivity and file encoding errors less intrusively (Kai
Willadsen)
* Sundry bug fixes (Kai Willadsen, Piotr Piastucki)
Translation updates:
* Bruno Brouard (fr)
* Claude Paroz (fr)
* Daniel Mustieles (es)
* Joe Hansen (da)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Miroslav Nikolić (sr)
* Petr Kovar (cs)
* Takeshi AIHANA (ja)
2010-12-27 meld 1.5.0
=====================
New features:
* Use MyersSequenceMatcher by default (matcher from Piotr Piastucki)
* Add a "Show whitespace" preference (Jon Dufresne)
* Add "Copy change above/below left/right" actions (Kai Willadsen)
* Add Alt+Up/Down as shortcuts for previous/next change (Kai Willadsen)
* Add previous/next conflict actions (Kai Willadsen)
* Patch creation can now create reverse patches, and can choose between
panes in a three-way comparison (Kai Willadsen)
* Add a --output option for specifying where to save a merge result
(Kai Willadsen)
Code changes and fixes:
* Require Python 2.5, Gtk+/PyGtk 2.14, PyGtkSourceView 2.4 (optional)
* Port to gtk.Builder and gtk.IconTheme (Kai Willadsen)
* Remove gnome-vfs usage (Kai Willadsen)
* Portability fixes (Thomas Klausner)
* Build fixes (Helmut Jarausch)
* Add a man page (Peter Tyser)
* Put preferences fallback in XDG-compliant location (Kai Willadsen)
* Fix Undo/Redo with unicode text (Kai Willadsen)
* Handle unicode linebreaks (Kai Willadsen)
Translation updates:
* Bruno Brouard (fr)
* Carles Ferrando (ca@valencia)
* Claude Paroz (fr)
* Gabor Kelemen (hu)
* Joe Hansen (da)
* Jorge González (es)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Petr Kovar (cs)
2010-09-27 meld-1.4.0
=====================
* Fix committing with RCS (Iuri Diniz)
* Fix compatibility with old PyGObject (Kai Willadsen)
* Translation updates:
hu (Gabor Kelemen)
2010-09-09 meld-1.3.3
=====================
* Highlight currently focused change (Kai Willadsen)
* Add ability to check if version control repos are valid (Peter Tyser)
* Support multiple-file undo/redo operations after save (Kai Willadsen)
* Performance improvements, bug fixes and sundry contributions
(Piotr Piastucki, Alexander Smishlajev, Robert Wahler, Kai Willadsen)
* Translation updates:
de (Mario Blättermann), es (Jorge González), fr (Bruno Brouard),
ja (Takeshi AIHANA), sl (Matej Urbančič), zh_CN (Tao Wang)
2010-06-20 meld-1.3.2
=====================
* Add keyboard merging support (Kai Willadsen)
* Add support for bulk change merging (Piotr Piastucki)
* Add auto-merge with ancestor mode; please note that this can currently
only be started from the commandline (Piotr Piastucki)
* Updates to VC support, including lots of git fixes (Peter Tyser and
others)
* UI cleanups, including a cleaner Preferences dialog, and message areas
for most error reporting (Kai Willadsen)
* Plenty of miscellaneous bug fixes (Didier Roche, Geoffrey Irving,
Kai Willadsen, Martyn Thomas, Peter Tyser, Piotr Piastucki)
* Translation updates:
cs (Petr Kovar), de (Holger Wansing, Mario Blättermann), es (Jorge
González), fr (Bruno Brouard, Claude Paroz), gl (Enrique Estévez, Fran
Diéguez), hu (Gabor Kelemen), it (Andrea Zagli), ja (Takeshi AIHANA),
pt_BR (Djavan Fagundes), sl (Matej Urbančič), sq (Besnik Bleta, Laurent
Dhima), sr@latin (Danilo Šegan), sv (Daniel Nylander), zh_CN (arccos,
Careone)
2009-08-14 meld-1.3.1
=====================
* Add svk support (Vincent Legoll)
* Add support for marking conflicts as resolved (Matthijs van de Water,
Vincent Legoll)
* Warp the text cursor to the start of jumped-to diff chunks (Vincent
Legoll)
* Allow toggling of toolbar and statusbar visibility, and add a fullscreen
option (Michael Budde, Stephen Kennedy, Kai Willadsen)
* Improved change merging and conflict resolution (Piotr Piastucki)
* Speed up file comparisons and highlighting, significantly improving
interactive editing performance (Kai Willadsen, Piotr Piastucki)
* Meld has a shiny new application icon (Josef Vybíral)
2009-04-17 meld-1.3.0
=====================
* Minimum requirements are pygobject 2.8 and python 2.4
* Find dialog replaced with find bar with replace functionality
* Remove gnome dependencies (Kai Willadsen, Vincent Legoll)
Meld now runs on win32 (experimental).
* Many ui tweaks and cleanups (Kai Willadsen, Vincent Legoll)
* Support for multiple sourceview versions (Vincent Legoll)
* Updated version control support
* Multiple VCs in a single directory (Vincent Legoll)
* Subversion 1.6.x (Vincent Legoll)
* Add RCS support (Oliver Gerlich, Vincent Legoll)
* Add Codeville support (Vincent Legoll)
2008-11-23 meld-1.2.1
=====================
* Pygtk version 2.8 now required
* Port to gtk.UIManager (Kai Willadsen)
* Handle spaces in svn paths (Neil Mayhew)
* Command-line auto-compare all option on startup (Ondrej Novy)
* Command-line can launch several comparisons (Brian Holmes)
* Several UI tweaks (better focus behavior, better defaults)
2008-06-26 meld-1.2
=======================
* Improve tab rendering (Kai Willadsen)
* Speedup folder comparison massively for large directories.
* Fix crasher i18n bug (Kai Willadsen)
* UI tweaks and cleanups (Tom Baugis, Kai Willadsen)
* Cleanup vc library redundancy (Vincent Legoll)
* Various version control fixes.
2007-06-12 meld-1.1.5.1
=======================
* Do not ship .svn folders in tarball
2007-06-09 meld-1.1.5
=====================
* Handle new version contol command line arguments.
* CLI option to set the tab labels. Bug 138860.
* Improve mime type detection from Tomasz Bury. Bug 156137.
* Hold shift when scrolling to scroll the panes independently.
* File & folder history now saved from Sam Jacobson.
* Several small ui improvements.
2006-06-10 meld-1.1.4
=====================
* Refresh and reload buttons.
* Better context menu behaviour for vcview.
* Allow escaping of shell patterns. (Patch from Jared Sulem)
* Stop button sensitive only when needed.
* Added ignore symlinks option for folder comparisons.
* Various vc and other minor patches.
2006-01-29 meld-1.1.3
=====================
* Arch support updates (Ali Afshar)
* Sync scroll works, even with word wrap Bug 326648
* Use shutil.copy2 so [am]time is copied.
Suggestion from Eric Firing
* Monotone support. Patch from Daniel Thompson.
* Handle -h,-v command line options correctly. Bug 321634
2005-11-08 meld-1.1.2
=====================
* Add bzr support. Patch from Aaron Bentley.
* Fix missing file attributes in dirdiff statusbar.
* Hide pygtk 2.6 -> 2.8 deprecation warnings.
2005-10-26 meld-1.1.1
=====================
* Now require pygtk-2.6+ and remove deprecation warnings
from previous versions. Use new filechooser.
* New pluggable version control system.
* New drawing code makes filediff much prettier.
* Detect resolved cvs conflicts. Bug 308937
2005-10-25 meld-1.1.0
=====================
* Faulty release removed.
2005-08-12 meld-1.0.1
=====================
* Translation plural form fixes. Bug 309408.
* Hide deprecation warnings. Bug 310077.
* Updated translations.
Takeshi AIHANA(jp.po) Miloslav Trmac(cs.po)
Dongsu Jang(ko.po) Alexander Shopov(bg.po)
Vincent van Adrighem(nl.po)
2005-07-01 meld-1.0.0
=====================
* Added quick patch viewer via filediff context menu
* Smarter abbreviation for tab labels.
* Add svn directory hide rule. Bug 306093.
* Fix inline highlighting for non-ascii encodings. Bug 304988.
* Fix incorrect conflict detection. Bug 308833.
* Fix some i18n issues in the source. Thanks to
Benoît DEJEAN, Danilo Segan and Christian Rose.
* Many updated translations since 0.9.6
Frank Arnold(de.po) Alexey Rusakov(ru.po)
Woodman Tuen(zh_TW.po) Jorge Gonzalez(es.po)
Christian Rose(sv.po) Adam Weinberger(en_CA.po)
Benoît DEJEAN(fr.po) Alexander Shopov(bg.po)
2005-05-18 meld-0.9.6
=====================
* Disable dirdiff hiding when tree is being filled. Bug 160211.
* Remove and disable multiline text filters. Bug 162688.
* Updated to work with libglade2.4.1
* Fix svn parse error. Bug 165079.
* Improve regex matching. Bug 172194.
* "meld <svn file>" works like cvs. Bug 169986.
* Fix filediff line crossing. Bug 171788.
* Fix "ignore blank lines" option breaks merge buttons. Bug 168010.
2004-12-10 meld-0.9.5
=====================
* New docbook based user guide
* Can use either pygtksourceview (preferred) or pysourceview
Fixed minor issues related to sourceview.
* Can now compare files with different encodings
* SVN browser is not confused by unversioned directories
* SVN browser sorts by filename, not version number.
* Minor cosmetic fixes and typos in strings fixed
2004-07-15 meld-0.9.4
=====================
* Regular expression for ignore patterns in file diff.
* Ignore blank lines option
* Misc CVS and SVN fixes.
* Compatibility restored for python2.2
* Up/Down buttons now work in directory/cvs/svn view.
2004-04-26 meld-0.9.3
=====================
* Added line numbers and syntax highlighting. (Requires pygtksourceview)
* Subversion support. (Patch from Adam Muegge).
* New status bar shows permissions and dates in dirdiff, shows
line/column in filediff.
* Better focus behaviour when switching betweeen tabs.
* Works with pygtk-2.3.92
2004-02-23 meld-0.9.2.1
=======================
* Bugfix release to fix broken install
* Fix float->int conversion warning for python2.3
2004-02-11 meld-0.9.2
=====================
* Many translations added and updated. Thanks to the gnome translation
team. Benoît Dejean (French), Danilo Šegan (Serbian), Duarte Loreto
(Portuguese), Miloslav Trmac (Czech), Daniel van Eeden, Kees van den
Broek (Dutch), Dongsu Jang (Korean)
* Differences within a line are now highlighted.
* Meld can now launch an external editor.
* CVS console state is remembered.
* Text search now works for multibyte character sets.
* Now using bugzilla.gnome.org for bug tracking
* Added keyboard navigation for directory diffs.
* Work around some pango/gtk font rendering issues where monospaced fonts
are not monospaced vertically. (Most noticibly non breaking spaces)
2003-11-22 meld-0.9.1
=====================
* i18n support working, french translation added. Thanks to Benoit Dejean.
* CVS 'all files appear modified' when LANG is set fixed.
* Fix race condition which could lead to empty CVS patches.
* Timestamp differences now ignored for directory diff.
* Fix 'both horizontal' toolbar style. (GNOME changed the spelling)
* CVS refresh now actually refreshes.
* Filename filters used to treat *.x as *.x*. Fixed.
* 'Filter New' button now works.
* Universal newline support added (python2.3 only)
* Text now saved with the same codec as it was loaded with.
* App quit handling has changed to be more friendly.
* Install and uninstall targets added to makefile.
* CVS console scroll behaviour is better.
2003-10-12 meld-0.9.0
=====================
* Completely reworked preferences.
* Editor for file name filters
* Editor for regular expression filters
* New CVS options.
* Added CVS console.
* CVS view now uses .cvsignore and has a better Entries parser.
* Allow long running operations to be interrupted.
2003-08-31 meld-0.8.5
=====================
* Fix warnings for python2.3
* Add user definable dirdiff filters. (see manual)
* CVS Context menu for common ops.
* CVS Partial tree refreshing.
* Better parsing of CVS/Entries
* CVS updates status when files are edited.
* Dirdiff now has case insensitive option.
* CVS warns if the patch is empty.
* Fix CVS modification times when UTC != localtime.
Thanks to and Martin Pool (report+patch) and Mike Grant (report)
* Initial i18n support.
* Dirdiff speedup by using filecmp instead of homegrown function.
Thanks to Benoit Dejean.
2003-07-28 meld-0.8.4
=====================
* add missing pixmap from 0.8.3 release
* add search function
2003-07-24 meld-0.8.3
=====================
* Add margin clicking to directory view.
* Consider files ending in '~' to be backups. RFE From Beniot Dejean.
* Added margin diffmap guides
* Add emblem for newest file in directory view
* Add copy,cut,paste.
* Modified files are checked to save by default.
* Added context menu to save/save as from filediff
* Add parent to dialogs. Improves window manager interaction.
* Poup new.. now behaves like normal popups.
2003-06-21 meld-0.8.2
=====================
* Added filters for directory view.
* Added toolbar for directory view.
* Added icons to notebook tabs.
* Added coloured folder icons.
* Fix bugs 746983 and 753815 recursive copy and delete.
* Escape tree labels to avoid problems with filenames containing '&'
2003-05-19 meld-0.8.1
=====================
* The interface has been made much more responsive using a new task
scheduler based on Python generators and idle callbacks.
* Directory diff searches for all differences recursively for you.
* Incremental filediff loader lets you see files as they load.
* Filediff loader lets you choose the order of codecs tried.
* Diffs now update as you type instead of after a small delay.
* CVS browser now usable when the application current directory is not
inside the CVS tree.
* meld 'file' now shows cvs diff without having to open a cvs browser
* better focus behaviour for filediff.
* Right click on a tab now brings up a tab menu.
* Some Gnome HIG dialog alterations.
2003-03-24 meld-0.8.0
=====================
* Never released.
2003-03-24 meld-0.7.9
=====================
* Diff update is now incremental; That is updates happen on each
keypress instead of after a short timeout. This makes meld usable
on large files with many differences.
* Much better loading interaction. The text is immediately visible
and scrollable - the diffs are computed in an idle callback.
* CVS browser should now be considered beta not alpha. It works
with any location without needing to run 'meld .'
* Right click on the tabs now pops up a tab menu.
2003-03-24 meld-0.7.1
=====================
* Added more colourful filediff.
* Click in margin scrolls to that point. (suggestion from Alexander Dreweke)
* Allow CVS diff for a single file from the command line.
* Do not refresh filelist when launching diff.
* Add a fallback font if 'monospace' is not available. (patch from Ross Burton)
* Better handling of keyboard focus
* Added version checking to main script.
* Added --profile option.
2003-03-24 meld-0.7.0
=====================
* cvsview: Added status, tag, rev, options and location fields.
* cvsview: Hide location when not in recurse mode.
* cvsview: Commit messages now work when containing shell metacharaters.
* filediff: Load files lazily for quicker feedback
* dirdiff: Added copy/delete/diff context menu.
* dirdiff: Reworked how dirdiff is presented.
2003-02-14 meld-0.6.6.1
=======================
* This fixes the bug where meld would fail to start if the toolbar
preferences were set to icons only.
2003-02-12 meld-0.6.6
=====================
* Many updates to preferences.
* You can now change font and tab size. Or use the default GNOME monospace font.
* Toolbar style is now changeable or can follow GNOME default.
2003-01-28 meld-0.6.4
=====================
* Fix bug where deep directories were not correctly handled
* Dont refresh cvs view every time we open a diff.
* Filebrowser focus now switches to next entry when an entry is activated.
* Allow unnamed buffers ("cut and paste" diffs)
2002-12-14 meld-0.6.3
=====================
* Meld can now edit non utf8 files by explicitly specifying the encoding.
* CVS browser now cleans up temporary files correctly.
* CVS browser shows currently executing actions.
* CVS browser commit dialog added.
* Added preferences dialog.
2002-11-26 meld-0.6.2
=====================
* Add missing pixmaps for directory diff.
* Set about dialog properties correctly.
* Fail if new style pygtk not present. (pygtk.require())
* Remove #! from non executable files.
* Set copyright correctly.
2002-11-12 meld-0.6.1
=====================
* Added colouring for modified/missing files in dirdiff.
* Added icons for dirdiff.
* Added new simple draw style.
2002-11-04 meld-0.6.0
=====================
* Ask to save modified files on exit.
* Added settings menu for linkmap drawing style.
* Added alpha directory differ.
* Directory and file comparison can dynamically switch from 1,2,3 panes.
* Toolbar made smaller.
2002-10-01 meld-0.5.4
=====================
* Make cvsview work when not called from the command line.
* Fix bug where deletes were not highlighted. Fix
bug where inserts were not clickable.
2002-09-27 meld-0.5.3
=====================
* Now works with both latest and older pygtk (Ross Burton).
* HIG patches (Ross Burton).
* Smarten up notebook labels.
* Fix bug where deletes were not highlighted.
* Fix bug where inserts were not clickable.
2002-08-18 meld-0.5.2
=====================