-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog-20090418
7277 lines (4833 loc) · 217 KB
/
ChangeLog-20090418
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
=== gedit 2.26.1 ===
2009-04-13 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.26.1 release
2009-04-11 Paolo Borelli <[email protected]>
* plugin-loaders/c/gedit-plugin-loader-c.c:
* gedit/gedit-object-module.c:
* gedit/gedit-object-module.h:
* gedit/gedit-plugins-engine.c:
Make all C plugin resident since they may use libraries that
do not deal well with reload. Python plugins are already
resident.
2009-04-11 Paolo Borelli <[email protected]>
* gedit/gedit-document.c: do not apply tags to the empty
string matches when clearing search highlighting.
Bug #578461, found by Zach Kanzler.
2009-04-09 Paolo Borelli <[email protected]>
* gedit/smclient/eggsmclient-xsmp.c:
Updated from libegg.
2009-04-08 Jesse van den Kieboom <[email protected]>
* plugins/snippets/data/Makefile.am:
* plugins/snippets/data/fortran.xml:
Added snippets for Fortran 95 (by Jens Domke)
2009-04-08 Ignacio Casal Quinteiro <[email protected]>
* gedit/smclient/eggsmclient.c:
* gedit/smclient/eggdesktopfile.c:
Updated smclient.
2009-04-08 Ignacio Casal Quinteiro <[email protected]>
* plugins/changecase/gedit-changecase-plugin.c:
Fixed memory leak. (Fixes bug #578288).
2009-04-01 Ignacio Casal Quinteiro <[email protected]>
* win32/gedit.iss.in:
Now you can choose if you want a desktop icon or a quicklaunch
icon.
2009-03-22 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-gio-document-saver.c:
Use g_slice_new instead of gnew.
2009-03-21 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-commands-search.c:
Use g_slice_new instead of gnew.
=== gedit 2.26.0 ===
2009-03-15 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.26.0 release
2009-03-15 Paolo Borelli <[email protected]>
* gedit/gedit-session.c: load all groups starting
with "gedit window" from the saved session key file.
Patch by Vincent Untz.
2009-03-14 Paolo Borelli <[email protected]>
* gedit/gedit-document-saver.c:
* gedit/gedit-local-document-saver.c:
Make sure to fsync the files to disk when saving.
2009-03-04 Ignacio Casal Quinteiro <[email protected]>
* gedit/dialogs/gedit-search-dialog.c:
Connect the changed signal to the editable instead
of the combobox making the search button sensitive when needing
to avoid problems with new versions of gtk+. (Fixes bug #574059).
2009-03-03 Paolo Borelli <[email protected]>
* gedit/gedit-app.c: correctly check viewport when
fullscreen. Bug #559280. Patch by Vassily Gavrilyak.
=== gedit 2.25.8 ===
2009-03-01 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.8 release
2009-03-01 Jesse van den Kieboom <[email protected]>
* gedit/gedit-message-bus.c:
Fixed unregister_all to not remove items from a hash table while
iterating over the hash table (uses g_hash_table_foreach_remove
instead)
2009-03-01 Paolo Borelli <[email protected]>
* plugins/modelines/modeline-parser.c:
Fix logic use to select lines to scan for modelines to
be more careful about empty lines and end of buffer.
2009-03-01 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-messages.c:
fixed crasher bug when deactivating file browser (caused
by not unregistering a signal properly)
2009-03-01 Paolo Borelli <[email protected]>
* plugins/taglist/gedit-taglist-plugin-parser.c:
plug some minor leaks.
2009-03-01 Paolo Borelli <[email protected]>
* gedit/gedit-utils.c: properly handle vararg in error path.
* plugins/time/gedit-time-plugin.c: handle error more correctly.
2009-03-01 Paolo Borelli <[email protected]>
* configure.ac: add AC_SYS_LARGEFILE. Bug #571632.
2009-02-28 Paolo Borelli <[email protected]>
* gedit/gedit-utils.[ch]:
* gedit/gedit-window.c:
* gedit/gedit-tab.c:
Improve how the dirname in the titlebar is shown for remote files
which have a mount name. Bug #573286, based on a patch by Ignacio
Casal Quinteiro.
2009-02-25 Paolo Borelli <[email protected]>
* gedit/gedit-plugin.c:
* gedit/gedit-plugins-engine.c:
Chain up to the parent's finalize
2009-02-24 Paolo Borelli <[email protected]>
* plugin-loaders/python/gedit-plugin-loader-python.c:
Use g_strerror
2009-02-23 Paolo Borelli <[email protected]>
* gedit/gedit-utils.h: fix compiler warning on 64 bit in the
boolean to pointer macros
2009-02-22 Paolo Borelli <[email protected]>
* configure.ac:
Bump required gtksourceview version to match reality.
2009-02-22 Paolo Borelli <[email protected]>
* gedit/gedit-utils.c:
* gedit/gedit.c:
* gedit/gedit-document.c:
* gedit/gedit-commands.h:
* gedit/gedit-commands-file.c:
Try to handle better strange filenames passed on the command line that
contain columns. Fixes bug #572746. I think there are still corner
cases where we do not properly handle uri vs filename-with-columns,
but probably the logic (if solvable at all) should go in
g_file_new_for_command_line_arg.
2009-02-17 Jesse van den Kieboom <[email protected]>
* plugin-loaders/python/bindings/geditmessage.override:
* plugin-loaders/python/bindings/gedit.override:
Fixed some embarassing typos in geditmessage.override and some compiler
warnings about unused variables (fixes #572101)
=== gedit 2.25.7 ===
2009-02-16 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.6 release
2009-02-16 Paolo Borelli <[email protected]>
* gedit/gedit-tab.c:
* gedit/gedit-io-error-message-area.c:
Handle G_IO_ERROR_CANT_CREATE_BACKUP
2009-02-16 Sebastien Bacher <[email protected]>
* plugins/time/Makefile.am: install the .ui in the correct directory
(#571564)
2009-02-09 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c: use gedit_document_set_language instead of
gtk_source_buffer_set_language (so that it is correctly stored in
the metadata)
2009-02-08 Ignacio Casal Quinteiro <[email protected]>
* plugins/snippets/data/chdr.xml:
* plugins/snippets/data/c.xml:
Add ginterface snippets.
2009-02-07 Ignacio Casal Quinteiro <[email protected]>
* help/C/gedit.xml:
Add cobalt theme.
2009-02-03 Paolo Borelli <[email protected]>
* configure.ac:
* gedit/smclient/Makefile.am:
Fix smclient libs on cycgwin. Bug #570582.
2009-02-03 Ignacio Casal Quinteiro <[email protected]>
* gedit/dialogs/gedit-preferences-dialog.c:
Don't crash when removing scheme color. (Fixes #bug 570391).
=== gedit 2.25.6 ===
2009-02-03 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.6 release
2009-02-02 Ignacio Casal Quinteiro <[email protected]>
* plugins/filebrowser/gedit-file-browser-store.c:
Use g_slice_new instead of g_new.
2009-02-01 Ignacio Casal Quinteiro <[email protected]>
* plugins/filebrowser/gedit-file-browser-widget.c:
Ellipsize the combobox.
2009-01-30 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-view.c:
* gedit/Makefile.am:
* configure.ac:
Don't use sexy-icon-entry when gtk+ >= 2.15.0. (Fixes bug #569485)
2009-01-24 Paolo Borelli <[email protected]>
* gedit/gedit-commands-file.c: synchronously check if a
document has been deleted only for local files, since
for remote files it may hang.
2009-01-24 Paolo Borelli <[email protected]>
* gedit/gedit-window.c:
* gedit/gedit-prefs-manager-app.c:
Improve logic used to track, save and restore the state
of panes, so that it is properly restored.
2009-01-24 Josselin Mouette <[email protected]>
* plugins/externaltools/tools/library.py:
Use LC_MESSAGES to determine the current language for the
external tools.
Fixes bug#568953.
2009-01-23 Paolo Borelli <[email protected]>
* gedit/gedit-window.c:
Use the proper API to get the action from the proxy.
=== gedit 2.25.5 ===
2009-01-19 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.5 release
2009-01-16 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-plugin-manager.c:
* gedit/gedit-plugins-engine.c:
* gedit/gedit-plugins-engine.h:
Rescan plugins when creating the manager.
2009-01-15 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-plugin.c: fixed
'Open Terminal Here' sensitivity and correct icon.
2009-01-13 Paolo Borelli <[email protected]>
* gedit/gedit-dirs.[ch]:
* gedit-plugins-engine:
Do not look for plugin loaders in the home dir.
2009-01-12 Kjartan Maraas <[email protected]>
* plugins/pythonconsole/pythonconsole/config.ui: Don't translate
widget labels.
2009-01-12 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-plugin.c: fixed initializing
window data to 0 (prevents incorrect removal of gconf watches when they
are not actually installed)
2009-01-12 Jesse van den Kieboom <[email protected]>
* gedit/gedit-message-type.c: fixed correctly setting optional argument
types
2009-01-11 Gian Mario Tagliaretti <[email protected]>
* gedit/gedit-view.c: (gedit_view_set_font) small doc fix.
2009-01-11 Paolo Borelli <[email protected]>
* plugins/pythonconsole/pythonconsole/console.py: properly handle
modifiers on key_press_event, patch by B. Clausius, bug #567364.
2009-01-10 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-window-private.h:
* gedit/gedit-window.c:
Add animation to fullscreen controls.
2009-01-08 Paolo Borelli <[email protected]>
* plugins/pythonconsole/pythonconsole/*: Add a config dialog
to set console colors, patch by B. Clausius, bug #566010.
2009-01-08 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-window.c:
Fix bug hidding the fullscreen controls.
2009-01-07 Paolo Borelli <[email protected]>
* gedit/gedit-statusbar.c: try to be smarter when sizing the
statusbar ln/col and overwrite areas.
2009-01-07 Paolo Borelli <[email protected]>
* gedit/gedit-window.c: hide the status combos when no document
is open.
2009-01-07 Jesse van den Kieboom <[email protected]>
* plugins/externaltools/tools/tools.ui: fix problem with strings not
being translated (fixes bug #559117).
2009-01-07 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-ui.h:
Fix string.
2009-01-07 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-window-private.h:
* gedit/gedit-ui.h:
* gedit/gedit-ui.xml:
* gedit/gedit-window.c:
* gedit/gedit-window.h:
* gedit/gedit-commands.h:
* gedit/gedit-commands-view.c:
Added new fullscreen mode. (Fixes bug #520749).
2009-01-06 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-window.c:
Fix bug showing warning.
2009-01-06 Jesse van den Kieboom <[email protected]>
* plugin-loaders/python/bindings/geditmessage.override: fix function
with no return value. Patch by Magnus Boman (fixes #566686)
=== gedit 2.25.4 ===
2009-01-05 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.4 release
2009-01-05 Paolo Borelli <[email protected]>
* plugins/externaltools/tools/manager.py: do not add an extra new
line each time a tool is modified and saved. (Bug #566576)
2009-01-05 Jesse van den Kieboom <[email protected]>
* gedit/gedit-message-bus.c:
* gedit/gedit-message-bus.h:
* gedit/gedit-message-type.c:
* gedit/gedit-message-type.h:
* docs/reference/gedit-sections.txt:
Added gedit_message_bus_foreach and
gedit_message_type_is_valid_object_path API. Added checks for valid
object paths.
2009-01-04 Ignacio Casal Quinteiro <[email protected]>
* plugins/spell/gedit-spell-checker-language.c:
Remove obsolete comments for translators. (Fixes bug #566552)
Patch by Leonardo Ferreira Fontenelle.
2009-01-03 Jesse van den Kieboom <[email protected]>
* configure.ac:
* plugins/spell/Makefile.am:
* plugins/modelines/Makefile.am:
* plugins/sample/Makefile.am:
* plugins/indent/Makefile.am:
* plugins/docinfo/Makefile.am:
* plugins/changecase/Makefile.am:
* plugins/filebrowser/Makefile.am:
* plugins/sort/Makefile.am:
* plugins/time/Makefile.am:
* plugins/externaltools/tools/Makefile.am:
* plugins/externaltools/Makefile.am:
* plugins/pythonconsole/pythonconsole/Makefile.am:
* plugins/pythonconsole/Makefile.am:
* plugins/snippets/snippets/Makefile.am:
* plugins/snippets/Makefile.am:
* plugins/taglist/Makefile.am:
Use the new GEDIT_PLUGINS_LIBS_DIR and GEDIT_PLUGINS_DATA_DIR.
2009-01-03 Paolo Borelli <[email protected]>
* plugins/taglist/gedit-taglist-plugin-parser.c: use glib
functions to open the taglist directories.
2009-01-02 Paolo Borelli <[email protected]>
* gedit/gedit-view.c: allow to toggle line numbers in the
margin context menu.
2009-01-02 Jesse van den Kieboom <[email protected]>
* plugins/snippets/snippets/Placeholder.py:
* plugins/snippets/snippets/Snippet.py:
Fixed recursive python dependencies to update correctly
2009-01-02 Jesse van den Kieboom <[email protected]>
* plugins/modelines/modeline-parser.c: added some improbable
memleak and crash preventions.
2009-01-02 Paolo Borelli <[email protected]>
* plugins/modelines/gedit-modeline-plugin.c:
* plugins/modelines/modeline-parser.c:
Add support for parsing the highlighting mode.
Bug #379663, patch by Sergej Chodarev.
2009-01-02 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-view.c:
* plugins/filebrowser/gedit-file-browser-widget.c:
* plugins/filebrowser/gedit-file-browser-store.c:
* plugins/filebrowser/gedit-file-browser-view.h:
Fixed switching from bookmarks to file view only after mounting
(fixes #551136). Fixed scrolling to rename position when renaming
a file. Fixed cancelling mount operation when switching to different
uri.
2009-02-01 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-bookmarks.c: keep same
bookmarks order as in nautilus (fixes #559118)
2009-02-01 Jesse van den Kieboom <[email protected]>
* plugins/snippets/snippets/Document.py:
* plugins/snippets/snippets/Helper.py:
* plugins/snippets/snippets/Placeholder.py:
* plugins/snippets/snippets/Snippet.py:
Implemented support for 'hugging' placeholders
(e.g. ${1:text}${2:text})
2009-01-01 Jesse van den Kieboom <[email protected]>
* gedit/gedit-plugins-engine.c: call gtk_ui_manager_ensure_update when
deactivating a plugin from the preference dialog. This fixes a crash
suspectedly caused by something in GtkUIManager using the static
strings from provided GtkActionEntry from the loaded plugin module.
When the module is unloaded, the 'static' strings are no longer valid,
and the ui manager updates the ui in an idle func (which causes access
to the now invalid strings).
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-store.c: fixed wrong
calculation of node path
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/snippets/data/chdr.xml:
* plugins/snippets/data/c++.xml:
* plugins/snippets/data/cpp.xml:
* plugins/snippets/data/c.xml:
* plugins/snippets/data/Makefile.am:
Added chdr language with C/C++ header specific snippets. Removed header
specific snippets from c and c++ languages. Fixed language id in
C++ language file since apparently it has changed.
2009-01-01 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c: corrected strings to be proper title case
(Tab Width, Use Spaces). Changed language menu item 'None' to
'Plain Text'.
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-messages.c: fixed crash
due to free'ing GTK owned action group list
2009-01-01 Jesse van den Kieboom <[email protected]>
* configure.ac: oops, forgot to commit before
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/snippets/data/lang/snippets.lang: fixed escaping within
shell placeholders
2009-01-01 Jesse van den Kieboom <[email protected]>
* configure.ac:
* plugins/externaltools:
* plugins/snippets:
Added GEDIT_PLUGINS_LIB_DIR and GEDIT_PLUGINS_DATA_DIR to configure.ac
to be used in Makefile.am of plugins. Fixed loading ui files using
plugin.get_data_dir() for snippets and tools. Fixed data dirs for
win32 in snippets and externaltools. Added remembering dialog size
for snippets and tools. Changed showing error in snippets by using
icons instead of color changes (for usability, fixes: #352945)
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugin-loaders/python/gedit-plugin-loader-python.c:
* plugin-loaders/python/bindings/geditplugin.override:
Fixed constructing plugin object (now works correctly without special
casing the construction). Previously, the GObject was not available
in the __init__ function of the plugin, this has been fixed.
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-messages.c: added
add_context_item and remove_context_item messages (for extending the
context menu)
2009-01-01 Ignacio Casal Quinteiro <[email protected]>
* plugins/spell/gedit-spell-plugin.c:
Add ellipsis (...) (Fixes bug #335108).
2009-01-01 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c:
* gedit/gedit-status-combo-box.c:
Use non-relief button to represent the combo box like widget better
visually
2009-01-01 Paolo Borelli <[email protected]>
* gedit/gedit-document.c:
* gedit/gedit-tab.c:
Plug small leak in the tooltip string.
2009-01-01 Jesse van den Kieboom <[email protected]>
* plugins/snippets/snippets/Parser.py: fixed bug in parsing shell
placeholders falsly not allowing ` in $()
2009-01-01 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-plugin-info.c:
* gedit/gedit-plugin-info.h:
* gedit/gedit-plugin-manager.c:
* gedit/gedit-plugin-info-priv.h:
Add Version field for gedit-plugin files.
2008-12-31 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c: removed 'Other' from tab width combo box. A
menu item with the current tab width, if other than in the predefined
ones, is shown if necessary. Fixed bug in removing signals.
2008-12-31 Jesse van den Kieboom <[email protected]>
* gedit/gedit-object-module.c: fixed getter for type_registration
which was actually returning the module name (copy/paste bug)
2008-12-31 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c: make language status combo box insensitive
when there is no active document
2008-12-31 Jesse van den Kieboom <[email protected]>
* gedit/gedit-window.c:
* gedit/gedit-window-private.h:
* gedit/gedit-status-combo-box.c:
* gedit/gedit-status-combo-box.h:
* gedit/Makefile.am:
Implemented new GeditStatusComboBox which displays a combo box like
widget for use in the statusbar. It is currently used in the newly
implemented drop downs for language and tab width selection.
2008-12-30 Ignacio Casal Quinteiro <[email protected]>
* configure.ac: Check for windres tool.
* gedit/Makefile.am: Fix windres argument.
2008-12-30 Ignacio Casal Quinteiro <[email protected]>
* gedit/dialogs/Makefile.am:
Removed unneccessary variables.
2008-12-30 Ignacio Casal Quinteiro <[email protected]>
* pixmaps/gedit.ico:
* pixmaps/Makefile.am:
* gedit/gedit.rc:
* gedit/Makefile.am:
Use gedit.ico in the .exe on windows.
2008-12-30 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-notebook.c:
Do not cut off the close button icon. (Fixes bug #441850).
2008-12-30 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-statusbar.c:
Mark for translation "INS" instead of " INS" to avoid
work for translators.
2008-12-30 Jesse van den Kieboom <[email protected]>
* gedit/gedit-message.c:
* gedit/gedit-message-bus.c:
* gedit/gedit-message-type.c:
Added 'Since: 2.25.3' (note to change this at stable release). Is this
how to do that?
2008-12-30 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-messages.c: added get_root
message
2008-12-29 Ignacio Casal Quinteiro <[email protected]>
* help/C/gedit.xml:
Update Color scheme preference. (Fixes bug #475071).
2008-12-29 Ignacio Casal Quinteiro <[email protected]>
* plugins/modelines/Makefile.am:
* plugins/spell/Makefile.am:
* plugins/changecase/Makefile.am:
* plugins/docinfo/Makefile.am:
* plugins/indent/Makefile.am:
* plugins/sample/Makefile.am:
* plugins/filebrowser/Makefile.am:
* plugins/sort/Makefile.am:
* plugins/time/Makefile.am:
* plugins/taglist/Makefile.am:
Removed unneccessary variables.
=== gedit 2.25.3 ===
2008-12-29 Paolo Borelli <[email protected]>
* configure.ac:
* README:
* NEWS:
gedit 2.25.3 release
2008-12-29 Paolo Borelli <[email protected]>
* plugins/externaltools/tools/manager.py: fix method to detect
language highlighting
2008-12-29 Jesse van den Kieboom <[email protected]>
* plugins/snippets/snippets/Manager.py: removed customized font
size (which is too small). Fixes #560236
2008-12-29 Jesse van den Kieboom <[email protected]>
* gedit/gedit-message-type.h:
* gedit/gedit-message-type.c:
* gedit/gedit-message.h:
* gedit/gedit-message.c:
* gedit/gedit-message-bus.h:
* gedit/gedit-message-bus.c:
* gedit/gedit-window.h:
* gedit/gedit-window.c:
* gedit/gedit-window-private.h:
* gedit/Makefile.am:
Merged message communication bus from message_system branch providing
a framework to allow (amongst others) plugins to cooperate in similar
way as DBus (but for in-process communication)
* docs/reference/gedit-sections.txt:
* docs/reference/gedit.types:
* docs/reference/gedit-docs.sgml:
* docs/reference/tmpl/gedit-message.sgml:
* docs/reference/tmpl/gedit-message-type.sgml:
* docs/reference/tmpl/gedit-message-bus.sgml:
Added API documentation for message bus
* plugin-loaders/python/bindings/geditmessage.override:
* plugin-loaders/python/bindings/Makefile.am:
* plugin-loaders/python/bindings/gedit.override:
* plugin-loaders/python/bindings/gedit.defs:
Implemented python bindings for message bus
* plugins/filebrowser/gedit-file-browser-messages.c:
* plugins/filebrowser/gedit-file-browser-messages.h:
* plugins/filebrowser/gedit-file-browser-widget.c:
* plugins/filebrowser/gedit-file-browser-widget.h:
* plugins/filebrowser/gedit-file-browser-plugin.c:
* plugins/filebrowser/Makefile.am:
Added message bus support for the file browser plugin
* plugins/filebrowser/gedit-file-browser-view.c:
Added sanity checks for destruction of state restore table
2008-12-29 Paolo Borelli <[email protected]>
* gedit/gedit-ui.h: Use stock icon for page setup.
2008-12-29 Ignacio Casal Quinteiro <[email protected]>
* plugins/time/gedit-time-plugin.c:
%D format is not supported on win32.
2008-12-29 Ignacio Casal Quinteiro <[email protected]>
* plugins/filebrowser/gedit-file-browser-store.c:
Do not monitor files in windows.
2008-12-29 Paolo Borelli <[email protected]>
* gedit/gedit-convert.c:
* gedit/gedit-gio-document-saver.c:
* gedit/gedit-tab.c:
Fix some string format warnings in debug messages.
2008-12-28 Ignacio Casal Quinteiro <[email protected]>
* plugins/taglist/gedit-taglist-plugin-panel.h:
* plugins/taglist/gedit-taglist-plugin-parser.c:
* plugins/taglist/Makefile.am:
* plugins/taglist/gedit-taglist-plugin-panel.c:
* plugins/taglist/gedit-taglist-plugin-parser.h:
* plugins/taglist/gedit-taglist-plugin.c:
Use data-dir property.
* win32/build-installer:
* win32/gedit.iss.in:
Remove taglist as now it is in plugins dir.
2008-12-28 Ignacio Casal Quinteiro <[email protected]>
* plugins/sort/Makefile.am:
* plugins/sort/gedit-sort-plugin.c:
Use data-dir property.
2008-12-28 Ignacio Casal Quinteiro <[email protected]>
* plugins/spell/gedit-spell-plugin.c:
* plugins/spell/gedit-spell-checker-dialog.c:
* plugins/spell/gedit-spell-checker-dialog.h:
* plugins/spell/gedit-spell-language-dialog.c:
* plugins/spell/Makefile.am:
* plugins/spell/gedit-spell-language-dialog.h:
Use data-dir property.
2008-12-28 Ignacio Casal Quinteiro <[email protected]>
* plugins/filebrowser/gedit-file-browser-widget.c:
* plugins/filebrowser/gedit-file-browser-widget.h:
* plugins/filebrowser/gedit-file-browser-plugin.c:
* plugins/filebrowser/Makefile.am:
Use data-dir property.
2008-12-28 Paolo Borelli <[email protected]>
* plugins/docinfo/gedit-docinfo-plugin.c:
* plugins/time/gedit-time-plugin.c:
* plugin-loaders/python/gedit-plugin-loader-python.c:
* plugin-loaders/python/bindings/gedit.defs:
* plugin-loaders/c/gedit-plugin-loader-c.c:
* gedit/gedit-plugin.c:
* gedit/gedit-plugin.h:
Add an "data-dir" property to plugins that plugin can use to
locate data files in a relocable way (so that it works on
windows). Convert a couple of plugins as a test, eventually all
plugins need it.
2008-12-28 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-store.c: Fixed small
warning on trying to connect a signal on a file monitor when file
monitoring is not supported (e.g. on OS X)
2008-12-28 Jesse van den Kieboom <[email protected]>
* plugin-loaders/python/bindings/gedit.override: Added custom
wrapper for gedit_statusbar_flash_message to avoid formatting
security problems (fixes #565778)
2008-12-28 Jesse van den Kieboom <[email protected]>
* plugins/filebrowser/gedit-file-browser-store.c: Fix a problem
with fill_model where the tree path might have been altered and
is thus then invalid. Fixes bug #556410.
2008-12-26 Leonardo Ferreira Fontenelle <[email protected]>
reviewed by: Paolo Borelli.
* plugins/externaltools/tools/manager.py: Import the hashlib module
instead of the deprecated md5 python module. Closes bug #564378.
2008-12-25 Ignacio Casal Quinteiro <[email protected]>
* Makefile.am:
Build plugin-loaders after gedit.
2008-12-25 Ignacio Casal Quinteiro <[email protected]>
* gedit/Makefile.am:
* configure.ac:
Add the -mwindows flag.
2008-12-25 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit.c:
Set the path at runtime.
2008-12-25 Paolo Borelli <[email protected]>
* gedit/gedit-document.[ch]:
* gedit/gedit-tab.c:
Use content type instead of mime type where possible.
2008-12-24 Paolo Borelli <[email protected]>
* gedit/gedit-plugins-engine.[ch]:
* gedit/gedit-prefs-manager.[ch]:
* gedit/gedit-prefs-manager.[ch]:
Centralize all gconf related code in the prefs manager.
2008-12-24 Paolo Borelli <[email protected]>
* gedit/gedit-language-manager.[ch]:
* gedit/gedit-documemt.c:
Use gtk_source_language_manager_guess_language instead of
scanning mime types manually.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* win32/build-installer:
* win32/gedit.iss.in:
Include the immodules too.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* win32/build-installer:
* win32/gedit.iss.in:
Add pixbuf loaders.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* win32/build-installer:
* win32/gedit.iss.in:
Add plugin files.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit.c:
* gedit/Makefile.am:
* gedit/gedit-dirs.c:
* gedit/gedit-dirs.h:
Use dir func to manage the locale dir.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit.c:
* gedit/Makefile.am:
Use dir functions to manage the icons path.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-commands-help.c:
* gedit/Makefile.am:
Manage the logo with the dir funcs.
2008-12-23 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-dirs.c:
* gedit/gedit-dirs.h:
* gedit/gedit-plugins-engine.c:
* gedit/Makefile.am:
Use dir functions to manage the loaders and plugins.
2008-12-22 Ignacio Casal Quinteiro <[email protected]>
* win32/build-installer:
* win32/gedit.iss.in:
Fix path.
2008-12-22 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-dirs.c:
Fixed bug in win32 part.
2008-12-22 Ignacio Casal Quinteiro <[email protected]>
* win32/build-installer:
* win32/gedit.iss.in:
Add gconf schemas.
2008-12-22 Ignacio Casal Quinteiro <[email protected]>
* gedit/dialogs/gedit-open-location-dialog.c:
* gedit/dialogs/gedit-encodings-dialog.c:
* gedit/dialogs/gedit-preferences-dialog.c:
* gedit/dialogs/gedit-style-scheme-dialog.c:
* gedit/dialogs/gedit-search-dialog.c:
* gedit/gedit-print-job.c:
* gedit/gedit-window.c:
* gedit/gedit-style-scheme-manager.c:
Use the dir functions.
2008-12-22 Ignacio Casal Quinteiro <[email protected]>
* gedit/gedit-utils.c:
* gedit/gedit-utils.h:
* gedit/gedit-app.c:
* gedit/gedit-dirs.c:
* gedit/gedit-prefs-manager-app.c:
* gedit/gedit-dirs.h:
* gedit/gedit-style-scheme-manager.c:
* gedit/gedit-plugins-engine.c:
* gedit/Makefile.am:
Added gedit-dirs.[ch] to manage the dir cross platform funcs.