summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2015-12-13configure.ac: Drop unneeded check for Sunkeysym headerMonsta1-6/+0
from https://git.gnome.org/browse/eog/commit?id=4d438b259fa73c9bd8c8e081c75a273b4e0b3f01
2015-12-12fix more introspections warningsWolfgang Ulbrich4-5/+54
partially taken from: https://git.gnome.org/browse/eog/commit/?id=1b22c52 https://git.gnome.org/browse/eog/commit/?id=e51fe58
2015-12-12Fix compilation with enabled GObject IntrospectionSorokin Alexei2-1/+3
2015-12-07Bump version to 1.12.1monsta2-1/+7
2015-12-06fix some gobject-introspection build warningsWolfgang Ulbrich1-16/+14
2015-12-03remove unneeded assert - the code following it is enoughmonsta1-2/+0
from https://git.gnome.org/browse/eog/commit/?id=ee33862e7cede4fd2ff34e4cfcb4192dfdd52b46
2015-12-03remove ancient workaround for non-threadsafe pixbuf loadersmonsta3-67/+7
from https://git.gnome.org/browse/eog/commit/?id=a9c9d81405e31443ab51713f6a0712f9bb10e11b
2015-12-02GTK3: replace deprecated gtk_widget_size_request with ↵Wolfgang Ulbrich1-0/+8
gtk_widget_get_preferred_size
2015-12-02GTK3: fix deprecated gdk_threads_enter/leaveWolfgang Ulbrich1-0/+4
2015-11-30fix shortcuts for several menu items in en_US localemonsta1-36/+36
not sure how it happened - strings on transifex are alright. anyway, we need a quick fix, so here it is.
2015-11-03refactor draw/expose code a bitMonsta1-28/+19
2015-11-02release 1.12.0v1.12.0eom-1.12.0Wolfgang Ulbrich1-1/+1
2015-11-01Sync translations with transifexmate-i18n26-7574/+9084
2015-10-30update NEWS for 1.12monsta1-3/+3
2015-10-15release 1.11.0eom-1.11.0raveit651-0/+7
2015-10-06pre-bump version to 1.11.0raveit652-2/+5
2015-10-06fix gtk3 buildraveit652-17/+13
eom.css was not created by make dist
2015-10-05Bump version to 1.10.4eom-1.10.4monsta2-1/+12
2015-10-02EomScrollView: clip all types of images to the visible image areamonsta1-2/+7
previously it wasn't done for SVGs, now it is. taken from https://git.gnome.org/browse/eog/commit?id=3fb558e1861d3d75bca23946fcf3f62c80daeeec
2015-10-02EomScrollView: remove ancient commented out codemonsta1-695/+0
adapted from https://git.gnome.org/browse/eog/commit?id=ef626dc9094d191d55a9cba854380696cadd7627
2015-10-02enable double-buffer in EomScrollViewmonsta1-2/+0
taken from https://git.gnome.org/browse/eog/commit/?id=f0410a55778e719da8f2b62f0e5060bb128f028e it was already committed here in b51631c40b743d224cda4b7fd63e3d60b84218ae but then got lost in 77f6ed0e2a178b9934baee8b846cdd1cc88b2eab
2015-10-01configure.ac: fix indent a bitMonsta1-1/+1
2015-09-30drop dependency to mate-icon-themeraveit651-3/+1
The dependency is not really needed; depending on GTK+ should be enough to guarantee the presence of a spec-compliant icon theme. The dependency was added to eog in 2006 to be shure that stock_print-setup for for the "Page setup" is available, and droped in 2014.
2015-09-06GTK3 Date-plugin: set top/bottom margin to zero to avoid redrawsraveit651-0/+4
This avoids redraws of the image if date-plugin bump in the statusbar
2015-09-06Gtk3: define height of horizontal progressbar to avoid redraws of imagesraveit651-0/+4
2015-09-06Bump GLib/GIO version and define max/min version of GLibraveit651-2/+8
2015-09-06Gtk3: Stop deprecated GtkArrow usageraveit652-5/+17
Use a matching GtkImage instead Since gtkarrow scaling doesn't work in themes, the arrow displays almost to huge and looks ugly. taken from: https://git.gnome.org/browse/eog/commit/?id=096806f https://git.gnome.org/browse/eog/commit/?id=27fb212
2015-09-06EogScrollView: Use gdk_cursor_new_for_displayraveit651-1/+1
gdk_cursor_new() will be deprecated in GTK+ 3.16 and we have the correct display at hand already anyway. taken from: https://git.gnome.org/browse/eog/commit/?id=ab4e432
2015-09-06Gtk3: Drop GtkMisc and GtkAlignment usageraveit655-0/+84
Both are deprecated and can be replaced by simple GtkWidget properties. This leaves out the dialogs made with Glade as it doesn't have support for the new margin-start property yet. taken from: https://git.gnome.org/browse/eog/commit/?id=2fad221
2015-09-06Gtk3: Don't call gdk_threads_init()raveit652-4/+3
taken from: https://git.gnome.org/browse/eog/commit/?id=757128b
2015-09-06Gtk3 EogWindow: Drop deprecated GtkStyle usageraveit651-0/+9
The call to gtk_widget_set_style was actually useless since previous commit. taken from: https://git.gnome.org/browse/eog/commit/?id=bbe4a87
2015-09-06Gtk3: Remove deprecated, unneeded and now effect-less GtkStyle-usageraveit651-0/+2
This stuff wasn't needed anymore since we dropped the GtkFrame as parent for the EogScrollView widget. Also it didn't have any effect at all in GTK+-3. Fixes more build warnings because of deprecations. Taken from: https://git.gnome.org/browse/eog/commit/?id=f9a5ec6
2015-09-06Gtk3: remove an unused variable + simplify the coderaveit651-15/+14
inspiriert from: https://git.gnome.org/browse/eog/commit/?h=gnome-3-4&id=9ef7d86
2015-09-06Gtk3: Fix GDK deprecationsraveit651-0/+15
- deprecated gdk_window_get_pointer taken from: https://git.gnome.org/browse/eog/commit/?id=c87818d
2015-09-06Gtk3: fix deprecated gtk_vscrollbar_newraveit651-0/+4
taken from: https://git.gnome.org/browse/eog/commit/?id=59e675c
2015-09-06Gtk3: Remove deprecated GtkVBox/GtkHBox usageraveit655-2/+38
The GtkHBox and GtkVBox have been deprecated by now. Also be consistent with the other properties declarations and use PROP_0 instead of PROP = 1. taken from: https://git.gnome.org/browse/eog/commit/?id=81cb068
2015-09-06Gtk3: don't use deprecated gdk_window_get_pointerraveit651-1/+2
inspired from: https://git.gnome.org/browse/eog/commit/?id=16f37f2 For some reason most of the commit was already done at https://github.com/mate-desktop/eom/commit/971e627
2015-09-06Gtk3 thumbview: Replace deprecated GtkRCStyle usage with a GtkCssProviderraveit654-0/+41
Makes EomThumbNav's scrollbar style similar to gtk2 version inspired from: https://git.gnome.org/browse/eog/commit/?id=4c93c41
2015-09-06A bunch of annotation fixes from Eoginfirit8-16/+140
2015-08-31configure.ac: drop obsolete macromonsta1-1/+0
It's been a no-op for a long time. See https://mail.gnome.org/archives/commits-list/2011-December/msg00681.html for example.
2015-08-31GTK3: Fix deprecated GTK API usageraveit654-6/+42
taken from: https://git.gnome.org/browse/eog/commit/?id=9bd1a07
2015-08-31GTK3: Replace uses of deprecated gdk_app_launch_context_new function ↵raveit651-0/+5
>=gtk+.3.0.0 taken from: https://git.gnome.org/browse/eog/commit/?id=da78cc9
2015-08-31GTK3: toolbareditor, use GtkGrid instead of GtkTableraveit651-1/+77
taken from: https://git.gnome.org/browse/eog/commit/?id=1a382d8
2015-08-31GTK3: EomScrollView, Convert to GtkGridraveit652-1/+30
GtkTable is deprecated. taken from: https://git.gnome.org/browse/eog/commit/?id=c19345e
2015-08-31GTK3: EomPrintImageSetup, Convert internal GtkTables to GtkGridsraveit651-8/+66
taken from: https://git.gnome.org/browse/eog/commit/?id=208361c
2015-08-31GTK3: EomPrintImageSetup, Derive from GtkTable instead of GtkGridraveit652-0/+29
GtkTable has been deprecated in favor of GtkGrid. taken from: https://git.gnome.org/browse/eog/commit/?id=7fd3bcf
2015-08-31GTK3: Don't use deprecated gdk_cursor_unref() for gtk+ >=3.0.0raveit654-0/+16
2015-08-31GTK3: Replace gtk_{v,h}box new with gtk_box_new for gtk+ >=3.2.0raveit659-0/+45
2015-08-05Remove AC_CHECK_HEADER for libexifinfirit1-3/+0
If pkg-config succeeds headers should be available, fixes #95
2015-07-14Bump version to 1.10.3eom-1.10.3Monsta2-1/+7