Skip to content
Commits on Source (12)
Version 40.2
------------
Bug fixes:
!103, reload: Remove unused GtkActionGroup member (Krifa75)
#195, Critical warning after closing EOG (invalid unclassed pointer;
assertion 'EOG_IS_IMAGE (img)' failed) (Felix Riemann)
New and updated translations:
- Pawan Chitrakar [ne]
- Quentin PAGÈS [oc]
New and updated manual translations
- Daniel Mustieles [es]
- Andika Triwidada [id]
Version 40.1
------------
......
......@@ -36,11 +36,12 @@
<kudo>UserDocs</kudo>
</kudos>
<releases>
<release version="40.1" date="2021-05-01">
<release version="40.2" date="2021-06-05">
<description>
<p>Eye of GNOME 40.1 is the latest stable version of Eye of GNOME, and it contains all the features and bugfixes introduced since our 3.38 release.</p>
<p>Eye of GNOME 40.2 is the latest stable version of Eye of GNOME, and it contains all the features and bugfixes introduced since our 3.38 release.</p>
</description>
</release>
<release version="40.1" date="2021-05-01" />
<release version="40.0" date="2021-03-21" />
<release version="3.38.2" date="2021-02-13" />
<release version="3.38.1" date="2020-11-21" />
......
......@@ -4,7 +4,6 @@
<info>
<link type="guide" xref="index#viewing"/>
<link type="seealso" xref="shortcuts#zoom-rotate"/>
<desc>Enlarge the picture on the screen.</desc>
<revision pkgversion="3.24" version="0.1" date="2011-09-05" status="final"/>
......
This diff is collapsed.
This diff is collapsed.
project(
'eog', 'c',
version: '40.1',
version: '40.2',
license: 'GPL2+',
default_options: 'buildtype=debugoptimized',
meson_version: '>= 0.50.0',
......
......@@ -54,7 +54,6 @@ struct _EogReloadPlugin
PeasExtensionBase parent_instance;
EogWindow *window;
GtkActionGroup *ui_action_group;
guint ui_id;
};
......
This diff is collapsed.
This diff is collapsed.
......@@ -57,8 +57,8 @@ struct _EogImagePrivate {
gchar *file_type;
/* Holds EXIF raw data */
guint exif_chunk_len;
guchar *exif_chunk;
guint exif_chunk_len;
#if 0
/* Holds IPTC raw data */
......@@ -71,6 +71,8 @@ struct _EogImagePrivate {
gboolean autorotate;
gint orientation;
guint anim_source;
#ifdef HAVE_EXIF
ExifData *exif;
#endif
......
This diff is collapsed.