diff options
author | Martin Peach <mrpeach@users.sourceforge.net> | 2011-03-15 20:53:57 +0000 |
---|---|---|
committer | Martin Peach <mrpeach@users.sourceforge.net> | 2011-03-15 20:53:57 +0000 |
commit | 267170167d52cab9e97f879d9127a1cf04f6bb58 (patch) | |
tree | 00260a90ce6472e34c5eff41602af57595c8830d /TODO |
This is a version of Claude Heiland-Allen's lua for Pd. The objects are named pdlua and pdluax instead of lua and luax. So far it seems to work on linux.svn2git-root
svn path=/trunk/externals/pdlua/; revision=15030
Diffstat (limited to 'TODO')
-rw-r--r-- | TODO | 24 |
1 files changed, 24 insertions, 0 deletions
@@ -0,0 +1,24 @@ +todo +- fix Pd crash when a Lua error contains '{' +- documentation +- install target for make +- audit require support thoroughly: + - make require() support compiled packages + - make require() look next to Lua source before containing Pd patch +- add access to this script's and (containing/parent) Pd patch paths +- /usr/bin/ld: lua-lua.o: relocation R_X86_64_32 against `.rodata.str1.1' + can not be used when making a shared object; recompile with -fPIC + +done +- variable support (like [v foo]) +- table support (like [tabread]/[tabwrite]) +- send support +- add hook for object (post creation) +- receive support (preferably multiple receives) +- clock support +- audit possible bugs relating to self.f = f(self, ...) misuse +- write docs on foo.lua vs foo.luax +- change inlet/outlet numbering to start from 1 instead of 0 +- add pd.dofile(file) that searches via Pd's path (actually obj:dofile(file)) +- write docs implementation (eg foo._bar => internal, etc) +- add more features to lexpr |