-
Notifications
You must be signed in to change notification settings - Fork 272
/
NEWS
2532 lines (1849 loc) · 80.8 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
2022-09-04 meld 3.22.0
======================
Fixes:
* Fix text filter changes on existing comparisons (Kai Willadsen)
* Build fixes (Kai Willadsen)
* Documentation updates (Kai Willadsen)
Translations:
* Anders Jonsson (sv)
* Emin Tufan Çetin (tr)
* Piotr Drąg (pl)
2022-08-14 meld 3.21.3
======================
Features:
* Add shortcut for open externally action (Kai Willadsen)
* Add improved tooltips for tab labels (Kai Willadsen)
Fixes:
* Move horizontal-icon menu section to regular menu items (Kai Willadsen)
* Fix chunk navigation actions sometimes not working after chunk push/pull
actions (Kai Willadsen)
* Show more parent context in path label display (Kai Willadsen)
* Update meson build to strip env from shebang line (Kai Willadsen)
* Fix left-click chunk actions under certain window managers (Dmytro Bagrii)
* Fix version control showing console windows on Windows (Kai Willadsen)
* Fix path label display for very long filenames (Kai Willadsen)
* CI fixes (Bartłomiej Piotrowski, Kai Willadsen)
* Issues fixed: #141, #496, #646, #658, #682, #692, #694, #697
Translations:
* Anders Jonsson (sv)
* Hugo Carvalho (pt)
* Jürgen Benvenuti (de)
* Piotr Drąg (pl)
* Sergej A (ru)
* Yuri Chornoivan (uk)
2022-06-18 meld 3.21.2
======================
Features:
* Folder comparison now supports compare differently-named files across
panes, by marking files for comparison (Helly Guo)
* Synchronization points are now significantly easier to use and more
robust, and have new user documentation (Roberto Vidal)
* Added option to ignore Unicode normalisation form differences when
comparing paths (Dan B)
* The files or folders being compared can now be swapped in two pane mode,
using the new View -> Swap left and right panes menu item (Helly Guo)
* Folder comparisons now show a "(scanning...)" indication in tree view
rows as an additional visual cue that the comparison is still running
(Kai Willadsen)
* Folder comparisons have a new optional ISO-format time column (Kai
Willadsen)
Fixes:
* Update icon usage to support stock icon removal from new Adwaita versions
(Jan Tojnar)
* Build fix for Meson 0.61.0 (Silvio Fricke)
* The new pathlabel widgets now support user-provided custom labels (Kai
Willadsen)
* Fix file selectors in folder comparisons to always open in the current
folder (Kai Willadsen)
* Using a custom save path (i.e., the --output flag) now sets a buffer as
modified, so that unchanged merges can be saved (Kai Willadsen)
* Comparing new or deleted rows in folder comparison now opens a two-pane
file comparisons for consistency (Kai Willadsen)
* Destructive dialog actions now have appropriate styling (Kai Willadsen)
* Invalid user settings for folder comparison columns are now handled more
gracefully (Kai Willadsen)
* The nightly flatpak build now includes Git to make version control
comparisons somewhat functional (Kai Willadsen)
* Issues fixed: #11, #85, #188, #319, #381, #475, #492, #581, #620, #638,
#645, #660, #662, #672
Translations:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Andre Klapper (ru)
* Asier Sarasua Garmendia (eu)
* Balázs Úr (hu)
* Boyuan Yang (zh_CN)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Hugo Carvalho (pt)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Jürgen Benvenuti (de)
* Kjell Cato Heskjestad (nb)
* Luming Zh (zh_CN)
* Luna Jernberg (sv)
* Marek Černocký (cs)
* Matej Urbančič (sl)
* Matheus Barbosa (pt_BR)
* Milo Casagrande (it)
* Piotr Drąg (pl)
* Roberto Vidal ()
* Sabri Ünal (tr)
* Sergej A (ru)
* sicklylife (ja)
* Yuri Chornoivan (uk)
* Мирослав Николић (sr)
2022-01-07 meld 3.21.1
======================
UI changes:
* A new custom per-pane location display widget replaces the standard GTK+
file chooser button and our existing placeholder path display, including
actions for opening containing folder and copying file paths (Kai
Willadsen)
* Version control comparison has had its action bar modernised in line with
file and folder comparison (Kai Willadsen)
Features:
* The find bar now remembers the previous search across panes (Jack)
* We show a warning to the user if they're trying to compare a file or
folder to itself (Jack)
* Meld no longer uses custom file chooser dialogs, improving portability
and flatpak behaviour (Mario Aichinger)
* Two pane comparisons now allow Alt+Right/Left to work in either pane
(Anatoli Babenia)
* Certain header bar actions (e.g., conflict navigation, filters) are now
only shown in their appropriate comparison types (Kai Willadsen)
* The application title no longer includes the per-comparison label (Kai
Willadsen)
* Add a preference for GTK's dark theme support (Kai Willadsen)
* Retain clipboard contents after exiting Meld (Kai Willadsen)
Fixes:
* Fix incorrect detection of FUSE directory comparisons as remote (mscdex)
* Fix "Open Externally" on Windows for paths with spaces (adam0antium)
* Fix syntax highlighting in version control by using the correct file
extension (Alan Suran)
* Move application icons into the resource bundle (Vasily Galkin)
* Improved error reporting for invalid change actions (Anatoli Babenia)
* Fix too-large minimum window size from status bar buttons (Kai Willadsen)
* Fix Subversion comparison on Python 3.9 (Kai Willadsen)
* Fix bad translation source strings with multiple arguments (Kai Willadsen)
* Fix performance regression in file comparison line splitting logic (Kai
Willadsen)
* Fix folder comparison sensitivity breaking when cancelling a scan (Kai
Willadsen)
* Fix occasional traceback when closing comparisons (Kai Willadsen)
* Fix orphaned comparison helper process when quitting (Kai Willadsen)
* Minor UI fixes:
* Fix About dialog URL (TotalCaesar659)
* Update About dialog copyright (Kai Willadsen)
* The new comparison page now better distinguishes the "Compare" and
"Blank Comparison" actions (Kai Willadsen)
* The comparison overview map is now more responsive when dragging (Kai
Willadsen)
* The find bar now waits briefly before searching to improve
responsiveness (Kai Willadsen)
* The find bar no longer hides when it loses focus (Kai Willadsen)
* Allow preferences dialog to be resized (Kai Willadsen)
* Main menu can now be activated with F10
* Find next/previous can now be activated with F3/Shift+F3 (Kai Willadsen)
* Windows fixes:
* Add a MeldConsole.exe executable for running Meld from the console (Kai
Willadsen)
* Update Windows build to force all-users installation (Kai Willadsen)
* Improve default monospace font on Windows (Kai Willadsen)
* Fix empty line height and fallback fonts by changing the Pango font
backend to fontconfig on Windows (Kai Willadsen)
* Add Meld's install directory to the Windows PATH (Kai Willadsen)
* Add a basic GTK settings.ini for Windows builds (Kai Willadsen)
* Add the Meld icon to the Windows add/remove programs UI (Kai Willadsen)
* Fix file comparison holding a directory handle after close (Kai
Willadsen)
* Issues fixed: 25, 91, 143, 354, 433, 445, 453, 459, 477, 482, 488, 491,
499, 502, 526, 530, 539, 541, 557, 561, 564, 565, 571, 579, 590, 603
Internal changes:
* Modernise and improve the new Meson build rules (Iñigo Martínez)
* CI + build improvements (Jason Edson, Jordan Petridis, Vasily Galkin, Kai
Willadsen)
* Nightly Meld builds now use the standard nightly icon styling (Kai
Willadsen)
* Clarify licensing in appdata (Kai Willadsen)
* Windows build fixes (Kai Willadsen)
* Add documentation on hosting infrastructure (Kai Willadsen)
Translations:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Asier Sarasua Garmendia (eu)
* Ask Hjorth Larsen (da)
* Balázs Úr (hu)
* Christian Kirbach (de)
* Clay Stan (zh_CN)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Dz Chen (zh_CN)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Hugo Carvalho (pt)
* Jiri Grönroos (fi)
* Jordi Mas (ca)
* Julien Hardelin (fr)
* Luna Jernberg (sv)
* Marek Černocký (cs)
* Matej Urbančič (sl)
* Muhammet Kara (tr)
* Philipp Kiemle (de)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Rodrigo Lledó (es)
* Yi-Jyun Pan (zh_TW)
* Yuri Chornoivan (uk)
* Мирослав Николић (sr)
2020-04-19 meld 3.21.0
======================
UI changes:
* Move to a modern GTK headerbar-based design, including:
* More extensive action support in the header bar
* New comparison overview map widget that provides a clearer overview for
multiple panes at once, and allows for more natural scrollbar
positioning (Kai Willadsen)
* Text, filename and version filters are now all accessible from the
toolbar (Kai Willadsen)
* Refreshed find bar that more closely matches other applications (Kai
Willadsen)
* Remove application menu in line with Initiatives#4 (Kai Willadsen)
* New recent comparison selection widget (Kai Willadsen)
* Change tab style to be full-width and hidden for single tab windows (Kai
Willadsen)
* Make file comparison change navigation more intuitive by changing how it
decides where to scroll from (Heikki Ketoharju)
* Completely refreshed Meld application icon (Alex Monday)
* File comparison now has overscroll at the bottom of file comparisons,
making it easier to see end-of-file differences and improving scroll
syncing (Kai Willadsen)
* Text wrapping, whitespace, line numbers and line highlight can now all be
toggled from the file comparison status bar (Kai Willadsen)
Features:
* Add support for CVS in version control comparisons (gitqlt)
* Copy selected file paths in folder comparison (WenGuoyao)
* Improve dark theme detection so custom Meld highlighting better matches
the user's theme (Kai Willadsen)
* Meld's built-in GtkSourceView schemes now support syntax highlighting
(Kai Willadsen)
* Moving past the first or last change using our change navigation now
alerts with the standard error bell (Kai Willadsen)
* Support nightly Flatpak builds of Meld using GNOME's CI (Kai Willadsen)
* Support development using GNOME Builder's workflow
Fixes:
* CI and build system fixes (Michael Behrisch, Frank Dana, Piotr Drąg, Vasily Galkin)
* Fix running uninstalled from non-project-base folder (Vasily Galkin)
* Fix file comparison closing after file save (Vasily Galkin)
* Fix file comparison handling of certain line breaks (Kai Willadsen)
* Fix folder comparison display of large file sizes (andre)
* Fix folder comparisons with pre-epoch timestamps (Kai Willadsen)
* Fix folder comparisons not handling ignore blank lines + text filters (Kai
Willadsen)
* Handle file deletion better on NFS mounts (Kai Willadsen)
* Fix handling of bad filter regular expressions (Kai Willadsen)
* Fix push action on missing changes in three way comparison (Kai Willadsen)
* Default file chooser encoding to autodetect (Kai Willadsen)
* Minor UI fixes:
* Statusbar now correctly sets default encoding & file type for empty
files (Kai Willadsen)
* Statusbar tries to keep a constant width for the cursor label (Kai
Willadsen)
* Folder comparisons set sensitivity correctly for empty rows (Kai
Willadsen)
* Give commit dialog message area a reasonable height (Kai Willadsen)
* Fix long file name wrapping in info bar notifications (Kai Willadsen)
* Fix long file name ellipsization in file comparisons (Kai Willadsen)
* Windows fixes:
* Fix crash when started with unexpected environment (Vasily Galkin)
* Fix dbus support for single-instance behaviour (Vasily Galkin)
* Fix internationalisation building from source (ThunderEX)
* Fix SVG icon display (Kai Willadsen)
* Support logging to a file on Windows for debugging (Kai Willadsen)
* Default file encoding to UTF-8 to avoid Windows-specific locale issues
(Kai Willadsen)
* Typo fixes (luzpaz)
* Localisation fixes (Piotr Drąg)
Internal changes:
* Add Meson build system support; setuptools is still supported for Windows
and Mac OS builds, but Linux distributions should switch to building with
Meson (Bilal Elmoussaoui, Kai Willadsen)
* Move from GtkUIManager to GAction-based actions
* Move all UI-file-constructed widgets from custom Python wrapper classes
to using real GtkWidget templates
* Move UI templates, menus, custom icons and CSS to be resource-loaded
* Move to pre-commit using flake8 and isort for CI linting
* Move to new GtkSourceView 4 API
* Modernised Python GObject API usage, including signal and property usage
* Fix some deprecated GTK API usage
* Support Python 3.8
* Updated dependencies:
* Python 3.6
* GTK+ 3.20
* GLib 2.48
* GtkSourceView 4.0
* pygobject 3.30
* pycairo 1.15
* Issues fixed: 62, 78, 119, 170, 240, 265, 265, 267, 279, 290, 313, 314,
316, 321, 322, 337, 341, 342, 344, 344, 350, 351, 359, 419, 432, 439, 442,
451
Translations:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Asier Sarasua Garmendia (eu)
* Ask Hjorth Larsen (da)
* Balázs Meskó (hu)
* Balázs Úr (hu)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Emin Tufan Çetin (tr)
* Fran Dieguez (gl)
* Guillaume Bernard (fr)
* Jiri Grönroos (fi)
* Kukuh Syafaat (id)
* Marek Černocký (cs)
* Matej Urbančič (sl)
* Milo Casagrande (it)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Ryuta Fujii (ja)
* Sabri Ünal (tr)
* sicklylife (ja)
* Wolfgang Stöggl (de)
* Yuri Chornoivan (uk)
2019-01-06 meld 3.20.0
======================
Fixes:
* Add Enter as a Compare accelerator in folder comparisons (Kai Willadsen)
* Change entry and drag-n-drop file changes to confirm discarding modified
files instead of offering to save, for simplicity (Kai Willadsen)
* Fix menu sensitivity in folder comparisons (Kai Willadsen)
* Avoid dconf writes of no-op window size allocations (Kai Willadsen)
* Issues fixed: 247, 262
Translations:
* Emin Tufan Çetin (tr)
* Milo Casagrande (it)
* Rafael Fontenelle (pt_BR)
2018-11-21 meld 3.19.1
======================
Features:
* Support comparing remote files (Kai Willadsen; initial work by Chris Mayo)
* Significantly improve folder comparison performance when comparing large
trees (Hugo Sena Ribeiro)
* Improve folder comparison IO and memory use (Hugo Sena Ribeiro)
* Add recursive collapse/expand actions to folder comparisons (Jesus Arroyo)
* Add OARS metadata for software management (Nick Richards)
* Support file drag-and-drop directly on to textviews (Kai Willadsen)
* Refresh the application icon and add a processing pipeline (Kai Willadsen)
* Windows build improvements:
* Build using msys2 on GNOME Gitlab infrastructure and update to using
current GTK+ (Vasily Galkin)
* Add simple zip-based Windows build output to pipeline (Vasily Galkin)
* Improve Windows logging behaviour (Vasily Galkin)
* Help launching now works (Vasily Galkin)
* Shortcuts now work in non-English keyboard layouts (via GTK+)
* Windows paths are shortened correctly (Kai Willadsen)
Fixes:
* Next/Previous Change actions correctly account for text filters (Heikki
Ketoharju)
* Fix blank line ignoring in folder comparisons (Hugo Sena Ribeiro)
* Miscellaneous performance improvements (Hugo Sena Ribeiro)
* Fix initial focus pane for two-pane comparison (Kai Willadsen)
* Handle encoding failures on file load (Kai Willadsen)
* Fix surrogate problems in on-save encoding check (Kai Willadsen)
* Fix display of some encoding errors in folder comparisons (Kai Willadsen)
* Fix Git unpushed commit check for ambiguous filenames (Kai Willadsen)
* Fix committing a folder in Git (Kai Willadsen)
* Show errors for critical unhandled application failures, such as failed
saves (Kai Willadsen)
* Work around GTK+ shortcut activation issues; see GNOME/gtk#140 (Kai
Willadsen)
* Update Up/Down/Delete shortcuts to support numpad (Kai Willadsen)
* Fix copy-paste of GtkSourceView-highlighted text into Meld (Kai Willadsen)
* Don't open additional blank comparison tabs when using the --diff CLI
argument (Kai Willadsen)
* Fix installation on Mint (Kai Willadsen)
Internal changes:
* File comparisons and CLI argument handling now use Gio.File and support
URIs (Kai Willadsen; initial work by Chris Mayo)
* Many Python 3 deprecation cleanups (Claude Paroz)
* Rename icon/desktop/appdata for consistency with appid (Mathieu Bridon)
* Flatpak build updates (Mathieu Bridon, Kai Willadsen)
* Make XDG application ID match other application IDs (Kai Willadsen)
* Multiple pygobject/GTK+ deprecation cleanups (Kai Willadsen)
* Python 3.7 support (Kai Willadsen)
* PEP8 and style compliance (Jesus Arroyo, Stefan Erichsen)
* Bugs fixed: 152, 175, 177, 179, 193, 196, 197, 197, 203, 217, 225, 233,
235, 239
Translations:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Claude Paroz (fr)
* Daniel Mustieles (es)
* Emin Tufan Çetin (tr)
* Jiri Grönroos (fi)
* Kukuh Syafaat (id)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Mathieu Bridon ()
* Milo Casagrande (it)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Reginaldo Izidório (pt_BR)
* Yi-Jyun Pan (zh_TW)
2018-03-28 meld 3.19.0
======================
Features:
* Initial Windows build pipeline using Appveyor (Vasily Galkin)
* Add new per-pane status bar with selectors for syntax highlighting and
text encoding (Kai Willadsen, with extensive testing by Vasily Galkin)
* Allow text encoding to be chosen from file selectors (Kai Willadsen)
* Add new go-to-line action and UI (Kai Willadsen)
* Folder comparison now explicitly indicates symlinks in the tree, and
shows the symlink target (Kai Willadsen)
* Inline highlighting now draws whitespace in any changes it covers (Kai
Willadsen)
* Improved contrast in dark theme support (Vitalii Dmitriev)
* Navigating between changes in file comparison now briefly animates the
outline, to make it easier to keep track of the focus in busy
comparisons (Kai Willadsen)
Fixes:
* Find bar now hides when pressing Escape (Vladimir Panteleev)
* Handle file deletion where we can't move to trash (e.g., network mounts)
(Kai Willadsen)
* Guess whether we're running a dark theme, for supporting Tweak Tool
changes (Kai Willadsen)
* Keybindings for notebook switching work again (Kai Willadsen)
* Significantly speed up folder and version control comparisons by limiting
the file metadata we request (Kai Willadsen)
* Threading fixes for more responsive highlighting and better exit handling
(Kai Willadsen)
* Fix memory and file handle leakage for closed comparisons (Kai Willadsen)
* Make the --auto-compare command line flag work again (Kai Willadsen)
* Make multiple --diff command line options work again (Kai Willadsen)
* Fix committing selected files in Mercurial (Kai Willadsen)
* Fix Bazaar support for our Python 3 port (Kai Willadsen)
* Avoid a race condition that made the "Resolve conflict" prompt unreliable
(Kai Willadsen)
* Fix invalid-iter crash when refreshing version control view (Kai
Willadsen)
* Make non-existent files writable by default (Kai Willadsen)
* Several fixes for translations, unicode typography, and typos (Piotr Drąg)
* Windows compatibility updates (Vasily Galkin, Kai Willadsen)
* Windows build fixes (Vasily Galkin)
* Add Gitlab CI for Python styling and lint, and update a lot of old code
to match (Kai Willadsen)
* Packaging fixes for AppStream (Balint Reczey)
Internal changes:
* Update GTK+ and GtkSourceView requirements to 3.20
* Migrate recently-used handling, comparison launching, and file
comparisons to use Gio for URI support (Chris Mayo, Kai Willadsen)
* Migrated to GNOME Gitlab for hosting and issue tracking
* Bugs fixed (bugzilla): 589366, 783989, 785313, 785630, 786629, 786867,
787256, 788455, 788487, 790335, 791173
* Issues fixed (gitlab): 46, 97, 133, 146, 151, 152, 158, 159, 161, 165
Translations:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Andre Klapper (cs, de)
* Ask Hjorth Larsen (da)
* Balázs Úr (hu)
* Daniel Mustieles (es)
* Daniel Șerbănescu (ro)
* Emin Tufan Çetin (tr)
* Enrico Nicoletto (pt_BR)
* Jiri Grönroos (fi)
* Joe Hansen (da)
* Jordi Mas (ca)
* Kristjan SCHMIDT (eo)
* Kukuh Syafaat (id)
* Marcos Lans (gl)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Milo Casagrande (it)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
2017-09-10 meld 3.18.0
======================
Fixes:
* Fix VC status not updating in some situations non-flattened mode (Kai
Willadsen)
* Command line errors when invoking a secondary instance will no longer
cause the second command to hang until the primary exits (Kai Willadsen)
* Bugs fixed: 786629
Translations:
* Emin Tufan Çetin (tr)
2017-08-16 meld 3.17.4
======================
Fixes:
* Rebuild source tarball without spurious files
2017-08-13 meld 3.17.3
======================
Fixes:
* Fix folder compare when using text filters (Alsan Wong)
* Make activity spinner show when inline comparisons are running (Kai
Willadsen)
* Migrate back from threads to multiprocessing for inline diffs; unusual
CPU contention caused this to harm interactivity (Kai Willadsen)
* Manually refreshing a file comparison sometimes caused diff navigation
to break (Kai Willadsen)
* Folder comparisons that update their state no longer break navigation
(Kai Willadsen)
* Version-control comparison on missing files now work again (Kai
Willadsen)
* Fix regression in initial focus for folder comparisons (Kai Willadsen)
* Fix handling for added, partially staged files in git (Kai Willadsen)
* Bugs fixed: 784436, 785603, 785859, 786043
Translations:
* Daniel Mustieles (es)
* Matej Urbančič (sl)
2017-06-11 meld 3.17.2
======================
UI changes:
* Significantly improve synchronisation of scroll bars between panes; we
now try much harder to scroll all of a chunk on screen at the top and
bottom of comparisons, and handle last-line-in-file cases better (Kai
Willadsen)
* Place the cursor at the start of a replaced chunk instead of after it;
this change should improve keyboard ergonomics when doing three-way
merges, but does change our existing behaviour (Kai Willadsen)
* Remove Shift-based scroll locking; this was already broken by a GTK+
change, so this is just making it official (Kai Willadsen)
Fixes:
* Show correct column offset in status bar for tab indents (Simon Marchi)
* Fix installation with a prefix for Python 3 changes (Ting-Wei Lan)
* Fix initial scroll-to-first-difference behaviour to avoid a race
condition if the first change was on the first line (Kai Willadsen)
* Improve text wrapping behaviour in information bars, and avoid too-large
allocations with long labels (Kai Willadsen)
* Work around infinite re-allocation problems and silence GTK+ allocation
warnings (Kai Willadsen)
* Fix bad UI state when closing a single-instance activated window (Kai
Willadsen)
* Fix bad function call when using internal git conflict resolution (Kai
Willadsen)
Translations:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Balázs Úr (hu)
* Daniel Korostil (uk)
* Emin Tufan Çetin (tr)
* Marek Černocký (cs)
* Milo Casagrande (it)
2017-03-11 meld 3.17.1
======================
Features:
* Improve version checking, and try to show users a nice error dialog when
Meld's requirements aren't installed (Vasily Galkin)
Fixes:
* Help and documentation fixes (Anders Jonsson, Kai Willadsen)
* Re-silence GTK+ logging with glib 2.46 structured logging changes (Kai
Willadsen)
* Fix chunk deletion at EOF with CRLF endings (Kai Willadsen)
* Note filter performance effects in folder preferences (Kai Willadsen)
* Fix button alignment for new chunk action buttons (Kai Willadsen)
* Improve use of the newer emblem in folder comparison by showing it only
when meaningful (Kai Willadsen)
* Fix crash caused by bad colour theme lookup (Kai Willadsen)
Translations:
* Alan Mortensen (da)
* Anders Jonsson (sv)
* Daniel Mustieles (es)
* Josef Andersson (sv)
* Marek Černocký (cs)
* Paul Seyfert (de)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Мирослав Николић (sr, sr@latin)
2016-12-18 meld 3.17.0
======================
Python 3 porting:
* Python 3 support; we now require Python 3.3 as a minimum
* Python 3 compatibility fixes; too many cases of bytes/string confusion,
syntax changes and other miscellany to mention individually (Vasily
Galkin, Kai Willadsen)
* Handle new unicode-escape behaviour and unicode/bytes confusion for
process interaction and version control plugins (Vasily Galkin, Kai
Willadsen)
* Add support for byte-based filters, to support directory vs. file
comparison filters (Kai Willadsen)
UI changes:
* The "Tabs" menu item has been removed, to better match up with more
modern GTK+ design. All of the actions are still available in the
expected key bindings, and there is a new per-tab context menu.
* The change action buttons in the central pane divider now correctly
render as flat buttons (Kai Willadsen)
* The curves in the central pane divider are now... smoother!
Internal changes:
* Handle reload notifications better in asynchronous saving (Vasily Galkin)
* Remove multi-process diff in favour of asynchronous (threaded, but
GIL-throttled) matching (Kai Willadsen)
* Performance improvements in rendering of multiple widgets, as well as for
initial text comparison (Kai Willadsen)
* Many updates for GTK+ 3.20 and 3.22 ABI changes (Kai Willadsen)
* NOTE: Windows support is currently untested
Fixes:
* Update supported version control list (Kai Willadsen)
* Update requirements and build requirements lists (Kai Willadsen)
* Don't create empty help/figures directories (Kai Willadsen)
* Translation maintenance (Piotr Drąg)
Fixes included in 3.16 releases:
* Handle themes with scrollbar steppers better (Kai Willadsen)
* Fix a traceback when pane has no file (Claude Paroz)
* Fix triggering "Delete Change" actions from menu (Kai Willadsen)
* Handle style theme not existing (Patrick Griffis)
* Fix bad scroll syncing and inability to move between comparison chunks in
file comparisons (Vasily Galkin)
* Improve version control view behaviour when opening missing paths (Vasily
Galkin)
* Fix saving of text created in blank comparison (Vasily Galkin)
* GTK+ 3.22 compatibility fixes for saving window size (Kai Willadsen)
* Fix formatted patches missing newlines in certain cases (Kai Willadsen)
* Silence GTK+ warning logging if not running in uninstalled (i.e.,
development) mode (Kai Willadsen)
* Update AppData (Kai Willadsen)
* Fix performance regression in text filtering (Kai Willadsen)
* Fix regression in respecting custom text encoding (Kai Willadsen)
* Fix regression in support for file comparisons from pipes (Kai Willadsen)
* Add open build service directories to the version control filter
(Dominique Leuenberger)
* Add darcs to list of loaded plugins (pbgc)
* Fix the dark style (Kai Willadsen)
* Windows build fixes (Kai Willadsen)
Translations:
* Anders Jonsson (sv)
* Andika Triwidada (id)
* Balázs Meskó (hu)
* Claude Paroz (fr)
* Daniel Mustieles (es)
* Jiri Grönroos (fi)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Matej Urbančič (sl)
* Rafael Fontenelle (pt_BR)
* Tiago Santos (pt)
* Мирослав Николић (sr, sr@latin)
2016-05-01 meld 3.16.0
======================
Translations:
* Josef Andersson (sv)
2016-04-20 meld 3.15.3
======================
Fixes:
* Handle unicode dates in non-UTF8 locales in folder comparison (Kai
Willadsen)
* Try to auto-detect when to use our dark theme highlighting (Kai Willadsen)
* After undo/redo actions in file comparisons, place the cursor at the
natural edit position and scroll it back onscreen (Kai Willadsen)
2016-03-28 meld 3.15.2
======================
Features:
* Port to use GtkSourceView's file loader and saver helpers, bringing
several benefits (Kai Willadsen)
* Loading and saving speed are significantly improved, and are
asynchronous
* We try a wider range of locale-specific file encodings by default,
and still support user-specified default encodings (requires
GtkSourceView 3.18 or later)
* We now support saving files with inconsistent newline types
* Binary files will now be loaded on a best-effort basis
* Reinstate support for Darcs; this is currently limited to very new
(>2.10.3) versions (Guillaume Hoffmann)
* Folder comparisons now apply text filters in the same way as file
comparisons (David Rabel)
* Add support for showing new shortcuts help dialog (Kai Willadsen, Piotr
Drąg)
* Preliminary support for building Meld as an xdg-app (Kai Willadsen)
Fixes:
* Many fixes for GTK+ 3.20 theming changes and widget compatibility issues
(Kai Willadsen)
* All accelerators should now consistently use the Primary key, for better
integration on OSX systems (Youssef Adnan)
* Significantly improve text filter performance (Jason Gauci)
* Fix performance regression where scanning for missing files was extremely
slow, especially in large repositories (Kai Willadsen)
* Fix truncated line number display in short file (Kai Willadsen)
* Fix filter dropdown not appearing below button (Kai Willadsen)
* Add more documentation on setup and installation requirements (Jesse
Sheridan, Martin Thoma)
* Update the AppData to spec version 0.7+ (Richard Hughes)
Translations:
* Anders Jonsson (sv)
* Benjamin Steinwender (de)
* Bernd Homuth (de)
* Cédric Valmary (oc)
* Daniel Mustieles (es)
* Gábor Kelemen (hu)
* Jiri Grönroos (fi)
* Luisa Cerón Perea (es)
* Marek Černocký (cs)
* Mario Blättermann (de)
* Muhammet Kara (tr)
* Pedro Albuquerque (pt)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
* Мирослав Николић (sr, sr@latin)
2015-12-15 meld 3.15.1
======================
Features:
* Text ignored by filters is now dimmed to give some visual feedback that
it's being ignored (David Rabel)
* Text filters now apply independently, improving consistency; note that
this is a behaviour change as filter order no longer matters, and filters
will always apply to the original (not the filtered) text (David Rabel,
Kai Willadsen)
* Recent menu items now show more detail in tooltips (Alan Suran)
* Update dialog action area layout for GTK+ theme changes (Kai Willadsen)
Fixes:
* Conflict resolution prompt now resolves properly again (Andrew Sutherland)
* Silence some GTK+ assertions on window close (Zain)
* Fix default filter issues from recent rework (Erik Schilling)
* Percent-containing commit messages no longer corrupt our recent commit
messages store (Kai Willadsen)
* Fix some problems with unicode user directories on Windows (Kai Willadsen)
* Fix encoding issues when saving files with load errors (Kai Willadsen)
* Fix drawing corruption when scrolling horizontally (Kai Willadsen)
* Fix clicking on the diffmap scrolling to the wrong location (Kai Willadsen)
* Fix off-by-one drawing error for final line in file (Kai Willadsen)
* Fix introspection requires to silence startup warnings (Kai Willadsen)
* Fix clearing syncpoints (Kai Willadsen)
* Add manual appdata kudos markers (Kai Willadsen)
* PEP8 fixes (David Rabel, Kai Willadsen)
Translations:
* Daniel Mustieles (es)
* Marek Černocký (cs)
* Milo Casagrande (it)
* Pedro Albuquerque (pt)
* Piotr Drąg (pl)
* Rafael Fontenelle (pt_BR)
2015-10-05 meld 3.15.0
======================
Features:
* New API for version control plugins with more consistent interfaces and
data structures across different plugins, enabling many minor
improvements (Kai Willadsen)
* Support the conflict resolution prompt in file comparisons for all VCs
* Improve caching behaviour for some version control plugins
* Better sensitivity handling for version control actions
* Cache and show more metadata (e.g., file renames)
* Several version control plugins have not been ported to the new API; the
current list of support plugins is: Git, Mercurial, Subversion 1.7+,
Bazaar
* Faster rendering in file comparison view, enabled by new GtkTextView API
(Kai Willadsen)
* Move to using GtkSourceView style schemes with Meld-specific colour tags
for highlight colours; this lets themes include colours that match the
sourceview theme (Kai Willadsen)
* Offer to open binary files externally (Pratik Dayama)
* Show the common ancestor in conflicting regions (and the merged file
everywhere else) when viewing conflicts through Meld's version control
view; currently this is only supported under Git (Kai Willadsen)
* Support showing staged/partially staged status of files under Git (Kai
Willadsen)
* Update preferences dialog to new style with headerbar (Kai Willadsen)
Fixes:
* Documentation updates (Andrew Beyer)
* Fix crash with some GTK+ versions when using --output (Kai Willadsen)
* Fix merge-all action not working at all (Kai Willadsen)
* Fix creating patches with unicode path names (Kai Willadsen)
* Fix copy-to-clipboard option in patch dialog (Kai Willadsen)
* Fix diffmap alignment for new GTK+ allocation behaviour (Kai Willadsen)
* Improve float accuracy in folder comparison timestamp resolution (Kai
Willadsen)
* Fix default SVN keyword filter to escape $ characters (Kai Willadsen)
* Fix display of unicode --help from command line (Kai Willadsen)
* Fix keyboard shortcut docs (Kai Willadsen)
* Don't incorrectly show identical notification for changed folder
comparisons (Kai Willadsen)
Internal changes:
* Requirements are now GTK+ 3.14, GtkSourceView 3.14 and GLib 2.36
* Rewritten version control plugin API
* Unified colour handling between linkmap, diffmap and file comparison
* Move all textview drawing to a new GtkSourceView subclass, using the new
GTK+ draw-layer API
Translations:
* Daniel Mustieles (es)
* Gábor Kelemen (hu)
* Jiri Grönroos (fi)
* Josef Andersson (sv)
* Marek Černocký (cs)
* Piotr Drąg (pl)
2015-07-23 meld 3.14.0
======================
Fixes:
* Fix crash when starting folder comparison on Windows (Kai Willadsen)
* Fix bad chunk action behaviour for middle-to-right actions in three
pane conflicts (Kai Willadsen)
* Documentation fixes (Anders Jonsson)
Translations:
* Josef Andersson (sv)
* Marek Černocký (cs)
2015-07-12 meld 3.13.3
======================
Fixes:
* Fix syntax highlighting under Windows (Kai Willadsen)
* Update Windows build for newer pygi bundled libraries (Kai Willadsen)
* Fixes for incorrect descriptions in manual (Anders Jonsson, Kai Willadsen)
2015-07-04 meld 3.13.2
======================
Fixes:
* Several fixes for argument handling and tab creation:
* Create --diff created comparisons after args-created ones (Kai
Willadsen)
* Fix --label flag incorrectly applying to --diff created comparisons
(Kai Willadsen)