diff options
-rw-r--r-- | README | 71 |
1 files changed, 6 insertions, 65 deletions
@@ -1,6 +1,7 @@ | |||
1 | LuaFileSystem - File System Library for Lua | 1 | LuaFileSystem - File System Library for Lua |
2 | Copyright 2003 Kepler Project | 2 | Copyright 2003-2015 Kepler Project |
3 | http://www.keplerproject.org/luafilesystem | 3 | |
4 | http://keplerproject.github.io/luafilesystem | ||
4 | 5 | ||
5 | Description | 6 | Description |
6 | ----------- | 7 | ----------- |
@@ -12,71 +13,11 @@ LuaFileSystem is free software and uses the same license as Lua 5.1 | |||
12 | 13 | ||
13 | LuaRocks Installation | 14 | LuaRocks Installation |
14 | --------------------- | 15 | --------------------- |
15 | luarocks install luafilesystem | ||
16 | 16 | ||
17 | ``` | ||
18 | luarocks install luafilesystem | ||
19 | ``` | ||
17 | 20 | ||
18 | Documentation | 21 | Documentation |
19 | ------------- | 22 | ------------- |
20 | Please check the documentation at doc/us/ for more information. | 23 | Please check the documentation at doc/us/ for more information. |
21 | |||
22 | History | ||
23 | ------- | ||
24 | |||
25 | Version 1.6.3 [15/Jan/2012] | ||
26 | * Lua 5.3 compatibility | ||
27 | * Assorted bugfixes | ||
28 | |||
29 | Version 1.6.2 [??/Oct/2012] | ||
30 | * Full Lua 5.2 compatibility (with Lua 5.1 fallbacks) | ||
31 | |||
32 | Version 1.6.1 [01/Oct/2012] | ||
33 | * fix build for Lua 5.2 | ||
34 | |||
35 | Version 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 | |||
41 | Version 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 | |||
45 | Version 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 | |||
51 | Version 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 | |||
58 | Version 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 | |||
63 | Version 1.3.0 [26/Oct/2007] | ||
64 | |||
65 | * added function lfs.symlinkattributes (works only in non Windows systems). | ||
66 | |||
67 | Version 1.2.1 [08/May/2007] | ||
68 | |||
69 | * compatible only with Lua 5.1 (Lua 5.0 support was dropped) | ||
70 | |||
71 | Version 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 | |||
77 | Version 1.1 [30/May/2005] | ||
78 | |||
79 | * added function lfs.touch. | ||
80 | |||
81 | Version 1.0 [21/Jan/2005] | ||
82 | Version 1.0 Beta [10/Nov/2004] | ||