Ephoto: Go beta with Ephoto! Woohoo!

This commit is contained in:
Stephen okra Houston 2016-08-11 16:32:01 -05:00
parent a46fd8242e
commit 5a0e42f5ee
6 changed files with 19 additions and 12 deletions

View File

@ -1 +1,2 @@
Ephoto - A comprehensive image viewer written using the core EFL. Ephoto - A comprehensive image viewer written using the core EFL.
First release of Ephoto - Version 1.0 Beta

3
NEWS
View File

@ -1 +1,4 @@
Ephoto is located in git at https://git.enlightenment.org/apps/ephoto.git 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

1
README
View File

@ -1,2 +1,3 @@
Ephoto - A comprehensive image viewer written using the core EFL. Ephoto - A comprehensive image viewer written using the core EFL.
For more information, please visit:
http://www.smhouston.us/ephoto/ http://www.smhouston.us/ephoto/

23
TODO
View File

@ -1,11 +1,12 @@
TODO- TODO:
-Config: ==Single Browser==
Add more options to the config. -Add more effects, filters as necessary
-Single Browser: -Clean up Cropper
Add more effects, filters as necessary ==Slideshow==
Clean up Cropper -Smoother Movement
-Thumb Browser: ==Thumb Browser==
Add ability to view more info on image(Exif perhaps?) -Add ability to view more info on image(Exif perhaps?)
-Other Possibilities: ==Other Possibilities==
Exporting to flickr, facebook, etc.. -Exporting to flickr, facebook, gplus, etc..
Read straight from a camera -Read straight from a camera
-Show mounted devices

View File

@ -3,7 +3,7 @@ dnl Process this file with autoconf to produce a configure script.
# get rid of that stupid cache mechanism # get rid of that stupid cache mechanism
rm -f config.cache 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_PREREQ([2.60])
AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_SRCDIR([configure.ac])

View File

@ -1417,6 +1417,7 @@ _viewer_add(Evas_Object *parent, const char *path, Ephoto_Single_Browser *sb)
evas_object_show(v->table); evas_object_show(v->table);
v->image = evas_object_image_add(evas_object_evas_get(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_filled_set(v->image, EINA_TRUE);
evas_object_image_smooth_scale_set(v->image, sb->ephoto->config->smooth); evas_object_image_smooth_scale_set(v->image, sb->ephoto->config->smooth);
evas_object_image_preload(v->image, EINA_FALSE); evas_object_image_preload(v->image, EINA_FALSE);