-
Notifications
You must be signed in to change notification settings - Fork 110
/
ChangeLog.pre-git
16021 lines (11131 loc) · 497 KB
/
ChangeLog.pre-git
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
2009-04-17 Nickolay V. Shmyrev <[email protected]>
* evince.doap: Added project description.
2009-04-10 Carlos Garcia Campos <[email protected]>
* shell/main.c: (main):
Change process working directory to $HOME so that we don't prevent
unmounting in case the initial cwd is on an external device. Fixes
bug #575436.
2009-04-10 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (ev_window_create_tmp_symlink):
Use g_file_make_symbolic_link to create symlinks. Patch by Hib
Eris. See bug #339172.
2009-04-10 Carlos Garcia Campos <[email protected]>
* properties/ev-properties-main.c: (ev_properties_get_pages):
Create and load the document based on the mime-type provided by
nautilus instead of using our own documents factory. Fixes bug
#533917.
2009-04-09 Benjamin Berg <[email protected]>
* backend/tiff/tiff-document.c: (tiff_document_render):
Fix tiff pixel conversion on big endian machines. Fixes bug #509920.
2009-04-09 Benjamin Berg <[email protected]>
* backend/dvi/cairo-device.c: (dvi_cairo_put_pixel):
Fix output on big endian machines. Fixes bug #578433.
2009-04-08 Dan Winship <[email protected]>
* cut-n-paste/smclient/eggsmclient-xsmp.c (save_state):
Fix the .desktop-file-as-state-file case;
egg_desktop_file_get_source() returns a URI, not a filename.
2009-04-08 Carlos Garcia Campos <[email protected]>
* configure.ac:
* cut-n-paste/Makefile.am:
* cut-n-paste/evmountoperation/*: Removed
* po/POTFILES.in:
* shell/Makefile.am:
* shell/ev-print-operation.c:
* shell/ev-window.c: (window_open_file_copy_ready_cb),
(ev_window_cmd_help_contents), (launch_action),
(launch_external_uri):
Bump GTK+ requirement to 2.14.
2009-04-08 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (window_open_file_copy_ready_cb),
(reload_remote_copy_ready_cb), (window_save_file_copy_ready_cb):
Use g_error_matches() instead of manually check error code and
domain.
2009-04-08 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (ev_window_clear_temp_symlink),
(ev_window_dispose):
Delete the temp symlink created when opening a copy.
2009-04-08 Carlos Garcia Campos <[email protected]>
* po/POTFILES.in:
Add previewer files to POTFILES.in.
2009-04-08 Carlos Garcia Campos <[email protected]>
* previewer/ev-previewer.c: (ev_previewer_unlink_tempfile),
(main):
Delete the print settings file.
2009-04-08 Carlos Garcia Campos <[email protected]>
* data/evince-ui.xml:
* shell/ev-application.[ch]: (ev_application_open_uri_at_dest),
(ev_application_open_uri), (ev_application_open_uri_list):
* shell/ev-print-operation.c: (export_print_done):
* shell/ev-window.[ch]: (ev_window_setup_action_sensitivity),
(update_chrome_visibility), (ev_window_clear_local_uri),
(ev_window_load_job_cb), (window_open_file_copy_ready_cb),
(ev_window_open_uri), (ev_window_cmd_file_open_copy_at_dest),
(ev_window_cmd_recent_file_activate),
(ev_window_open_recent_action_item_activated),
(ev_window_dispose), (open_remote_link):
* shell/main.c: (launch_previewer), (arguments_parse), (main):
Remove the preview mode from EvWindow. EvPrintOperation now
launches evince-previewer. The preview mode command line options
have not been removed to keep backwards compatibility, launching
evince-previewer when evince is run in preview mode.
2009-04-08 Carlos Garcia Campos <[email protected]>
* configure.ac:
* Makefile.am:
* data/Makefile.am:
* previewer/Makefile.am:
* previewer/ev-previewer-window.[ch]:
* previewer/ev-previewer.c:
Add evince-previewer as a separate applicaton that implements the
preview mode.
2009-04-08 Carlos Garcia Campos <[email protected]>
* configure.ac:
* Makefile.am:
* po/POTFILES.in:
* shell/Makefile.am:
* shell/ev-page-action-widget.[ch]:
* shell/ev-page-action.[ch]:
* shell/ev-stock-icons.[ch]:
* shell/ev-application.c:
* shell/main.c:
* libmisc/Makefile.am:
* libmisc/ev-page-action-widget.[ch]:
* libmisc/ev-page-action.[ch]:
* libmisc/ev-stock-icons.[ch]:
Move EvPageAction and EvStockIcons from shell to a new internal
library (libevmisc) that will be used by the evince previewer too.
2009-04-08 Nickolay V. Shmyrev <[email protected]>
* backend/tiff/tiff2ps.c (tiff2ps_context_new):
Fixes memory leak. Bug #578285.
2009-04-06 Carlos Garcia Campos <[email protected]>
* libview/ev-view.[ch]: (ev_view_set_zoom),
(ev_view_update_view_size):
* shell/ev-window.c: (ev_window_set_view_size),
(ev_window_sizing_mode_changed_cb), (ev_window_init):
Move ev_view_update_view_size() from libview to ev-window again
and make sure the view is not redrawn when calling
ev_view_set_zoom more than once with the same zoom scale.
2009-04-05 Nickolay V. Shmyrev <[email protected]>
* shell/ev-window.c:
Follow up to bug #539972. Alt+Arrows conflict with
view scrolling, changed it to Ctrl+Arrows.
2009-04-05 Nickolay V. Shmyrev <[email protected]>
* shell/ev-print-operation.c (clamp_ranges),
(ev_print_operation_export_print_dialog_response_cb):
* test/Makefile.am:
* test/test7.py:
Patch by Juanjo Marín <[email protected]> to fix
the bug 517735. Fixes preview of the empty selection.
2009-04-01 Christian Persch <[email protected]>
* data/evince.desktop.in.in: Direct bug-buddy bugs to the
BugBuddyBugs component.
2009-04-01 Nickolay V. Shmyrev <[email protected]>
* shell/ev-application.c (ev_application_init):
Set proper path to saved accels file. Fixes bug #577500.
2009-03-30 Nickolay V. Shmyrev <[email protected]>
* libview/ev-transition-animation.c:
(ev_transition_animation_paint), (ev_transition_animation_ready):
Animation is ready only when origin surface is ready. This fixes
fading animations because otherwise next page is displayed
before animaiton starts.
2009-03-26 Nickolay V. Shmyrev <[email protected]>
* test/Makefile.am:
* test/test6.py:
Added a test to check printing and a size of the file.
2009-03-24 Christian Persch <[email protected]>
* cut-n-paste/smclient/eggdesktopfile.c:
(egg_desktop_file_launchv), (egg_set_desktop_file):
* cut-n-paste/smclient/eggsmclient.c:
(egg_sm_client_get_option_group): Update smclient from libegg master.
2009-03-19 Christian Persch <[email protected]>
* shell/ev-window.c: (ev_window_cmd_save_as),
(ev_window_cmd_file_close_window),
(ev_view_popup_cmd_save_image_as),
(ev_attachment_popup_cmd_save_attachment_as): Set alternative button
order for dialogues.
2009-03-19 Christian Persch <[email protected]>
Bug 575085 – titles not translated in the nautilus tab
* properties/ev-properties-view.c: (set_property): Translate the
categories.
2009-03-16 Carlos Garcia Campos <[email protected]>
* NEWS:
* configure.ac:
Updated for release 2.26.0
2009-03-05 Tobias Mueller <[email protected]>
* properties/ev-properties-view.c:
(ev_properties_view_format_date): Make the fixed sized string a
semantically correct const char[] instead of a const char* to fix
a compiler warning if built with -Wformat.
** Fixes bug 574168
2009-03-03 Christian Persch <[email protected]>
* libdocument/ev-document-factory.c:
(ev_document_factory_get_document): If the document is encrypted,
the ev_document_factory_get_document() is supposed to return the
document *and* fill in the error. So let's propagate the local error.
2009-03-02 Carlos Garcia Campos <[email protected]>
* NEWS:
Update for release 2.25.92.
2009-03-01 Carlos Garcia Campos <[email protected]>
* libview/ev-view.c: (ev_view_goto_window_create):
Show the 'jump to page' window in the right GdkScreen. Fixes bug
#560541.
2009-03-01 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (ev_window_set_document),
(ev_window_reload_job_cb):
Do not lose page position when reloading. Fixes bug #573091.
2009-03-01 Carlos Garcia Campos <[email protected]>
* backend/pdf/ev-poppler.cc: (make_thumbnail_for_page),
(pdf_document_thumbnails_get_thumbnail),
(pdf_document_thumbnails_get_dimensions):
Make our own thumbnail when the provided one doesn't have the size
we need. Based on patch and feedback by Christian Spurk. Fixes
bugs #323198 and #307357.
2009-02-27 Christian Spurk <[email protected]>
* thumbnailer/evince-thumbnailer.c: (main):
Reduce the restriction on the minimum size of thumbnails from 40
to 1. See bug #323198.
2009-02-27 Carlos Garcia Campos <[email protected]>
* thumbnailer/evince-thumbnailer.c: (print_usage), (main):
Use GOption in thumbnailer.
2009-02-22 Carlos Garcia Campos <[email protected]>
* backend/pdf/ev-poppler.cc: (pdf_document_save),
(pdf_document_forms_form_field_text_set_text),
(pdf_document_forms_form_field_button_set_state),
(pdf_document_forms_form_field_choice_select_item),
(pdf_document_forms_form_field_choice_toggle_item),
(pdf_document_forms_form_field_choice_unselect_all),
(pdf_document_forms_form_field_choice_set_text):
Use poppler_document_save_a_copy(), which never saves the document
modifications, when saving an unmodified document. It makes saving
a copy of encrypted PDFs work again. Fixes bug #566791.
2009-02-18 Christian Persch <[email protected]>
* backend/djvu/djvu-document.c: (ev_djvu_error_quark):
Don't use g_quark_from_static_string in a loadable module!
2009-02-17 Carlos Garcia Campos <[email protected]>
* configure.ac:
Update for release 2.25.91
2009-02-16 Thomas H.P. Andersen <[email protected]>
* backend/impress/r_gradient.c: (r_draw_gradient): Replace deprecated
GTK symbol in commented out code. Bug #571707
2009-02-16 Carlos Garcia Campos <[email protected]>
* NEWS:
Update for release 2.25.91.
2009-02-16 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (get_mime_type_from_uri): Fix a freed
memory read.
2009-02-15 Christian Persch <[email protected]>
* backend/dvi/dvi-document.c: (hsb2rgb): Fix signed/unsigned compiler
warnings.
2009-02-15 Christian Persch <[email protected]>
* libdocument/Makefile.am:
* libview/Makefile.am: Rename GIRs to EvinceDocument/EvinceView.
2009-02-15 Christian Persch <[email protected]>
* libdocument/ev-document-type-builtins.c.template:
* libview/ev-view-type-builtins.c.template: Use g_intern_static_string.
2009-02-14 Christian Persch <[email protected]>
* backend/impress/impress-document.c: (impress_document_save):
Fill in the error.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-document.c: (ev_document_load): Add code to catch
backends incorrectly implementing the load vfunc.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-document-factory.c:
(ev_document_factory_get_document): Use a local GError, and propagate
as appropriate, making sure always to fill in @error if returning NULL.
2009-02-14 Christian Persch <[email protected]>
* shell/ev-window.c: (ev_window_load_job_cb): Use g_error_matches.
2009-02-14 Christian Persch <[email protected]>
* backend/pdf/ev-poppler.cc: Plug a mem leak.
2009-02-14 Christian Persch <[email protected]>
* backend/dvi/dvi-document.c: (dvi_document_load): Don't overwite
an error.
2009-02-14 Christian Persch <[email protected]>
* backend/djvu/djvu-document.c: (djvu_document_load): Make sure
to always set @error when returning FALSE. Fix a typo.
2009-02-14 Christian Persch <[email protected]>
* backend/tiff/tiff-document.c: (tiff_document_load): Make sure
to always set @error when returning FALSE.
2009-02-14 Christian Persch <[email protected]>
* backend/comics/comics-document.c: (comics_document_load): Make sure
to always set @error when returning FALSE.
2009-02-14 Christian Persch <[email protected]>
* backend/impress/impress-document.c: (impress_document_load): Plug a
mem leak.
2009-02-14 Christian Persch <[email protected]>
* backend/impress/impress-document.c: (impress_document_load): Don't
overwrite an error.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-document.c: (ev_document_info_copy): Remove
unnecessary NULL check; g_strdup() is NULL-safe.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-document-factory.c: (get_document_from_uri): Document
that this returns either NULL and fills in error, or non-NULL. Use a
local GError so we can reliably check it.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-document-factory.c: (get_document_from_uri): Use the
content type to get the description, not the MIME type.
2009-02-14 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (compression_run): Make sure to fill
in @error on failure. Also, since this is exported in public APIs,
cope with the passed-in GError** being NULL.
2009-02-13 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (get_mime_type_from_uri): NULL
safety.
(get_mime_type_from_data): Return the MIME type, not the content type.
2009-02-13 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (get_mime_type_from_data): Don't leak
the input stream.
2009-02-13 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (get_mime_type_from_data): Propagate
all errors upwards.
2009-02-13 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (get_mime_type_from_data): Don't use
more bytes from buffer than were read from the file.
2009-02-15 Nickolay V. Shmyrev <[email protected]>
* properties/ev-properties-view.c (set_property):
Fixes bug #571787.
2009-02-14 Carlos Garcia Campos <[email protected]>
* shell/eggfindbar.c: (egg_find_bar_init):
Use gtk_tool_button_set_use_underline() for next/previous buttons
so that the underline is used for the mnemonic. Fixes bug #571547.
2009-02-09 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (setup_document_from_metadata),
(setup_sidebar_from_metadata), (setup_document_from_metadata),
(setup_view_from_metadata), (ev_window_set_document),
(ev_window_load_job_cb), (ev_window_reload_job_cb),
(ev_window_reload_remote), (ev_window_init):
Do not use metadata when reloading the document, so that the
window is not resized when reloading. See bugs #571051 and
#304249.
2009-02-09 Carlos Garcia Campos <[email protected]>
* configure.ac:
* cut-n-paste/smclient/Makefile.am:
Fix smclient libs on cycgwin. See bug #339172.
2009-02-08 Christian Persch <[email protected]>
* configure.ac:
* libdocument/Makefile.am:
* libview/Makefile.am: Add experimental introspection support.
Disabled by default; use --enable-introspection to enable it.
Bug #569083.
2009-02-08 Christian Persch <[email protected]>
* libview/Makefile.am: Link libevdocument.la to libevview.la.
2009-02-05 Christian Persch <[email protected]>
* backend/comics/comics-document.c: (comics_document_load):
* backend/djvu/djvu-document.c: (djvu_document_load):
* backend/dvi/dvi-document.c: (dvi_document_load):
* backend/impress/impress-document.c: (impress_document_load):
* backend/pdf/ev-poppler.cc:
* libdocument/ev-document-factory.c: (get_document_from_uri),
(ev_document_factory_get_document):
* shell/ev-print-operation.c:
(ev_print_operation_export_print_dialog_response_cb): Use
g_set_error_literal now that we depend on glib 2.18.
2009-02-05 Hib Eris <[email protected]>
* shell/ev-application.c:
Include gdkx.h only with X11. See bug #339172.
2009-02-05 Hib Eris <[email protected]>
* backend/pdf/pdfdocument.evince-backend.in:
Add application/x-ext-pdf mime type for pdf backend. See bug
#339172.
2009-02-05 Carlos Garcia Campos <[email protected]>
* configure.ac:
* cut-n-paste/smclient/Makefile.am:
* cut-n-paste/smclient/eggdesktopfile.c:
* cut-n-paste/smclient/eggsmclient-win32.c:
* shell/main.c:
Make session manager code compile for w32. These changes have been
taken from upstream libegg. Based on patch by Hib Eris. See bug
#339172.
2009-02-05 Hib Eris <[email protected]>
* cut-n-paste/totem-screensaver/totem-scrsaver.c:
Make screensaver code compile for w32. These changes have been
copied from upstream totem. See bug #339172.
2009-02-05 Carlos Garcia Campos <[email protected]>
* configure.ac:
* shell/ev-window.c: (ev_window_setup_action_sensitivity):
Make use of GConf optional. Based on patch by Hib Eris. See bug
#339172.
2009-02-04 Christian Persch <[email protected]>
* libdocument/ev-init.c: (ev_init): Make ev_init() also bind the
evince gettext domain, so i18n works in the library.
* properties/ev-properties-main.c: (nautilus_module_initialize):
Remove extra bindtextdomain call.
2009-02-04 Christian Persch <[email protected]>
* backend/comics/comics-document.c:
* backend/djvu/djvu-document.c:
* backend/dvi/dvi-document.c:
* backend/impress/impress-document.c:
* backend/pdf/ev-poppler.cc:
* backend/pixbuf/pixbuf-document.c:
* backend/ps/ev-spectre.c:
* backend/tiff/tiff-document.c:
* libdocument/ev-attachment.c:
* libdocument/ev-document-factory.c:
* libview/ev-jobs.c:
* libview/ev-view-accessible.c:
* libview/ev-view.c:
* properties/ev-properties-view.c: Include gi18n-lib.h instead of
gi18n.h.
2009-02-01 Carlos Garcia Campos <[email protected]>
* NEWS:
* configure.ac:
Update for release 2.25.90
2009-02-01 Carlos Garcia Campos <[email protected]>
* cut-n-paste/zoom-control/ephy-zoom-control.c:
(ephy_zoom_control_finalize), (ephy_zoom_control_class_init):
Remove the old tooltips code and use G_DEFINE_TYPE().
2009-02-01 Carlos Garcia Campos <[email protected]>
* configure.ac:
* help/reference/Makefile.am:
* help/reference/libdocument/Makefile.am:
* help/reference/libdocument/libevdocument-docs.sgml:
* help/reference/libdocument/libevdocument.types:
* help/reference/libdocument/version.xml.in:
* help/reference/libview/Makefile.am:
* help/reference/libview/libevview-docs.sgml:
* help/reference/libview/libevview.types:
* help/reference/libview/version.xml.in:
* help/reference/shell/Makefile.am:
* help/reference/shell/evince-docs.sgml:
* help/reference/shell/evince.types:
* help/reference/shell/tmpl/dummy.sgml:
* help/reference/shell/version.xml.in:
Split API documentation into libdocument, libview and
shell. Required gtk-doc files has been added, but API docs still
need to be completed and improved. Fixes bug #568465.
2009-02-01 Christian Persch <[email protected]>
* libdocument/ev-document.h: Don't make GTypeInfo static. Bug #570077.
2009-02-01 Christian Persch <[email protected]>
* backend/Makefile.am:
A backend/backend.symbols:
* configure.ac: Only export the backend module entry point. Bug
#569998.
2009-02-01 Carlos Garcia Campos <[email protected]>
* shell/eggfindbar.c: (egg_find_bar_init):
Add mnemonics to buttons in search bar. Fixes bug #569212.
2009-02-01 Carlos Garcia Campos <[email protected]>
* shell/ev-print-operation.c:
(ev_print_operation_export_print_dialog_response_cb):
Make sure pages_per_sheet is always >= 1. Fixes bug #569328.
2009-02-01 Carlos Garcia Campos <[email protected]>
* backend/pdf/ev-poppler.cc: (ev_link_dest_from_dest):
Clamp top/bottom values of destinations to make sure they are not
bigger than the page height. Fixes bug #569327.
2009-02-01 Carlos Garcia Campos <[email protected]>
* libdocument/ev-debug.h:
Fix build when debug mode is disabled.
2009-01-30 Christian Persch <[email protected]>
* libdocument/ev-backends-manager.c: (ev_backends_manager_load): Make
this return TRUE only if any backends were loaded, so the ev_init()
function works as documented.
2009-01-30 Christian Persch <[email protected]>
* evince-document.h:
* libdocument/Makefile.am:
A libdocument/ev-init.[ch]: Add single init/shutdown method. Bug
#569117.
* libdocument/ev-backends-manager.c: (_ev_backends_manager_init):
* libdocument/ev-backends-manager.h:
* libdocument/ev-debug.c: (_ev_debug_init), (_ev_debug_shutdown):
* libdocument/ev-debug.h:
* libdocument/ev-file-helpers.c: (_ev_file_helpers_init),
(_ev_file_helpers_shutdown):
* libdocument/ev-file-helpers.h: Make these init/shutdown methods
private.
* properties/ev-properties-main.c: (nautilus_module_initialize),
(nautilus_module_shutdown):
* shell/main.c: (main):
* thumbnailer/evince-thumbnailer.c: (main): Use the new single
init/shutdown method.
2009-01-29 Christian Persch <[email protected]>
* shell/main.c: (option_version_cb): Add --version which was lost in
the libgnome removal. Bug #562869.
2009-01-26 Christian Persch <[email protected]>
* shell/ev-application.c: (ev_application_register_service),
(ev_application_shutdown):
* shell/main.c: (main): Move metadata manager initialisation and
shutdown into EvApplication. Follow-up from bug #569120.
2009-01-26 Christian Persch <[email protected]>
* shell/ev-metadata-manager.c: (ev_metadata_manager_set_string): Don't
copy the string twice. Bug #569231.
2009-01-26 Christian Persch <[email protected]>
* libdocument/ev-file-helpers.c: (ev_dir_ensure_exists),
(ev_tmp_dir), (ev_file_helpers_init), (ev_file_helpers_shutdown):
* libdocument/ev-file-helpers.h:
* shell/ev-application.c: (ev_application_shutdown),
(ev_application_init), (ev_application_screensaver_disable),
(ev_application_save_print_settings),
(ev_application_set_page_setup):
* shell/ev-application.h:
* shell/ev-metadata-manager.c: (load_values),
(ev_metadata_manager_save): Move ev_dot_dir() from libdocument to
shell, since it shouldn't be public API. Bug #569120.
* libdocument/ev-file-helpers.c: (ev_tmp_filename): Use
g_get_prgname() instead of hardcoding "evince" for the tmpdir name.
2009-01-25 Christian Persch <[email protected]>
Bug 569082 – use versioned directory for backends
* configure.ac: Define ev_binary_version and backenddir.
* evince-document.pc.in: Add backenddir variable.
* libdocument/Makefile.am:
* backend/*/Makefile.am: Remove backenddir definition, so it picks
up the one from configure.
2009-01-25 Christian Persch <[email protected]>
* configure.ac:
* evince-document.pc.in: Renamed from evince-backend.pc.in.
* libdocument/Makefile.am: Renamed library to libevdocument.la.
* libview/Makefile.am:
* shell/Makefile.am:
* backend/*/Makefile.am: Adapt to changed library name.
* libdocument/Makefile.am:
* libview/Makefile.am: Change the installed headers path to match
the directory names in SVN.
* evince-document.h:
* evince-view.h: Add single headers. Bug #568227.
* libdocument/*.h:
* libview/*.h: Add single headers guards.
* libview/Makefile.am:
* libdocument/Makefile.am:
* backend/*/Makefile.am:
* help/reference/Makefile.am: Define EVINCE_COMPILATION, so we can
still include individual headers.
* properties/Makefile.am:
* properties/ev-properties-main.c:
* properties/ev-properties-view.h:
* thumbnailer/Makefile.am:
* thumbnailer/evince-thumbnailer.c: Include only evince-document.h.
* libdocument/Makefile.am:
* libview/Makefile.am: Generate type builtins from all installed headers.
* libdocument/ev-link-action.[ch]:
* libdocument/ev-link-dest.[ch]:
* libdocument/ev-transition-effect.[ch]:
* libview/ev-view.[ch]: Remove handcoded type builtins.
* libdocument/Makefile.am:
* evince-document.h: Add ev-document-factory.h to the public headers.
2009-01-24 Carlos Garcia Campos <[email protected]>
* shell/ev-sidebar-page.c:
Use EV_DEFINE_INTERFACE to define EvSidebarPage interface. See bug
#568228.
2009-01-24 Carlos Garcia Campos <[email protected]>
* libdocument/ev-document.h:
Add EV_DEFINE_INTERFACE macro.
* libdocument/ev-async-renderer.c:
* libdocument/ev-document-find.c:
* libdocument/ev-document-fonts.c:
* libdocument/ev-document-forms.c:
* libdocument/ev-document-images.c:
* libdocument/ev-document-layers.c:
* libdocument/ev-document-links.c:
* libdocument/ev-document-security.c:
* libdocument/ev-document-thumbnails.c:
* libdocument/ev-document-transition.c:
* libdocument/ev-document.c:
* libdocument/ev-file-exporter.c:
* libdocument/ev-selection.c:
Use EV_DEFINE_INTERFACE macro to define interfaces in
libdocument. See bug #568228.
2009-01-24 Carlos Garcia Campos <[email protected]>
* libdocument/ev-document.[ch]:
Add EV_DEFINE_BOXED_TYPE macro to define boxed types. See bug
#568228.
2009-01-24 Nickolay V. Shmyrev <[email protected]>
* cut-n-paste/toolbar-editor/egg-editable-toolbar.c
(drag_begin_cb), (drag_end_cb), (configure_item_tooltip),
(new_separator_pixbuf):
* cut-n-paste/toolbar-editor/egg-toolbar-editor.c
(egg_toolbar_editor_disconnect_model),
(egg_toolbar_editor_set_model), (egg_toolbar_editor_class_init),
(egg_toolbar_editor_finalize):
* cut-n-paste/toolbar-editor/egg-toolbar-editor.h:
* cut-n-paste/toolbar-editor/eggmarshalers.list:
Sync EggToolbarEditor with libegg.
2009-01-22 Michael J. Chudobiak <[email protected]>
* libdocument/ev-file-helpers.c: (ev_xfer_uri_simple):
When saving a file, using the default permissions for the user/system,
respecting umask and any setgid bit on the directory. Uses the new
G_FILE_COPY_TARGET_DEFAULT_PERMS flag in glib 2.19.0, if available.
Bug #568593.
2009-01-21 Christian Persch <[email protected]>
* configure.ac:
* libdocument/Makefile.am:
* libview/Makefile.am: Add libtool versioning to libevbackend and
libevview. Bug #568229.
2009-01-21 Christian Persch <[email protected]>
* Makefile.am:
* configure.ac:
A evince-{backend,view}.pc.in: Add pkgconfig files. Bug #568220.
2009-01-21 Christian Persch <[email protected]>
* configure.ac:
* libdocument/Makefile.am:
A libdocument/ev-version.h.in: Add version defines and version check
macro. Bug #568224.
2009-01-21 Hiroyuki Ikezoe <[email protected]>
* shell/ev-sidebar-links.c
* shell/ev-print-operation.c:
* shell/ev-history.c:
* shell/ev-file-monitor.c:
* shell/ev-window.c:
* shell/ev-password-view.c:
* shell/ev-sidebar-thumbnails.c:
* shell/ev-sidebar-attachments.c:
* libview/ev-pixbuf-cache.c:
* libview/ev-view.c: Remove needless G_OBJECT from g_signal_connect.
Bug #568386.
2009-01-20 Tomeu Vizoso <[email protected]>
* libdocument/ev-document-info.h:
Add missing EV_TYPE_DOCUMENT_INFO. See bug #567790.
2009-01-20 Tomeu Vizoso <[email protected]>
* libview/Makefile.am:
Install ev-job-scheduler.h. See bug #567790.
2009-01-20 Tomeu Vizoso <[email protected]>
* libdocument/Makefile.am:
Install ev-backends-manager.h and
ev-document-type-builtins.h. Fixes bug #567787.
2009-01-18 Carlos Garcia Campos <[email protected]>
* NEWS:
* configure.ac:
Update for release 2.25.5
2009-01-18 Carlos Garcia Campos <[email protected]>
* libview/ev-view.c: (ev_view_drag_data_get):
Fix second parameter passed to gtk_selection_data_set_uris(),
it expects a gchar **.
2009-01-18 Tomeu Vizoso <[email protected]>
* libdocument/Makefile.am:
* libdocument/ev-document-info.h:
* libdocument/ev-document-type-builtins.c.template:
* libdocument/ev-document-type-builtins.h.template:
* libdocument/ev-document.c: (ev_document_info_get_type),
(ev_document_info_copy):
Make EvDocumentInfo and enums definded in ev-document-info.h
GTypes. Fixes bug #567789.
2009-01-18 Michal Vaner <[email protected]>
* shell/main.c (arguments_parse): Fix for a minor code typo.
2009-01-18 Christian Persch <[email protected]>
* help/reference/Makefile.am:
* help/reference/evince.types: Fix the API docs build. Bug #568171.
2009-01-18 Tomeu Vizoso <[email protected]>
* libview/Makefile.am:
* libview/ev-view-type-builtins.c.template:
* libview/ev-view-type-builtins.h.template:
Make EvJobPriority a proper GType. Fixes bug #567788.
2009-01-18 Carlos Garcia Campos <[email protected]>
* configure.ac:
* cut-n-paste/*/Makefile.am:
* libdocument/Makefile.am:
Rename LIB as LIBDOCUMENT and use SHELL_CORE for cut-n-paste
code.
2009-01-18 Christian Persch <[email protected]>
* libview/ev-view.c: (ev_view_drag_data_get),
(ev_view_drag_motion), (ev_view_update_primary_selection),
(clear_link_selected):
* shell/ev-sidebar-attachments.c:
(ev_sidebar_attachments_drag_data_get),
(ev_sidebar_attachments_get_property),
(ev_sidebar_attachments_init):
* shell/ev-window.c: Update drag handling code to use the
gtk_*_add_uri_targets and gtk_*_add_text_targets targets instead of
hardcoding the targets lists. Bug #558084.
2009-01-18 Carlos Garcia Campos <[email protected]>
* libdocument/Makefile.am:
* libdocument/ev-backend-marshal.c:
* libdocument/ev-backend-marshalers.list:
* libdocument/ev-document.c:
Remove unused marshalers stuff from libdocument.
2009-01-18 Carlos Garcia Campos <[email protected]>
* po/POTFILES.in:
Update for the current source tree.
2009-01-18 Carlos Garcia Campos <[email protected]>
* configure.ac:
* Makefile.am:
* libdocument/Makefile.am:
* libview/Makefile.am:
* libview/ev-job-scheduler.[ch]:
* libview/ev-jobs.[ch]:
* libview/ev-page-cache.[ch]:
* libview/ev-pixbuf-cache.[ch]:
* libview/ev-timeline.[ch]:
* libview/ev-transition-animation.[ch]:
* libview/ev-view-accessible.[ch]:
* libview/ev-view-marshal.list:
* libview/ev-view.[ch]:
* shell/Makefile.am:
Move EvView specific code to a libeviview library so that it can
be embbeded in other applications. Based on patches by Tomeu
Vizoso. Fixes bug #567751.
2009-01-18 Carlos Garcia Campos <[email protected]>
* shell/ev-jobs.[ch]: (ev_job_load_dispose), (ev_job_load_new):
* shell/ev-window.c: (ev_window_load_job_cb),
(ev_window_load_job_cb), (ev_window_open_uri),
(ev_window_reload_local), (ev_window_dispose):
Remove dest, mode and search_string from EvJobLoad since they are
not really needed by the job, but for the window.
2009-01-17 Carlos Garcia Campos <[email protected]>
* shell/ev-view.c: (ev_view_drag_data_received),
(ev_view_class_init), (ev_view_init):
* shell/ev-window.c: (ev_window_drag_data_received),
(ev_window_class_init), (ev_window_init):
Make the whole EvWindow the destination of a drag and drop
operation.
2009-01-16 Carlos Garcia Campos <[email protected]>
* shell/ev-window.c: (window_open_file_copy_progress_cb):
Add missing brakets around the percentage in progress
messages. See bug #567910.
2009-01-16 Carlos Garcia Campos <[email protected]>
* shell/ev-application.c: (ev_application_open_window),
(ev_application_open_uri_at_dest):
Do no use gdk_x11_* when not available. Based on patch by Hib
Eris, see bug #339172.
2009-01-16 Hib Eris <[email protected]>
* configure.ac:
* properties/ev-properties-view.c:
(ev_properties_view_format_date):