diff options
author | Hisham Muhammad <hisham@gobolinux.org> | 2020-04-22 22:16:42 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2020-04-22 22:16:42 -0300 |
commit | 7c6e1b013caec0602ca4796df3b1d7253a2dd258 (patch) | |
tree | 121b8bfea1bd3a51cbab4d7e0281e60ce536b765 | |
parent | 68c624c686c471b398704e73a8df1a942666e7d5 (diff) | |
download | luafilesystem-7c6e1b013caec0602ca4796df3b1d7253a2dd258.tar.gz luafilesystem-7c6e1b013caec0602ca4796df3b1d7253a2dd258.tar.bz2 luafilesystem-7c6e1b013caec0602ca4796df3b1d7253a2dd258.zip |
Release 1.8.0v1_8_0
-rw-r--r-- | doc/us/index.html | 11 | ||||
-rw-r--r-- | src/lfs.c | 2 | ||||
-rw-r--r-- | src/lfs.def | 2 |
3 files changed, 12 insertions, 3 deletions
diff --git a/doc/us/index.html b/doc/us/index.html index 195ab60..5a2afc0 100644 --- a/doc/us/index.html +++ b/doc/us/index.html | |||
@@ -70,7 +70,7 @@ the underlying directory structure and file attributes.</p> | |||
70 | 70 | ||
71 | <h2><a name="status"></a>Status</h2> | 71 | <h2><a name="status"></a>Status</h2> |
72 | 72 | ||
73 | <p>Current version is 1.7.0. It works with Lua 5.1, 5.2 and 5.3, and it runs on various | 73 | <p>Current version is 1.8.0. It works with Lua 5.1, 5.2, 5.3 and 5.4, and it runs on various |
74 | flavors of Unix (including Linux, BSDs, macOS) and Windows.</p> | 74 | flavors of Unix (including Linux, BSDs, macOS) and Windows.</p> |
75 | 75 | ||
76 | <h2><a name="download"></a>Download</h2> | 76 | <h2><a name="download"></a>Download</h2> |
@@ -86,6 +86,15 @@ $ luarocks install luafilesystem | |||
86 | <h2><a name="history"></a>History</h2> | 86 | <h2><a name="history"></a>History</h2> |
87 | 87 | ||
88 | <dl class="history"> | 88 | <dl class="history"> |
89 | <dt><strong>Version 1.8.0</strong> [22/Apr/2020]</dt> | ||
90 | <dd><ul> | ||
91 | <li>Lua 5.4 support</li> | ||
92 | <li>lfs.link and lfs.symlinkattributes now work on Windows</li> | ||
93 | <li>MACOSX_DEPLOYMENT_TARGET is configurable in the Makefile</li> | ||
94 | <li>Fallback to _POSIX_PATH_MAX when MAXPATHLEN is not avaliable</li> | ||
95 | <li>Fixed memory leak in case of realloc failure</li> | ||
96 | </ul></dd> | ||
97 | |||
89 | <dt><strong>Version 1.7.0</strong> [15/Sep/2017]</dt> | 98 | <dt><strong>Version 1.7.0</strong> [15/Sep/2017]</dt> |
90 | <dd><ul> | 99 | <dd><ul> |
91 | <li>symlinkattributes function now provides 'target' field, containing name of the file that the symlink points to.</li> | 100 | <li>symlinkattributes function now provides 'target' field, containing name of the file that the symlink points to.</li> |
@@ -87,7 +87,7 @@ | |||
87 | 87 | ||
88 | #include "lfs.h" | 88 | #include "lfs.h" |
89 | 89 | ||
90 | #define LFS_VERSION "1.7.0" | 90 | #define LFS_VERSION "1.8.0" |
91 | #define LFS_LIBNAME "lfs" | 91 | #define LFS_LIBNAME "lfs" |
92 | 92 | ||
93 | #if LUA_VERSION_NUM >= 503 /* Lua 5.3+ */ | 93 | #if LUA_VERSION_NUM >= 503 /* Lua 5.3+ */ |
diff --git a/src/lfs.def b/src/lfs.def index 4055ff0..bd8c847 100644 --- a/src/lfs.def +++ b/src/lfs.def | |||
@@ -1,4 +1,4 @@ | |||
1 | LIBRARY lfs.dll | 1 | LIBRARY lfs.dll |
2 | VERSION 1.7 | 2 | VERSION 1.8 |
3 | EXPORTS | 3 | EXPORTS |
4 | luaopen_lfs | 4 | luaopen_lfs |