diff --git a/ChangeLog b/ChangeLog index 7adc605..8c1c87e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1 +1,2 @@ Ephoto - A comprehensive image viewer written using the core EFL. +First release of Ephoto - Version 1.0 Beta diff --git a/NEWS b/NEWS index b344d52..c7a7438 100644 --- a/NEWS +++ b/NEWS @@ -1 +1,4 @@ Ephoto is located in git at https://git.enlightenment.org/apps/ephoto.git +You can gather more location from http://www.smhouston.us/ephoto/ + +Ephoto 1.0 Beta diff --git a/README b/README index 73e5814..f9e6136 100644 --- a/README +++ b/README @@ -1,2 +1,3 @@ Ephoto - A comprehensive image viewer written using the core EFL. +For more information, please visit: http://www.smhouston.us/ephoto/ diff --git a/TODO b/TODO index 33fadb4..6f5df30 100644 --- a/TODO +++ b/TODO @@ -1,11 +1,12 @@ -TODO- --Config: -Add more options to the config. --Single Browser: -Add more effects, filters as necessary -Clean up Cropper --Thumb Browser: -Add ability to view more info on image(Exif perhaps?) --Other Possibilities: -Exporting to flickr, facebook, etc.. -Read straight from a camera +TODO: +==Single Browser== +-Add more effects, filters as necessary +-Clean up Cropper +==Slideshow== +-Smoother Movement +==Thumb Browser== +-Add ability to view more info on image(Exif perhaps?) +==Other Possibilities== +-Exporting to flickr, facebook, gplus, etc.. +-Read straight from a camera +-Show mounted devices diff --git a/configure.ac b/configure.ac index 04a4e8c..8f2b779 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script. # get rid of that stupid cache mechanism rm -f config.cache -AC_INIT([ephoto], [0.9.99], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([ephoto], [1.0-beta1], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.60]) AC_CONFIG_SRCDIR([configure.ac]) diff --git a/src/bin/ephoto_single_browser.c b/src/bin/ephoto_single_browser.c index 341ae4d..7086f4b 100644 --- a/src/bin/ephoto_single_browser.c +++ b/src/bin/ephoto_single_browser.c @@ -1417,6 +1417,7 @@ _viewer_add(Evas_Object *parent, const char *path, Ephoto_Single_Browser *sb) evas_object_show(v->table); v->image = evas_object_image_add(evas_object_evas_get(v->table)); + evas_object_image_load_orientation_set(v->image, EINA_TRUE); evas_object_image_filled_set(v->image, EINA_TRUE); evas_object_image_smooth_scale_set(v->image, sb->ephoto->config->smooth); evas_object_image_preload(v->image, EINA_FALSE);