Gitiles
Code Review
Sign In
gerrit.rockbox.org
/
rockbox
/
68947473e11ec9ac97f00fa5c70cee820753be90
/
apps
/
plugins
/
lua
6894747
Move math.h to firmware/libc/include/ and fix slight incompatibilities between our and the host's math.h
by Thomas Martitz
· 15 years ago
057c111
Fix LUA red and yellow.
by Michael Sevakis
· 15 years ago
50a6ca3
Move c/h files implementing/defining standard library stuff into a new libc directory, also standard'ify some parts of the code base (almost entirely #include fixes).
by Thomas Martitz
· 15 years ago
0a1d7c2
Make open() posix compliant api-wise. A few calls (those with O_CREAT) need the additional optional mode parameter so add it. Impact for the core is almost zero, as open() is a wrapper macro for the real open function which doesn't take the variable parameter.
by Thomas Martitz
· 15 years ago
9a3c077
Fix two warnings that appear with gcc4.4.3. The one in recording.c ("compact_view is used uninitialized" seems to be false positive unfortunately).
by Thomas Martitz
· 15 years ago
1251fa5
Lua fscanf: use pointer of file descriptor instead of file descriptor itself to avoid 64-bit pointer<->int clash (aka fix yellow).
by Maurus Cuelenaere
· 15 years ago
9bf28de
Fix FS#11007: Lua didn't parse negative numbers correct when reading from files
by Maurus Cuelenaere
· 15 years ago
5ca112b
Lua: return nil when function failed instead of returning nothing
by Maurus Cuelenaere
· 15 years ago
b1a7511
Also expose functions having (s)size_t or off_t as argument/return type to Lua.
by Maurus Cuelenaere
· 15 years ago
19c3e77
Boomshine plugin : port to Greyscale and B/W targets, and targets without touchscreen (currently using the virtual keyboard keymap)
by Kevin Ferrare
· 15 years ago
8dbef6d
Lua: add lib/helper.c wrappers
by Maurus Cuelenaere
· 15 years ago
6314952
Lua: add parts of the math library (all floating point functions are #ifdef'ed out)
by Maurus Cuelenaere
· 15 years ago
9dd25ad
Lua: add do_menu() wrapper. Also fix potential NULL pointer dereference
by Maurus Cuelenaere
· 15 years ago
8855b0c
Use PLUGINFLAGS in lua.make, instead of only CFLAGS.
by Thomas Martitz
· 15 years ago
e99dd18
Make sure to use $(CFLAGS) to get all defines when preprocessing actions.h
by Frank Gevaerts
· 15 years ago
8898339
Lua plugin: fix bad behaviour for io.open(path, 'w')
by Maurus Cuelenaere
· 15 years ago
527b069
Lua: implement the ^ and % operators
by Maurus Cuelenaere
· 16 years ago
1fde0dd
Lua: return nil when kbd_input() gets aborted and make it possible to preset the input string (based on FS#10455 by Christophe Gragnic)
by Maurus Cuelenaere
· 16 years ago
1dc0c46
Lua IOlib: when opening files for writing/appending, check if they exist and if not, add O_CREAT.
by Maurus Cuelenaere
· 16 years ago
be54b7f
Revert r21863 partly: fixes Lua
by Maurus Cuelenaere
· 16 years ago
3d4701a
FS#10080
by Nils Wallménius
· 16 years ago
80b4e5d
Lua:
by Maurus Cuelenaere
· 16 years ago
cfffedf
Lua IOlib: don't create files when they don't exist
by Maurus Cuelenaere
· 16 years ago
59c4b68
Lua: expose SCREEN_MAIN & SCREEN_REMOTE (for rb.lcd_*() functions)
by Maurus Cuelenaere
· 16 years ago
3653aea
Lua: use rb->screens[] to do painting
by Maurus Cuelenaere
· 16 years ago
427bf0b
Also make rocklib_aux.c depend on $(LUA_OBJ)
by Maurus Cuelenaere
· 16 years ago
beb9066
Lua: implement gui_syncyesno_run
by Maurus Cuelenaere
· 16 years ago
ce5e6ce
Fix sim_* errors when compiling Lua
by Maurus Cuelenaere
· 16 years ago
9db43da
Fix actions.lua & buttons.lua make errors
by Maurus Cuelenaere
· 16 years ago
a9fdd60
Add a Rockbox header..
by Maurus Cuelenaere
· 16 years ago
d755a5a
Lua: add script which wraps not-yet ported C functions to Lua
by Maurus Cuelenaere
· 16 years ago
69c73e8
Lua: always expose BUTTON_TOUCHSCREEN and remove BUTTON_ constants from rocklib.c
by Maurus Cuelenaere
· 16 years ago
9bff845
Lua: because Rockbox doesn't support any current working directory functionality, 'hack' loadlib so it replace '$' in LUA_PATH_DEFAULT with the directory wherein the current script is.
by Maurus Cuelenaere
· 16 years ago
bc4d223
Correct comment
by Maurus Cuelenaere
· 16 years ago
f3efc26
Lua: also expose BUTTON_REL, BUTTON_REPEAT & BUTTON_TOUCHSCREEN
by Maurus Cuelenaere
· 16 years ago
2b92fe2
Lua: remove BUTTON_TOUCHSCREEN as this constant is available in buttons.lua
by Maurus Cuelenaere
· 16 years ago
e7db6f9
Fix typo & red
by Maurus Cuelenaere
· 16 years ago
681ca21
Lua:
by Maurus Cuelenaere
· 16 years ago
3ff84e5
Lua: add the package library
by Maurus Cuelenaere
· 16 years ago
af980d8
Lua: expose BUTTON_* defines
by Maurus Cuelenaere
· 16 years ago
388e31c
Fix FS#10378: Lua crashes when loading non-existing files
by Maurus Cuelenaere
· 16 years ago
3391bf3
Fix yellow
by Maurus Cuelenaere
· 16 years ago
153ac73
Fix helloworld.lua for mono targets (+ add lcd_mono_bitmap() & lcd_mono_bitmap_part() to Lua API)
by Maurus Cuelenaere
· 16 years ago
a7621fc
Correct the includes; the old way broke parallel builds.
by Magnus Holmgren
· 16 years ago
9c3e679
Lua: add touchscreen_set_mode & current_path (+ some constants)
by Maurus Cuelenaere
· 16 years ago
82eea9e
Lua: add bitlib (makes bitwise operators possible)
by Maurus Cuelenaere
· 16 years ago
acbbf93
Lua: make sure action.h gets C preprocessed before processing it
by Maurus Cuelenaere
· 16 years ago
1e980cd
Fix yellow & red
by Maurus Cuelenaere
· 16 years ago
b2581e1
Lua: add support for os library
by Maurus Cuelenaere
· 16 years ago
cd5e98d
Lua: re-use the viewport pointer; also use the shorter lua_getfield() & lua_setfield() notations (thanks Antoine Cellerier)
by Maurus Cuelenaere
· 16 years ago
7b16010
Fix some typos
by Maurus Cuelenaere
· 16 years ago
06ba3cc
Lua: port viewports + add test_viewports.lua
by Maurus Cuelenaere
· 16 years ago
88cf5b3
Fix mingw & cygwin builds
by Maurus Cuelenaere
· 16 years ago
aec37aa
* read_bmp_*(): add FORMAT_RETURN_SIZE
by Maurus Cuelenaere
· 16 years ago
6af0cfd
Lua: /me should learn about C arrays.. :/
by Maurus Cuelenaere
· 16 years ago
6f6cfed
Lua: fix rocklua_image issue + add LCD_RGBPACK & LCD_RGBUNPACK wrappers
by Maurus Cuelenaere
· 16 years ago
86fe1e8
Lua: add image handling + some other wrappers
by Maurus Cuelenaere
· 16 years ago
1865af9
Lua: add stack traceback when erroring out
by Maurus Cuelenaere
· 16 years ago
d4ebb80
Set svn properties
by Maurus Cuelenaere
· 16 years ago
0f7e4e3
Lua:
by Maurus Cuelenaere
· 16 years ago
522aa2e
Fix the 'cannot create /.../apps/plugins/lua/actions.lua: Directory nonexistent' error
by Maurus Cuelenaere
· 16 years ago
fb6b159
Lua:
by Maurus Cuelenaere
· 16 years ago
2cd4a94
Lua: add file handling
by Maurus Cuelenaere
· 16 years ago
bcfba08
Lua: add actions.lua to the zip file
by Maurus Cuelenaere
· 16 years ago
a9b2d1b
Lua: fix some issues with rocklib
by Maurus Cuelenaere
· 16 years ago
7a04a54
Forgot to remove this testing code..
by Maurus Cuelenaere
· 16 years ago
cf87597
Commit FS#9174: Lua scripting language by Dan Everton
by Maurus Cuelenaere
· 16 years ago