summaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
authorVincent Torri <vincent.torri@gmail.com>2012-12-04 17:40:58 +0000
committerVincent Torri <vincent.torri@gmail.com>2012-12-04 17:40:58 +0000
commit81c86b19f6b432c5d6701bd025d5b2cf308fba4c (patch)
tree44f76300c96fddf3be01d97afb3025227350ee92 /old
parent633e29c5a50fa1a1087df88d8d9859c79a83e486 (diff)
downloadefl-81c86b19f6b432c5d6701bd025d5b2cf308fba4c.tar.gz
merge: eio + fix compilation on windows + minor fixes + po files
don't move eio to IN-EFL right now SVN revision: 80180
Diffstat (limited to 'old')
-rw-r--r--old/ChangeLog.eio61
-rw-r--r--old/NEWS.eio37
-rw-r--r--old/README.eio27
3 files changed, 125 insertions, 0 deletions
diff --git a/old/ChangeLog.eio b/old/ChangeLog.eio
new file mode 100644
index 0000000000..71acd0c332
--- /dev/null
+++ b/old/ChangeLog.eio
@@ -0,0 +1,61 @@
+2012-04-26 Carsten Haitzler (The Rasterman)
+
+ * 1.0.0 release
+
+2012-04-30 Jérôme Pinot
+
+ * Fix build out of tree.
+
+2012-05-09 Cedric Bail
+
+ * Actually test if we are really requesting to monitor the same file.
+
+2012-08-02 Cedric Bail
+
+ * Fix a memory leak when shutting down fallback monitor.
+
+2012-08-07 Cedric Bail
+
+ * Properly shutdown monitor when calling eio_shutdown.
+
+2012-08-21 Cedric Bail
+
+ * Add a comment describing the false positiv detected by static analyzer
+ when calling eio_file_set.
+
+2012-08-07 Vincent Torri
+
+ * Do not free Windows stuff when it is not used. Fix seg fault
+ * Add log debugging macros
+
+2012-08-30 Cedric Bail
+
+ * Fix memory leak when using file associate API.
+
+2012-08-30 Carsten Haitzler (The Rasterman)
+
+ 1.7.0 release
+
+2012-09-06 Vincent Torri
+
+ * Improve file monitoring on Windows to mimic more inotify behavior.
+
+2012-09-10 Cedric Bail
+
+ * Fix monitor shutdown when mainloop did never run.
+
+2012-09-14 Cedric Bail
+
+ * Fix build with xattr without splice.
+
+2012-09-27 Cedric Bail
+
+ * Don't stop on limited access right.
+
+2012-10-03 Daniel Willmann
+ * Fix memory corruption by allocating enough memory in
+ eio_eet_data_read_cipher().
+
+2012-11-23 Sebastian Dransfeld
+
+ * Correctly define alloca
diff --git a/old/NEWS.eio b/old/NEWS.eio
new file mode 100644
index 0000000000..1fddc650e1
--- /dev/null
+++ b/old/NEWS.eio
@@ -0,0 +1,37 @@
+Eio 1.8.0
+
+Changes since Eio 1.7.0:
+-------------------------
+
+Additions:
+
+Fixes:
+ - fix monitor shutdown when mainloop did never run.
+ - fix build with xattr and without splice.
+ - don't stop on limited access right.
+ - Fix memory corruption by allocating enough memory in eio_eet_data_read_cipher().
+
+Improvements:
+
+Removal:
+
+Eio 1.7.0
+
+Changes since Eio 1.0.0:
+-------------------------
+
+Additions:
+
+Fixes:
+ - build out of tree.
+ - detect when requesting to monitor a different file with the same name.
+ - memory leak when shutting down fallback monitor.
+ - properly shutdown monitor.
+ - Fix segfault when shutting down the Windows monitor.
+ - Fix memory leak when using file_associate.
+
+Improvements:
+ - Add log debugging macros.
+ - path monitoring on Windows.
+
+Removal:
diff --git a/old/README.eio b/old/README.eio
new file mode 100644
index 0000000000..a59326ab12
--- /dev/null
+++ b/old/README.eio
@@ -0,0 +1,27 @@
+EIO 1.7.99
+
+******************************************************************************
+
+ FOR ANY ISSUES PLEASE EMAIL:
+ enlightenment-devel@lists.sourceforge.net
+
+******************************************************************************
+
+Enlightenment Input Output Library
+==================================
+
+This library is intended to provide non blocking IO by using thread for all
+operations that may block. It depends only on eina, eet and ecore right now.
+It should integrate all the features/functions of Ecore_File that could block.
+
+It is part of what we call the EFL and can be a dependence of E17. Feel free
+to contribute, help is always appreciated !
+
+------------------------------------------------------------------------------
+COMPILING AND INSTALLING:
+
+ ./configure
+ make
+(do this as root unless you are installing in your users directories):
+ make install
+