X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;f=ChangeLog;h=f90335244ae77e7c9f81e7908b4f045fb791117f;hb=a50ca0528a09e8e001c4600371048774e4029057;hp=b446f7869546231c40b09fe1e9d0821bf274a09e;hpb=cbdeaed3897f8fdd01995a356c1e3a829fffbf7e;p=evince.git diff --git a/ChangeLog b/ChangeLog index b446f786..f9033524 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,539 @@ +2005-06-28 Nickolay V. Shmyrev + + * pdf/ev-poppler.cc: + + Fix for Bug 309080: crash on window close. + + * shell/ev-page-action.c: (page_changed_cb): + + Fix for Bug 309168: Fix build with gcc 2.95. Thanks to + jensgr@gmx.net (Jens Granseuer). + +2005-06-25 Marcel Telka + + * configure.in (ALL_LINGUAS): Added sk. + +2005-06-24 Carlos Garcia Campos + + * shell/ev-window.c: Make rotate menu entries unsensitive if there is + not a document open + +2005-06-24 Marco Pesenti Gritti + + * NEWS: + * configure.ac: + + Release 0.3.2 + + * cut-n-paste/recent-files/Makefile.am: + + Fix make distcheck + +2005-06-24 Marco Pesenti Gritti + + * pixbuf/pixbuf-document.c: (pixbuf_document_get_orientation), + (pixbuf_document_set_orientation), (rotate_pixbuf), + (pixbuf_document_get_page_size), (pixbuf_document_render_pixbuf), + (pixbuf_document_document_iface_init), (pixbuf_document_init): + + Implement rotation and cleanup the code a bit. + + * tiff/tiff-document.c: (tiff_document_get_page_size), + (tiff_document_get_orientation), (tiff_document_set_orientation), + (rotate_pixbuf), (tiff_document_render_pixbuf), + (tiff_document_document_iface_init), (tiff_document_init): + + Implement rotation. Was the quicker solution for the release + but we really need to share this code in the shell. + +2005-06-24 Marco Pesenti Gritti + + * pdf/ev-poppler.cc: + + Enable rotation, require poppler cvs. Fix a leak. + +2005-06-24 Nickolay V. Shmyrev + + * shell/ev-window.c: (update_action_sensitivity): + + Make properties unsensitive if document backend doesn't provide + any info + +2005-06-24 Nickolay V. Shmyrev + + * dvi/mdvi-lib/bitmap.c: (bitmap_alloc), (bitmap_alloc_raw), + (bitmap_flip_horizontally), (bitmap_flip_vertically), + (bitmap_flip_diagonally), (bitmap_rotate_clockwise), + (bitmap_rotate_counter_clockwise), (bitmap_flip_rotate_clockwise), + (bitmap_flip_rotate_counter_clockwise): + * dvi/mdvi-lib/color.c: (mdvi_push_color), (get_color_table): + * dvi/mdvi-lib/common.c: (read_string), (buff_free), (buff_add), + (buff_gets): + * dvi/mdvi-lib/common.h: + * dvi/mdvi-lib/dvimisc.c: (mdvi_push_color): + * dvi/mdvi-lib/dviread.c: (get_bytes), (dreset), (define_font), + (opendvi), (mdvi_reload), (mdvi_init_context), + (mdvi_destroy_context), (mdvi_dopage), (special): + * dvi/mdvi-lib/font.c: (font_drop_one), (font_free_unused): + * dvi/mdvi-lib/fontmap.c: (read_encoding), (destroy_encoding), + (file_hash_free), (register_encoding), (parse_spec), + (mdvi_load_fontmap), (free_ent), (mdvi_init_fontmaps), + (mdvi_add_fontmap_file), (mdvi_ps_read_fontmap), + (mdvi_ps_flush_fonts), (mdvi_ps_find_font), (mdvi_ps_get_metrics): + * dvi/mdvi-lib/fontsrch.c: (mdvi_list_font_class), + (mdvi_register_font_type), (mdvi_unregister_font_type), + (lookup_font), (mdvi_add_font), (mdvi_font_retry): + * dvi/mdvi-lib/gf.c: (gf_read_bitmap), (gf_load_font): + * dvi/mdvi-lib/hash.c: (mdvi_hash_remove), (mdvi_hash_remove_ptr), + (mdvi_hash_destroy_key), (mdvi_hash_reset): + * dvi/mdvi-lib/pagesel.c: (mdvi_parse_range), + (mdvi_parse_page_spec), (mdvi_free_page_spec), (main): + * dvi/mdvi-lib/paper.c: (mdvi_free_paper_specs): + * dvi/mdvi-lib/pk.c: (pk_lookup), (pk_lookupn), (pk_load_font): + * dvi/mdvi-lib/sp-epsf.c: (epsf_special): + * dvi/mdvi-lib/special.c: (mdvi_register_special), + (mdvi_unregister_special), (mdvi_flush_specials): + * dvi/mdvi-lib/t1.c: (t1_lookup_font), (t1_really_load_font), + (t1_font_remove): + * dvi/mdvi-lib/tfm.c: (get_tfm_chars): + * dvi/mdvi-lib/tfmfile.c: (afm_load_file), (tfm_load_file), + (ofm1_load_file), (ofm_load_file), (get_font_metrics), + (free_font_metrics), (flush_font_metrics): + * dvi/mdvi-lib/tt.c: (tt_really_load_font), (tt_get_bitmap), + (tt_font_remove): + * dvi/mdvi-lib/util.c: (mdvi_malloc), (mdvi_realloc), + (mdvi_calloc), (mdvi_free), (mdvi_strdup), (mdvi_strncpy), + (mdvi_strndup), (mdvi_memdup), (xstradd), (dstring_append), + (dstring_insert), (dstring_new), (dstring_reset): + * dvi/mdvi-lib/vf.c: (vf_load_font), (vf_free_macros): + + Rename xmalloc and xfree to mdvi_malloc and mdvi_free to + avoid conflict with libtool on FC4 + + * shell/ev-window.c: (ev_window_cmd_help_about): + + Update copyright year. Fix for bug 308828. + +2005-06-23 Nikolay V. Shmyrev + + * shell/ev-view.c: (add_scroll_binding_keypad), + (ev_view_binding_activated), (ev_view_class_init), + (on_adjustment_value_changed): + + Bug 170874: Arrow keys switch pages in presentation mode + +2005-06-23 Nikolay V. Shmyrev + + * shell/ev-window.c: (ev_window_sidebar_visibility_changed_cb): + + Fix for Bug 308265: Sidebar dissappears coming out of + Presentation mode + +2005-06-23 Nikolay V. Shmyrev + + * shell/ev-application.c: (ev_application_open): + * shell/ev-document-types.c: (ev_document_types_add_filters), + (ev_document_types_add_filters_for_type): + * shell/ev-document-types.h: + * shell/ev-window.c: (ev_window_cmd_save_as): + + Suggest basename as template when saving, provide filters + for save dialog. It's bug 308402 + +2005-06-20 Nickolay V. Shmyrev + + * pdf/ev-poppler.cc: + * shell/ev-sidebar-links.c: (job_finished_callback): + * shell/ev-view.c: (update_find_status_message): + + Some leaks fixed + +2005-06-19 Christian Persch + + * cut-n-paste/recent-files/egg-recent-view-uimanager.c: + (egg_recent_view_uimanager_set_list): + + Fix buglet in !show_numbers case. + +2005-06-19 Christian Persch + + * cut-n-paste/recent-files/egg-recent-view-uimanager.c: + (connect_proxy_cb), (egg_recent_view_uimanager_set_list): + + Use pango ellipsisation. + + * pdf/ev-poppler.cc: + + Fix refcount leak, from nsh. + +2005-06-19 Nickolay V. Shmyrev + + * cut-n-paste/recent-files/Makefile.am: + * cut-n-paste/recent-files/egg-recent-view-gtk.c: + * cut-n-paste/recent-files/egg-recent-view-gtk.h: + + Removed EggRecentViewGtk + + * cut-n-paste/recent-files/egg-recent-view-uimanager.c: + * cut-n-paste/recent-files/egg-recent-view-uimanager.h: + * shell/ev-window.c: (ev_window_cmd_recent_file_activate), + (ev_window_setup_recent): + + Use ViewUIManager instead of ViewGtk. Less leaks, more compatibility + with other projects + +2005-06-19 Nickolay V. Shmyrev + + * cut-n-paste/recent-files/egg-recent-view-gtk.c: + (egg_recent_view_gtk_finalize): + + Fix memory leak + + * cut-n-paste/toolbar-editor/Makefile.am: + + Fix location of cursor icon. + + * pdf/ev-poppler.cc: + * shell/ev-page-action.c: (build_new_tree_cb), (match_selected_cb), + (display_completion_text), (match_completion): + * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose), + (selection_changed_callback), (create_loading_model), + (print_section_cb), (links_page_num_func), + (update_page_callback_foreach): + * shell/ev-window.c: (ev_window_dispose): + + Small memory fixes. Links model now store objects instead + of pointers to improve memory management. + +2005-06-19 Nickolay V. Shmyrev + + * shell/ev-window.c: (zoom_control_changed_cb): + + Fix update of zoom control (bug 308268). + +Sat Jun 18 22:46:42 2005 Jonathan Blandford + + * shell/ev-properties.c (set_property): escape the text correctly. + Handles non-UTF-8 properties and escaped properties. Also, sets + the text to "None" if the property isn't set. + + * data/evince-properties.glade: Change the label to be ellipsized, + and give it a minimum size. + +2005-06-19 Nickolay V. Shmyrev + + * lib/ev-file-helpers.c: (ev_file_helpers_shutdown): + * shell/ev-sidebar-links.c: (create_loading_model): + * shell/ev-sidebar-thumbnails.c: (ev_sidebar_thumbnails_dispose): + * shell/ev-view.c: (ev_view_set_document): + * shell/ev-window.c: (ev_window_dispose): + + Various small fixes, mostly memory leaks. Thanks to valgrind. + +2005-06-19 Martin Kretzschmar + + * ps/ps-document.c: remove the locale.h include again ;-). And + kill the (bogus) setlocale/savelocale business. + +2005-06-19 Jaap A. Haitsma + + * ps/ps-document.c: + + Include locale.h to fix build + + * shell/ev-sidebar.c: + + Remove unnecessary includes + +2005-06-19 Nickolay V. Shmyrev + + * dvi/dvi-document.c: (dvi_document_load): + * dvi/mdvi-lib/dviread.c: (mdvi_init_context): + * po/POTFILES.in: + + Check for incorrect dvi files. Fix parsing dvi on AMD64 + platform. Thanks to tester@tester.ca (Olivier Crete). + +2005-06-18 Nickolay V. Shmyrev + + * shell/ev-page-action.c: (match_selected_cb), + (display_completion_text), (match_completion), (update_model): + * shell/ev-sidebar-links.c: (ev_sidebar_links_dispose), + (expand_open_links): + * shell/ev-sidebar.c: (ev_sidebar_destroy), + (ev_sidebar_menu_item_activate_cb), (ev_sidebar_add_page), + (ev_sidebar_set_document): + * shell/ev-window.c: (ev_window_xfer_job_cb), + (sidebar_widget_model_set), (sidebar_page_main_widget_update_cb): + + Fixed lot's of memory leaks, for example, memory leak on reload, + described in bug 307793. + +2005-06-18 Marco Pesenti Gritti + + * pdf/ev-poppler.cc: + * shell/ev-sidebar-thumbnails.c: (clear_range), (add_range), + (update_visible_range), (adjustment_changed_cb), + (ev_sidebar_thumbnails_fill_model), + (ev_sidebar_thumbnails_refresh), + (ev_sidebar_tree_selection_changed), + (ev_sidebar_icon_selection_changed), + (ev_sidebar_thumbnails_use_icon_view), + (ev_sidebar_thumbnails_set_document): + * shell/ev-sidebar-thumbnails.h: + * shell/ev-window.c: (ev_window_cmd_edit_rotate_left), + (ev_window_cmd_edit_rotate_right), (ev_window_init): + + Refresh thumbnails when changing orientation. Not fully + working yet becuase of a sidebar bug. + + Set page orientation to poppler page everywhere. This sucks + really need to fix poppler. + +2005-06-18 Marco Pesenti Gritti + + * cut-n-paste/recent-files/egg-recent-view-gtk.c: + (egg_recent_view_gtk_new_menu_item), + (egg_recent_view_gtk_set_property), + (egg_recent_view_gtk_get_property), + (egg_recent_view_gtk_class_init), (egg_recent_view_gtk_init), + (egg_recent_view_gtk_set_tooltip_func), + (egg_recent_view_gtk_set_label_width), + (egg_recent_view_gtk_get_label_width): + * cut-n-paste/recent-files/egg-recent-view-gtk.h: + + Sync with libegg (ellipsize labels) + +2005-06-18 Nickolay V. Shmyrev + + * data/evince-ui.xml: + * shell/ev-window.c: (ev_window_cmd_go_forward), + (ev_window_cmd_go_backward): + + Shift + PageUp moves 10 Pages. Fix for 306125 + +2005-06-17 Marco Pesenti Gritti + + * pdf/ev-poppler.cc: + + Add a flag to check if orientation has been overriden + +2005-06-17 Martin Kretzschmar + + * ps/ps.c (psscan, psfree): read "Creator:" comment, free creator + field if necessary. + + * ps/ps.h: add creator field to document. + + * ps/ps-document.c (ps_document_get_info): set format to PostScript, + set creator field. + +2005-06-17 Marco Pesenti Gritti + + * data/evince-properties.glade: + * shell/ev-properties.c: (ev_properties_set_document): + + s/PDF Version/Format + +2005-06-17 Marco Pesenti Gritti + + * shell/ev-properties.c: (ev_properties_set_document): + + Remove unnecessary translations + +2005-06-17 Marco Pesenti Gritti + + * cut-n-paste/toolbar-editor/Makefile.am: + + Correct library name + +2005-06-17 Marco Pesenti Gritti + + * configure.ac: + * cut-n-paste/recent-files/egg-recent-model.c: + (egg_recent_model_write_raw), (egg_recent_model_lock_file), + (egg_recent_model_unlock_file): + * cut-n-paste/recent-files/egg-recent-util.c: + (egg_recent_util_get_unique_id): + * cut-n-paste/recent-files/update-from-egg.sh: + * cut-n-paste/toolbar-editor/Makefile.am: + * cut-n-paste/toolbar-editor/egg-editable-toolbar.c: + * cut-n-paste/toolbar-editor/egg-editable-toolbar.h: + * cut-n-paste/toolbar-editor/egg-toolbar-editor.c: + * cut-n-paste/toolbar-editor/egg-toolbars-model.c: + (egg_toolbars_model_get_type): + * cut-n-paste/toolbar-editor/egg-toolbars-model.h: + + Better makefile for toolbar editor and update everything + to latest libegg. + +2005-06-17 Marco Pesenti Gritti + + * shell/ev-window.c: (update_document_mode): + + Prefer presentation mode when the document + require fullscreen. + +2005-06-17 Marco Pesenti Gritti + + * data/evince-ui.xml: + * shell/ev-window.c: + + Add control-equal for zooming + +2005-06-17 Theppitak Karoonboonyanan + + * configure.ac: Added 'th' (Thai) to ALL_LINGUAS. + +2005-06-16 Marco Pesenti Gritti + + * backend/ev-document.c: (ev_document_get_orientation): + * backend/ev-document.h: + * pdf/ev-poppler.cc: + * ps/ps-document.c: (ps_document_get_orientation), + (ps_document_set_orientation), (ps_document_document_iface_init): + + Add a get_orientation api. Improve set_orientation. + + * data/evince-ui.xml: + * shell/ev-view.c: (ev_view_set_orientation), + (ev_view_rotate_right), (ev_view_rotate_left): + * shell/ev-view.h: + * shell/ev-window.c: (ev_window_cmd_edit_rotate_left), + (ev_window_cmd_edit_rotate_right): + + Better ui for changing document orientation + +2005-06-16 Nickolay V. Shmyrev + + * shell/ev-sidebar-links.c: (ev_sidebar_links_get_property), + (ev_sidebar_links_class_init), (ev_sidebar_links_get_label): + * shell/ev-sidebar-links.h: + * shell/ev-sidebar-page.c: (ev_sidebar_page_get_type), + (ev_sidebar_page_iface_init): + * shell/ev-sidebar-page.h: + * shell/ev-sidebar-thumbnails.c: + (ev_sidebar_thumbnails_get_property), + (ev_sidebar_thumbnails_class_init), + (ev_sidebar_thumbnails_set_document): + * shell/ev-sidebar-thumbnails.h: + * shell/ev-view.c: (ev_view_motion_notify_event): + * shell/ev-window.c: (update_chrome_visibility), + (ev_window_cmd_focus_page_selector), + (ev_window_update_fullscreen_popup), (view_actions_focus_in_cb), + (sidebar_page_main_widget_update_cb), (ev_window_init): + + Autoraise toolbar on GoToPage binding and fix bindings in + EvSidebarThumbnails page. + +2005-06-15 Christian Persch + + * shell/ev-properties.c: (update_progress_label): + + Hide the progress label when finished; bug #307697. + +2005-06-15 Marco Pesenti Gritti + + * pdf/ev-poppler.cc: + + Enable is_open for links, you will need poppler cvs + + * shell/ev-properties.c: (job_fonts_finished_cb): + + Get a lock on the document when filling the tree view + +2005-06-15 Marco Pesenti Gritti + + * backend/ev-document-links.h: + * pdf/ev-poppler.cc: + * shell/ev-sidebar-links.c: (create_loading_model), + (expand_open_links), (job_finished_callback): + + Expand links when specified by the document. + Depend on a poppler api (defined out for now) + +2005-06-15 Marco Pesenti Gritti + + * shell/ev-properties.c: (ev_properties_dispose), + (ev_properties_class_init), (dialog_destroy_cb), + (ev_properties_init), (job_fonts_finished_cb), (setup_fonts_view), + (ev_properties_set_document), (ev_properties_new), + (ev_properties_show): + * shell/ev-properties.h: + + Make it an object, cleanup the code, api to show it as transient + and to set the document. + + * shell/ev-window.c: (ev_window_setup_document), + (ev_window_cmd_file_properties): + + Adapt to EvProperties changes, do not show multiple + times, update it when document changes. + +2005-06-14 Marco Pesenti Gritti + + * ps/gstypes.h: + * ps/ps-document.c: (ps_document_init), (get_page_orientation), + (ps_document_set_orientation), (ps_document_document_iface_init): + * ps/ps-document.h: + + Implement orientation here too + + * shell/ev-properties.c: (ev_properties_new): + * data/evince-properties.glade: + + Hide the fonts page for backends that doesnt + support it. + +2005-06-14 Marco Pesenti Gritti + + * backend/ev-document.c: (ev_document_set_orientation): + * backend/ev-document.h: + * pdf/ev-poppler.cc: + + Add orientation api. Currently poppler api is not optimal, + we need to set orientation every time we _get a page. + I will try to fix that at some point. + + * data/evince-ui.xml: + * shell/ev-window.c: (ev_window_cmd_edit_landscape), + (ev_window_cmd_edit_portrait), (ev_window_cmd_edit_flip): + + Add orientation menu items + + * shell/ev-page-cache.c: (ev_page_cache_clear): + * shell/ev-page-cache.h: + + Add api to clear the cache + + * shell/ev-view.c: (setup_caches), (clear_caches), + (ev_view_set_document), (ev_view_zoom_out), + (ev_view_set_orientation): + * shell/ev-view.h: + + Implement orientation changing + +2005-06-13 Marco Pesenti Gritti + + * backend/ev-document-fonts.c: (ev_document_fonts_get_progress), + (ev_document_fonts_scan), (ev_document_fonts_fill_model): + * backend/ev-document-fonts.h: + + Separate scan and fill so that we can incrementally fill from + the main thread. Add a progress api. + + * data/evince-properties.glade: + * pdf/ev-poppler.cc: + * shell/ev-jobs.c: (ev_job_fonts_new), (ev_job_fonts_run): + * shell/ev-jobs.h: + * shell/ev-properties.c: (update_progress_label), + (job_fonts_finished_cb), (setup_fonts_view): + + Incrementally feel the list and show the progress + percentage in a label like acrobat does. + + You are going to need poppler cvs + 2005-06-11 Marco Pesenti Gritti * backend/ev-document-fonts.c: (ev_document_fonts_fill_model):