summaryrefslogtreecommitdiff
path: root/cut-n-paste
AgeCommit message (Collapse)AuthorFilesLines
2024-01-01Fix build with libxml2 2.12Jan Tojnar1-0/+2
libxml 2.12.0 reorganized headers, resulting in xmlParseFile and xmlIndentTreeOutput no longer being in scope. Let’s add the proper includes containing the symbols.
2022-01-09Fix the type for the signal identifier which is gulongrbuj1-1/+1
2022-01-09Use GLib's new g_clear_signal_handler() function to simplify coderbuj1-0/+6
2021-11-20Use a blank line at mostrbuj5-8/+0
2020-08-26check return value of xmlDocGetRootElement call if is NULLlvtao-sec1-1/+16
2020-07-10update mate-submodulesraveit651-0/+0
2020-06-22update submoduleraveit651-0/+0
2020-06-07use git submodule for cut-n-paste/smclientWu Xiaotian8-3744/+0
2019-11-28avoid redundant redeclarationsPablo Barciela3-7/+0
2019-09-08remove 'synctex' internally, work with external library insteadPablo Barciela12-11051/+0
2019-09-06remove -Wunused-but-set-variable warningrbuj1-2/+0
ephy-zoom-control.c:274:20: warning: variable ‘tool_item_class’ set but not used [-Wunused-but-set-variable] 274 | GtkToolItemClass *tool_item_class; | ^~~~~~~~~~~~~~~ -- ev-window.c:1390:10: warning: variable ‘page’ set but not used [-Wunused-but-set-variable] 1390 | gint page, n_pages; | ^~~~
2019-08-29End the va_list before returning from _synctex_merge_stringsQuipyowert21-0/+2
This adds a va_end() call to _synctex_merge_strings in two places where it would return without ending the va_list first. https://github.com/jlaurens/synctex/commit/44b860175da10d08830b551f59592e548fe19718
2019-08-29build: Use synctex system library if availablerbuj1-1/+5
based on https://gitlab.gnome.org/GNOME/evince/commit/9edaca5b7b35bbbeeecfaf8d9291a4c092d8be91
2019-08-29Remove synctex warningrbuj1-0/+2
To compile TeX with SyncTeX: $ pdflatex -synctex=1 file.tex
2019-08-29Bump synctex to 1.21rbuj11-4362/+9886
$ cd cut-n-paste/synctex $ rm synctex_* $ ./update-synctex-from-TL.sh Test on Fedora: 1. Install required packages $ sudo dnf install texlive-scheme-basic texlive-lipsum -y 2. Build a pdf with synctex enabled $ cat <<EOF >> file.tex \documentclass[12pt]{report} \usepackage{lipsum} \begin{document} \chapter{Introduction} \lipsum[2-4] \end{document} EOF $ pdflatex -synctex=1 file.tex 3. Open file.pdf using atril 4. Search any text string
2019-08-16egg-editable-toolbar: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-16egg-toolbar-editor: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-16egg-toolbars-model: avoid 'g_type_class_add_private'Pablo Barciela1-6/+2
2019-08-01Fix build warning on marshallingraveit651-1/+1
Replace deprecated --header --body options inspired by: https://gitlab.gnome.org/GNOME/evince/commit/f6952c2
2019-07-31egg-toolbar-editor: suppress GtkAction warningsraveit651-0/+2
2019-07-31egg-editable-toolbar: suppress GtkAction warningsraveit651-0/+10
2019-07-31egg-toolbar-editor{c/h}: tabs to spacesraveit652-75/+75
2019-07-31egg-editable-toolbar{c/h}: tabs to spacesraveit652-232/+232
2019-07-31ephy-zoom-action: suppress GtkAction warningsraveit651-1/+8
2019-07-01Remove trailing whitespacesLaurent Napias15-74/+74
2019-02-04[ephy-zoom-control] Avoid deprecated g_type_class_add_privateWu Xiaotian1-7/+2
2019-02-04[ephy-zoom-action] Avoid deprecated g_type_class_add_privateWu Xiaotian1-6/+2
2019-01-22eggsmclient: avoid deprecated 'g_type_class_add_private'Pablo Barciela1-6/+2
2018-05-10editable-toolbar: replace deprecated gtk_menu_popup functionraveit651-2/+2
2018-03-22toolbar-editor: Add methods to load from GResourceChristian Persch2-4/+69
origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-6&id=8c240d9
2018-03-21shell: Use GtkApplication to inhibit the screensaverChristian Persch5-621/+1
Remove TotemScrsaver copy, and use GtkApplication inhibition instead. origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-6&id=612701f
2018-02-16avoid deprecated GtkStockPablo Barciela2-4/+4
2018-01-31require GTK+ 3.22 and GLib 2.50monsta2-6/+0
2017-08-31Rename Fit Page Width as Fit WidthWilliam Jon McCann1-1/+1
https://bugzilla.gnome.org/show_bug.cgi?id=689468 origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=88d7a4a
2017-08-31Rename Best Fit mode as Fit PageWilliam Jon McCann2-3/+3
https://bugzilla.gnome.org/show_bug.cgi?id=689468 origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-10&id=ffd3853
2017-08-12shell: Ditch gimpcellrenderertoggleJosephMcc5-638/+1
This is full of deprecated code and wasn't displaying properly. Replace it with a gtk_cell_renderer_toggle_new() which uses a standard themed checkbox widget and should display properly in HiDPI.
2017-08-12sidebar-layers: Make it actually usable and fix a runtime warningraveit651-0/+1
Expand the scrolled window vertical so that you can actually see the content of the widget. This also turned up a missing gtk_style_context_save () in gimpcellrenderertoggle.c. So fix that as well. partial inspired from: https://github.com/linuxmint/xreader/commit/6b6ae7f
2017-08-08avoid deprecated gdk_screen_make_display_nameZenWalker1-3/+2
2017-07-19avoid deprecated gdk_screen_get_numberZenWalker1-1/+1
2017-04-07egg-editable-toolbar: avoid deprecated gtk_drag_beginraveit651-1/+7
use gtk_drag_begin_with_coordinates instead
2017-04-07toolbar-editor: don't use deprecated GtkAlignmentraveit651-11/+6
2017-03-12toolbar-editor: don't use GTK_POLICY_AUTOMATIC as horz. scrollbar policyraveit651-1/+1
2017-03-06egg-toolbar-editor.c: don't use deprecated gtk_icon_size_lookup_for_settingsraveit651-5/+2
2017-03-06egg-editable-toolbar: don't use deprecated gtk_icon_size_lookup_for_settingsraveit651-12/+5
2017-03-06zoom-control.c: don't use deprecated gtk_combo_box_set_focus_on_clickraveit651-0/+4
replace it with gtk_widget_set_focus_on_click
2016-11-23move to GTK+3 (>= 3.14), drop GTK+2 code and --with-gtk build optionmonsta6-323/+21
and require caja >= 1.17.1
2016-11-23cut-n-paste: set vertical box to be homogeneous in GTK+3 code toomonsta1-4/+5
2016-11-23fix indent a bitmonsta1-1/+1
2016-07-03GTK+-3 gimpcellrenderertoggle: Fix compile warningsraveit651-0/+18
taken from: https://git.gnome.org/browse/evince/commit/?id=f9a8e04
2016-07-03toolbar-editor: Fix compiler warningraveit651-2/+1
Use g_type_ensure() instead of the volatile GType hack. taken from: https://git.gnome.org/browse/evince/commit/?id=bba4526