aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README71
1 files changed, 6 insertions, 65 deletions
diff --git a/README b/README
index 005c38e..9d37a4e 100644
--- a/README
+++ b/README
@@ -1,6 +1,7 @@
1LuaFileSystem - File System Library for Lua 1LuaFileSystem - File System Library for Lua
2Copyright 2003 Kepler Project 2Copyright 2003-2015 Kepler Project
3http://www.keplerproject.org/luafilesystem 3
4http://keplerproject.github.io/luafilesystem
4 5
5Description 6Description
6----------- 7-----------
@@ -12,71 +13,11 @@ LuaFileSystem is free software and uses the same license as Lua 5.1
12 13
13LuaRocks Installation 14LuaRocks Installation
14--------------------- 15---------------------
15luarocks install luafilesystem
16 16
17```
18luarocks install luafilesystem
19```
17 20
18Documentation 21Documentation
19------------- 22-------------
20Please check the documentation at doc/us/ for more information. 23Please check the documentation at doc/us/ for more information.
21
22History
23-------
24
25Version 1.6.3 [15/Jan/2012]
26 * Lua 5.3 compatibility
27 * Assorted bugfixes
28
29Version 1.6.2 [??/Oct/2012]
30 * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks)
31
32Version 1.6.1 [01/Oct/2012]
33 * fix build for Lua 5.2
34
35Version 1.6.0 [26/Sep/2012]
36 * getcwd fix for Android
37 * support for Lua 5.2
38 * add lfs.link
39 * other bug fixes
40
41Version 1.5.0 [20/Oct/2009]
42 * added explicit next and close methods to second return value of lfs.dir (the directory object), for explicit iteration or explicit closing.
43 * added directory locking via lfs.lock_dir function (see the manual).
44
45Version 1.4.2 [03/Feb/2009]
46
47 * fixed bug [#13198] lfs.attributes(filename, 'size') overflow on files > 2 Gb again (bug report and patch by KUBO Takehiro).
48 * fixed bug [#39794] Compile error on Solaris 10 (bug report and patch by Aaron B).
49 * fixed compilation problems with Borland C.
50
51Version 1.4.1 [07/May/2008]
52
53 * documentation review
54 * fixed Windows compilation issues
55 * fixed bug in the Windows tests (patch by Shmuel Zeigerman)
56 * fixed bug [#2185] lfs.attributes(filename, 'size') overflow on files > 2 Gb
57
58Version 1.4.0 [13/Feb/2008]
59
60 * added function lfs.setmode (works only in Windows systems).
61 * lfs.attributes raises an error if attribute does not exist
62
63Version 1.3.0 [26/Oct/2007]
64
65 * added function lfs.symlinkattributes (works only in non Windows systems).
66
67Version 1.2.1 [08/May/2007]
68
69 * compatible only with Lua 5.1 (Lua 5.0 support was dropped)
70
71Version 1.2 [15/Mar/2006]
72
73 * added optional argument to lfs.attributes
74 * added function lfs.rmdir
75 * bug correction on lfs.dir
76
77Version 1.1 [30/May/2005]
78
79 * added function lfs.touch.
80
81Version 1.0 [21/Jan/2005]
82Version 1.0 Beta [10/Nov/2004]