summaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
Diffstat (limited to 'old')
-rw-r--r--old/ChangeLog.ethumb20
-rw-r--r--old/NEWS.ethumb28
-rw-r--r--old/README.ethumb69
3 files changed, 117 insertions, 0 deletions
diff --git a/old/ChangeLog.ethumb b/old/ChangeLog.ethumb
new file mode 100644
index 0000000000..2470e87074
--- /dev/null
+++ b/old/ChangeLog.ethumb
@@ -0,0 +1,20 @@
+2012-12-03 Gustavo Sverzut Barbieri (k-s)
+
+ * port to edbus (v2)
+
+2012-04-26 Carsten Haitzler (The Rasterman)
+
+ * 1.0.0 release
+
+2012-04-30 Jérôme Pinot
+
+ * Fix build out of tree configuration
+
+2012-08-30 Carsten Haitzler (The Rasterman)
+
+ 1.7.0 release
+
+2012-12-28 Vincent Torri
+
+ * Fix compilation on Windows when there is no .la files
+ * Minor autotools cleanup
diff --git a/old/NEWS.ethumb b/old/NEWS.ethumb
new file mode 100644
index 0000000000..bf716c6880
--- /dev/null
+++ b/old/NEWS.ethumb
@@ -0,0 +1,28 @@
+Ethumb 1.7.0
+
+Changes since Ethumb 1.7.0:
+
+Additions:
+
+ - Port to edbus (v2), added new dependency.
+
+Fixes:
+
+Improvements:
+
+Removal:
+
+ - Removal of e_dbus (v1) dependency.
+
+Changes since Ethumb 1.0.0:
+-------------------------
+
+Additions:
+
+Fixes:
+ - build out of tree.
+
+Improvements:
+
+Removal:
+
diff --git a/old/README.ethumb b/old/README.ethumb
new file mode 100644
index 0000000000..3494520e83
--- /dev/null
+++ b/old/README.ethumb
@@ -0,0 +1,69 @@
+Ethumb 1.7.99
+
+******************************************************************************
+
+ FOR ANY ISSUES PLEASE EMAIL:
+ enlightenment-devel@lists.sourceforge.net
+
+******************************************************************************
+
+Ethumb - Thumbnail generation library
+
+
+FEATURES
+========
+
+ * create thumbnails with a predefined frame (possibly an edje frame);
+ * have an option to create fdo-like thumbnails;
+ * have a client/server utility.
+
+
+API
+===
+
+It's possible to set the following properties of thumbnails:
+
+ * size
+ * format (jpeg, png, eet...)
+ * aspect:
+ * have crop?
+ * crop alignment?
+ * video:
+ * video_time
+ * document:
+ * page
+ * frame: edje file, group and swallow part to use when generating
+ thumbnails
+ * directory: directory where to save thumbnails
+ * category: to be used as DIRECTORY/CATEGORY/md5.format
+
+Path generation should provide the following:
+
+ * If no path to save the thumbnail is specified, the following is used:
+ * if CATEGORY, return ~/.thumbnail/CATEGORY/md5.format
+ * else if size (128x128 or 256x256), format (png), aspect (keep
+ aspect, no crop) and no frame matches, return
+ ~/.thumbnail/{normal,large}/md5.png
+ * else return WxH-FORMAT-[framed-]ASPECT
+
+Client server provides the following:
+ * multiple client support
+ * per-client configuration, avoid exchanging parameters over and over
+ again
+ * per-client queue, when client disconnect (ie: dies), remove whole
+ queue
+ * all clients have same priority, so queue is mixed for processing
+ * cancel thumb generation request
+ * communication over (for now) dbus and (future) ecore-ipc and unix
+ sockets
+ * interface of client library is independent of the communication
+ method selected
+
+------------------------------------------------------------------------------
+COMPILING AND INSTALLING:
+
+ ./configure
+ make
+(do this as root unless you are installing in your users directories):
+ make install
+