aboutsummaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorcarregal <carregal>2009-02-03 22:05:48 +0000
committercarregal <carregal>2009-02-03 22:05:48 +0000
commit657faad984e378751bc35fabc6ee166e3bcd1493 (patch)
treea63a76844fd09f3dcbe8fee9cdc3755e4e3398ca /README
parent16961a6c2c6fb424e79195f65ae4387cd8005053 (diff)
downloadluafilesystem-1_4_2.tar.gz
luafilesystem-1_4_2.tar.bz2
luafilesystem-1_4_2.zip
Packaging version 1.4.2v1_4_2
Diffstat (limited to 'README')
-rw-r--r--README48
1 files changed, 42 insertions, 6 deletions
diff --git a/README b/README
index 858ecb6..788aac6 100644
--- a/README
+++ b/README
@@ -10,12 +10,6 @@ related to file systems offered by the standard Lua distribution.
10LuaFileSystem offers a portable way to access the underlying directory structure and file attributes. 10LuaFileSystem offers a portable way to access the underlying directory structure and file attributes.
11LuaFileSystem is free software and uses the same license as Lua 5.1 11LuaFileSystem is free software and uses the same license as Lua 5.1
12 12
13Version 1.4.1 [07/May/2008] changes:
14 * documentation review
15 * fixed Windows compilation issues
16 * fixed bug in the Windows tests (patch by Shmuel Zeigerman)
17 * fixed bug [#2185] lfs.attributes(filename, 'size') overflow on files > 2 Gb
18
19LuaRocks Installation 13LuaRocks Installation
20--------------------- 14---------------------
21luarocks install luafilesystem 15luarocks install luafilesystem
@@ -36,3 +30,45 @@ To install on Windows, please copy lfs.dll to your package.cpath directory
36Documentation 30Documentation
37------------- 31-------------
38Please check the documentation at /doc/us/ for more information. 32Please check the documentation at /doc/us/ for more information.
33
34History
35-------
36
37Version 1.4.2 [03/Feb/2009]
38
39 * fixed bug [#13198] lfs.attributes(filename, 'size') overflow on files > 2 Gb again (bug report and patch by KUBO Takehiro).
40 * fixed bug [#39794] Compile error on Solaris 10 (bug report and patch by Aaron B).
41 * fixed compilation problems with Borland C.
42
43Version 1.4.1 [07/May/2008]
44
45 * documentation review
46 * fixed Windows compilation issues
47 * fixed bug in the Windows tests (patch by Shmuel Zeigerman)
48 * fixed bug [#2185] lfs.attributes(filename, 'size') overflow on files > 2 Gb
49
50Version 1.4.0 [13/Feb/2008]
51
52 * added function lfs.setmode (works only in Windows systems).
53 * lfs.attributes raises an error if attribute does not exist
54
55Version 1.3.0 [26/Oct/2007]
56
57 * added function lfs.symlinkattributes (works only in non Windows systems).
58
59Version 1.2.1 [08/May/2007]
60
61 * compatible only with Lua 5.1 (Lua 5.0 support was dropped)
62
63Version 1.2 [15/Mar/2006]
64
65 * added optional argument to lfs.attributes
66 * added function lfs.rmdir
67 * bug correction on lfs.dir
68
69Version 1.1 [30/May/2005]
70
71 * added function lfs.touch.
72
73Version 1.0 [21/Jan/2005]
74Version 1.0 Beta [10/Nov/2004]