Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-11-03 | refactor draw/expose code a bit | Monsta | 1 | -28/+19 | |
2015-11-02 | release 1.12.0v1.12.0eom-1.12.0 | Wolfgang Ulbrich | 1 | -1/+1 | |
2015-11-01 | Sync translations with transifex | mate-i18n | 26 | -7574/+9084 | |
2015-10-30 | update NEWS for 1.12 | monsta | 1 | -3/+3 | |
2015-10-15 | release 1.11.0eom-1.11.0 | raveit65 | 1 | -0/+7 | |
2015-10-06 | pre-bump version to 1.11.0 | raveit65 | 2 | -2/+5 | |
2015-10-06 | fix gtk3 build | raveit65 | 2 | -17/+13 | |
eom.css was not created by make dist | |||||
2015-10-05 | Bump version to 1.10.4eom-1.10.4 | monsta | 2 | -1/+12 | |
2015-10-02 | EomScrollView: clip all types of images to the visible image area | monsta | 1 | -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-02 | EomScrollView: remove ancient commented out code | monsta | 1 | -695/+0 | |
adapted from https://git.gnome.org/browse/eog/commit?id=ef626dc9094d191d55a9cba854380696cadd7627 | |||||
2015-10-02 | enable double-buffer in EomScrollView | monsta | 1 | -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-01 | configure.ac: fix indent a bit | Monsta | 1 | -1/+1 | |
2015-09-30 | drop dependency to mate-icon-theme | raveit65 | 1 | -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-06 | GTK3 Date-plugin: set top/bottom margin to zero to avoid redraws | raveit65 | 1 | -0/+4 | |
This avoids redraws of the image if date-plugin bump in the statusbar | |||||
2015-09-06 | Gtk3: define height of horizontal progressbar to avoid redraws of images | raveit65 | 1 | -0/+4 | |
2015-09-06 | Bump GLib/GIO version and define max/min version of GLib | raveit65 | 1 | -2/+8 | |
2015-09-06 | Gtk3: Stop deprecated GtkArrow usage | raveit65 | 2 | -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-06 | EogScrollView: Use gdk_cursor_new_for_display | raveit65 | 1 | -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-06 | Gtk3: Drop GtkMisc and GtkAlignment usage | raveit65 | 5 | -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-06 | Gtk3: Don't call gdk_threads_init() | raveit65 | 2 | -4/+3 | |
taken from: https://git.gnome.org/browse/eog/commit/?id=757128b | |||||
2015-09-06 | Gtk3 EogWindow: Drop deprecated GtkStyle usage | raveit65 | 1 | -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-06 | Gtk3: Remove deprecated, unneeded and now effect-less GtkStyle-usage | raveit65 | 1 | -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-06 | Gtk3: remove an unused variable + simplify the code | raveit65 | 1 | -15/+14 | |
inspiriert from: https://git.gnome.org/browse/eog/commit/?h=gnome-3-4&id=9ef7d86 | |||||
2015-09-06 | Gtk3: Fix GDK deprecations | raveit65 | 1 | -0/+15 | |
- deprecated gdk_window_get_pointer taken from: https://git.gnome.org/browse/eog/commit/?id=c87818d | |||||
2015-09-06 | Gtk3: fix deprecated gtk_vscrollbar_new | raveit65 | 1 | -0/+4 | |
taken from: https://git.gnome.org/browse/eog/commit/?id=59e675c | |||||
2015-09-06 | Gtk3: Remove deprecated GtkVBox/GtkHBox usage | raveit65 | 5 | -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-06 | Gtk3: don't use deprecated gdk_window_get_pointer | raveit65 | 1 | -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-06 | Gtk3 thumbview: Replace deprecated GtkRCStyle usage with a GtkCssProvider | raveit65 | 4 | -0/+41 | |
Makes EomThumbNav's scrollbar style similar to gtk2 version inspired from: https://git.gnome.org/browse/eog/commit/?id=4c93c41 | |||||
2015-09-06 | A bunch of annotation fixes from Eog | infirit | 8 | -16/+140 | |
2015-08-31 | configure.ac: drop obsolete macro | monsta | 1 | -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-31 | GTK3: Fix deprecated GTK API usage | raveit65 | 4 | -6/+42 | |
taken from: https://git.gnome.org/browse/eog/commit/?id=9bd1a07 | |||||
2015-08-31 | GTK3: Replace uses of deprecated gdk_app_launch_context_new function ↵ | raveit65 | 1 | -0/+5 | |
>=gtk+.3.0.0 taken from: https://git.gnome.org/browse/eog/commit/?id=da78cc9 | |||||
2015-08-31 | GTK3: toolbareditor, use GtkGrid instead of GtkTable | raveit65 | 1 | -1/+77 | |
taken from: https://git.gnome.org/browse/eog/commit/?id=1a382d8 | |||||
2015-08-31 | GTK3: EomScrollView, Convert to GtkGrid | raveit65 | 2 | -1/+30 | |
GtkTable is deprecated. taken from: https://git.gnome.org/browse/eog/commit/?id=c19345e | |||||
2015-08-31 | GTK3: EomPrintImageSetup, Convert internal GtkTables to GtkGrids | raveit65 | 1 | -8/+66 | |
taken from: https://git.gnome.org/browse/eog/commit/?id=208361c | |||||
2015-08-31 | GTK3: EomPrintImageSetup, Derive from GtkTable instead of GtkGrid | raveit65 | 2 | -0/+29 | |
GtkTable has been deprecated in favor of GtkGrid. taken from: https://git.gnome.org/browse/eog/commit/?id=7fd3bcf | |||||
2015-08-31 | GTK3: Don't use deprecated gdk_cursor_unref() for gtk+ >=3.0.0 | raveit65 | 4 | -0/+16 | |
2015-08-31 | GTK3: Replace gtk_{v,h}box new with gtk_box_new for gtk+ >=3.2.0 | raveit65 | 9 | -0/+45 | |
2015-08-05 | Remove AC_CHECK_HEADER for libexif | infirit | 1 | -3/+0 | |
If pkg-config succeeds headers should be available, fixes #95 | |||||
2015-07-14 | Bump version to 1.10.3eom-1.10.3 | Monsta | 2 | -1/+7 | |
2015-07-14 | help: fix legal page | raveit65 | 1 | -42/+64 | |
2015-07-08 | use valid link to mate feedback page | raveit65 | 1 | -2/+2 | |
2015-07-08 | Revert "remove non-existing mate-feedback links" | raveit65 | 1 | -0/+6 | |
This reverts commit ffb7f4386582c012fa044f46bd210e1874d51cd1. | |||||
2015-07-08 | show correct help pages in prefs and toolbar-editor dialogs | Monsta | 1 | -1/+1 | |
2015-06-27 | Merge pull request #84 from lyokha/master | Martin Wimpress | 1 | -1/+1 | |
mispositioned brackets in update_scrollbar_values | |||||
2015-06-25 | Merge pull request #85 from NiceandGently/dev-translations | Martin Wimpress | 1 | -6/+0 | |
remove non-existing mate-feedback links | |||||
2015-06-25 | remove non-existing mate-feedback links | raveit65 | 1 | -6/+0 | |
2015-06-22 | mispositioned brackets in update_scrollbar_values | lyokha | 1 | -1/+1 | |
make high images scroll bad after zoom-ins until hbar appears | |||||
2015-06-17 | Merge pull request #78 from NiceandGently/dev-translations | Stefano Karapetsas | 2 | -4/+4 | |
fix translations merge issue during build | |||||
2015-06-17 | Bump version to 1.10.2eom-1.10.2 | Martin Wimpress | 2 | -1/+7 | |