summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2018-07-15Reformat Exif tags for GPS position to be better understandableFelix Riemann1-3/+91
libexif's formatting of these tags is not nice to read. Reformatted are latitude and longitude values and their reference points. https://bugzilla.gnome.org/show_bug.cgi?id=627185 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/3e4bc1a
2018-07-15Make sure GPS Exif tags are named and ordered correctlyFelix Riemann1-2/+8
Some GPS tag IDs overlap with IDs from other IFDs. Specifically check for the GPS IFD and order the entries accordingly. Also respect the IFD when determining the tag's title. https://bugzilla.gnome.org/show_bug.cgi?id=627185 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/8574b4b Fixes https://github.com/mate-desktop/eom/issues/125
2018-07-15EomPropertiesDialog: Make details view expand verticallyFelix Riemann1-0/+1
Otherwise it would only be large enough for roughly one line. origin commit: https://gitlab.gnome.org/GNOME/eog/commit/c4a025e
2018-07-11EogScrollView: Implement simple two-pass filteringFelix Riemann1-4/+65
Show the filtered image only after a short time. This should improve the UI's responsiveness quite a bit. https://bugzilla.gnome.org/show_bug.cgi?id=665897 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/88c4f54 https://gitlab.gnome.org/GNOME/eog/commit/8169e0a
2018-07-11EomScrollView: Use better downscaling filterRussell Haley1-4/+4
Replace all instances of CAIRO_FILTER_BILINEAR with CAIRO_FILTER_GOOD. This produces much less aliasing on downscaled images. CAIRO_FILTER_GOOD uses the same method as CAIRO_FILTER_BILINEAR for scale factors greater than 0.75, according to https://bugs.webkit.org/show_bug.cgi?id=147826. Comparison screenshots made with eog 3.18.1: http://imgur.com/a/NaoOs CAIRO_FILTER_BEST is better still, but the the visual difference is almost imperceptible and the performance impact is severe. https://bugzilla.gnome.org/show_bug.cgi?id=665897 origin commit: https://gitlab.gnome.org/GNOME/eog/commit/fbc1128 fixes https://github.com/mate-desktop/eom/issues/96
2018-07-08reload: ensure that pending updates to UI are completeraveit651-0/+2
The plugin tries to remove the menuentry from menu during closing eom. Using gtk_ui_manager_ensure_update () function to make sure that all pending updates to the UI have been completed. fixes https://github.com/mate-desktop/eom/issues/145
2018-06-13release 1.20.1v1.20.1raveit652-1/+8
2018-06-13fix some -Wincompatible-pointer-types warningsraveit653-3/+3
2018-06-13sync with transifexraveit65133-21988/+68048
2018-05-13svg: Fix offset coordinates when transforming SVG images on HiDPI displaysVictor Kareh1-5/+6
2018-05-01Scale HiDPI images correctlyVictor Kareh1-21/+19
2018-03-23tx: update config with branch specific resouresraveit651-2/+2
2018-03-16tx: add makepot and move .pot file to srcdirraveit652-0/+5
2018-03-14tx: add eom.pot for auto-update translationsraveit651-0/+1465
2018-03-11transifex: set minimum_perc and type in config fileraveit651-0/+2
2018-01-30release 1.20v1.20.0raveit652-2/+11
2018-01-30sync with transifexraveit65104-13175/+13178
2018-01-30drop CSS for GTK+ 3.18monsta2-13/+1
2018-01-30require GTK+ 3.22 and GLib 2.50monsta10-111/+3
and drop additional checks for min/max GLib versions, it's not needed
2018-01-09update copyright year to 2018monsta1-1/+1
2017-12-31egg-editable-toolbar.c/egg-toolbars-model.c: drop unused variablesPablo Barciela2-7/+0
2017-12-29print-preview: replace custom code with GDK function callmonsta1-93/+3
taken from: https://git.gnome.org/browse/eog/commit/?id=c1ac983bf3bdbd7d8ab4ab34208f1f399bdacbfc
2017-11-08sync with transifexraveit652-2/+2
2017-10-12release 1.19.1v1.19.1raveit652-1/+10
2017-10-12sync with transifexraveit65104-287/+292
2017-08-23gtk 3.22: avoid deprecated gdk_screen_get_monitor... functions:ZenWalker1-0/+21
avoid deprecated: gdk_screen_get_monitor_geometry gdk_screen_get_monitor_at_window
2017-07-23don't use deprecated gtk_show_uriraveit651-0/+4
2017-07-20avoid deprecated gdk_screen_get_numberZenWalker1-2/+2
2017-07-18update issue_templateraveit651-0/+3
2017-06-08create issue_template.mdraveit651-0/+16
2017-05-20Restore Polish translation credits from GNOMEPiotr Drąg1-6/+12
2017-05-11fix warning on closing empty window with multiple eom windowsmonsta1-1/+1
2017-05-10release 1.19.0v1.19.0raveit651-0/+31
2017-04-27EomThumbView: Replace deprecated gtk_menu_popup functionraveit651-15/+10
2017-04-27multiple-save-as-dialog.ui: avoid deprecated widgetsraveit651-289/+118
2017-04-27error-message: replace usage of GtkStockraveit651-3/+3
2017-04-26A bunch of instrospection warning fixesEmmanuel Pacaud1-0/+18
taken from: https://git.gnome.org/browse/eog/commit/?id=1b22c52
2017-04-26EomScrollView: fix override_background deprecated callEmmanuel Pacaud1-15/+17
Do the necessary background drawing in draw callback. taken from: https://git.gnome.org/browse/eog/commit/?id=aea6404
2017-04-26EomPropertiesDialog: Fix deprecation warningsEmmanuel Pacaud1-4/+10
Implementation as suggested in the GTK+ documentation. taken from: https://git.gnome.org/browse/eog/commit/?id=a57e788
2017-04-26EomThumbNav: Fix deprecated function warningFelix Riemann1-1/+2
Just call the callback function directly as that's why the signal was manually triggered in the first place. taken from: https://git.gnome.org/browse/eog/commit/?id=4c86268
2017-04-26EomScrollView: Replace deprecated gtk_menu_popup functionAlexei Sorokin1-22/+11
2017-04-26EomScrollView: Switch from GtkDeviceManager to GdkSeatFelix Riemann1-2/+11
taken from: https://git.gnome.org/browse/eog/commit/?id=3de58ce
2017-05-08fix typo in function annotationmonsta1-1/+1
2017-05-07use different css files for < gtk+=3.20raveit653-1/+17
2017-05-06sync with transifexraveit65104-4762/+4763
2017-05-06EomWindow: Set file open dialog transient for its parent windowFelix Riemann1-0/+1
taken from: https://git.gnome.org/browse/eog/commit/?id=a54b3a8
2017-04-25update copyright year to 2017monsta1-1/+1
2017-04-24settings: use rgb color definition as defaultsraveit651-2/+2
2017-04-23UI: avoid using deprecaded widgetsraveit652-302/+470
2017-04-23EomCloseConfirmationDialog: set max width chars for primary labelraveit651-0/+2
This reduce the width of the confirmation dialog