summaryrefslogtreecommitdiff
path: root/apps (follow)
Commit message (Collapse)AuthorAge
...
* Second attempt at fixing FS#10396. Turns out that gcc for coldfire choose to ↵Magnus Holmgren2009-06-30
| | | | | | inline a function with a big appetite for stack. The previous fix improved things a bit, but not nearly enough. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21580 a1c6a512-1295-4272-9138-f99709370657
* fs#10290: Sansa AMS language fixes by Bertrik Sikken and Hilton ShumwayRafaël Carré2009-06-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21579 a1c6a512-1295-4272-9138-f99709370657
* Improve the highscore related functions in plugin lib (FS#10350)Alexander Levin2009-06-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21578 a1c6a512-1295-4272-9138-f99709370657
* Small change to significantly reduce stack usage during database scanning. ↵Magnus Holmgren2009-06-30
| | | | | | This should fix FS#10396. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21576 a1c6a512-1295-4272-9138-f99709370657
* Correct commentMaurus Cuelenaere2009-06-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21574 a1c6a512-1295-4272-9138-f99709370657
* Lua: also expose BUTTON_REL, BUTTON_REPEAT & BUTTON_TOUCHSCREENMaurus Cuelenaere2009-06-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21573 a1c6a512-1295-4272-9138-f99709370657
* Bugfix for FS#10157 - "inaccurate seeking while paused" by Jeffrey Goode.Thomas Martitz2009-06-29
| | | | | | The pcmbuffer wasn't reset after subsequent seeks (i.e. all but the first one) when seeking while paused. This caused the buffer to be filled only once and so the wrong sound was played upon resuming. Now we make sure the pcmbuffer is always reset when not playing (a more detailed explaination is in the task). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21570 a1c6a512-1295-4272-9138-f99709370657
* FS#10377 - "PCM buffer remainder is played under too many conditions" by ↵Thomas Martitz2009-06-29
| | | | | | | | Jeffrey Goode. Prevents playing the remainder of the pcmbuf on manual stop, as it isn't needed in this case. Now the remainder is only played when the music automatically plays out. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21569 a1c6a512-1295-4272-9138-f99709370657
* Remove int_prio argument from timer_register, and move the only use for it ↵Rafaël Carré2009-06-29
| | | | | | | | into alpine_cdc plugin, since this plugin is only built on SH7034 Also remove it from TIMER_START() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21558 a1c6a512-1295-4272-9138-f99709370657
* Do not modify the passed in parameter string (FS#10392 by Jonas Häggqvist)Alexander Levin2009-06-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21551 a1c6a512-1295-4272-9138-f99709370657
* Lua: remove BUTTON_TOUCHSCREEN as this constant is available in buttons.luaMaurus Cuelenaere2009-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21544 a1c6a512-1295-4272-9138-f99709370657
* Fix typo & redMaurus Cuelenaere2009-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21543 a1c6a512-1295-4272-9138-f99709370657
* Lua:Maurus Cuelenaere2009-06-28
| | | | | | | | | | * add IO lib (adapted to Rockbox) * remove old IO wrappers * rework helloworld.lua to work with the IO lib * do some stuff in helloworld.lua better (part of FS#10379, by James Callahan) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21541 a1c6a512-1295-4272-9138-f99709370657
* FS#10099: new lib, which displays formatted text on every target; also ↵Johannes Schwarz2009-06-28
| | | | | | supports viewport git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21537 a1c6a512-1295-4272-9138-f99709370657
* Trivial changes to Mazezam to fix the red on 3G iPods.Magnus Holmgren2009-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21536 a1c6a512-1295-4272-9138-f99709370657
* Use hand-written constants table on ARMv5+ for JPEG IDCT, and load four ↵Andrew Mahone2009-06-28
| | | | | | 16-bit constants at a time with ldrd. Not useful for ARMv4, since one load per constant would still be needed, and limited range of ldrsh would force multiple copies of table. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21535 a1c6a512-1295-4272-9138-f99709370657
* FS#10294: reform the weird buttons in maze and mazezam for Fuze, E200 and ipod3GJohannes Schwarz2009-06-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21529 a1c6a512-1295-4272-9138-f99709370657
* Use single-instruction shift-and-saturate in place of range_limit for JPEG ↵Andrew Mahone2009-06-27
| | | | | | on ARMv6. Only affects the 16-point horizontal-pass IDCT. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21528 a1c6a512-1295-4272-9138-f99709370657
* ARM assembly 8-point IDCT, both passes. No ARMv5/6 optimizations yet, aside ↵Andrew Mahone2009-06-27
| | | | | | from usat for final output. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21526 a1c6a512-1295-4272-9138-f99709370657
* FS#10283 simplify plugins' menus by using stringlist with callback (by ↵Johannes Schwarz2009-06-26
| | | | | | Teruaki Kawashima - some minor changes by myself) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21523 a1c6a512-1295-4272-9138-f99709370657
* fix small issues in xobox (part of FS#10283 by Teruaki Kawashima)Johannes Schwarz2009-06-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21522 a1c6a512-1295-4272-9138-f99709370657
* Fix a typo in jpeg_idct4h which caused garbled JPEGs on ARMv5.Rob Purchase2009-06-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21520 a1c6a512-1295-4272-9138-f99709370657
* Lua: add the package libraryMaurus Cuelenaere2009-06-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21506 a1c6a512-1295-4272-9138-f99709370657
* Lua: expose BUTTON_* definesMaurus Cuelenaere2009-06-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21500 a1c6a512-1295-4272-9138-f99709370657
* Clear the display before showing the splash (part of FS#10138 by Teruaki ↵Alexander Levin2009-06-24
| | | | | | Kawashima) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21498 a1c6a512-1295-4272-9138-f99709370657
* Delete the save file immediately after loading it to avoid false tries at ↵Alexander Levin2009-06-24
| | | | | | the end (part of FS#10138 by Teruaki Kawashima, minor modification by me) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21497 a1c6a512-1295-4272-9138-f99709370657
* Do not unnecessarily change and restore the status bar setting (part of ↵Alexander Levin2009-06-24
| | | | | | FS#10138 by Teruaki Kawashima) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21493 a1c6a512-1295-4272-9138-f99709370657
* Ensure that the file handle is always closed in text editor plugin (part of ↵Alexander Levin2009-06-24
| | | | | | FS#10138 by Teruaki Kawashima, minor modifications by me) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21491 a1c6a512-1295-4272-9138-f99709370657
* Change c200 to c200* everywhere since the c200v2 is identical to the c200.Jonas Häggqvist2009-06-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21490 a1c6a512-1295-4272-9138-f99709370657
* Correct the slight misalignment of the clock (FS#10334 by Andre Lupa)Alexander Levin2009-06-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21489 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#10378: Lua crashes when loading non-existing filesMaurus Cuelenaere2009-06-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21488 a1c6a512-1295-4272-9138-f99709370657
* Updated italian translation.Alessio Lenzi2009-06-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21487 a1c6a512-1295-4272-9138-f99709370657
* fix a typo in comments (audio CD duration is not 74 or 80 hours)Rafaël Carré2009-06-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21479 a1c6a512-1295-4272-9138-f99709370657
* Oops.Steve Bavin2009-06-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21470 a1c6a512-1295-4272-9138-f99709370657
* Allow use of timestretch with semitones in the pitchscreen. Rename variables ↵Steve Bavin2009-06-22
| | | | | | to clarify the meaning of 'speed'. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21468 a1c6a512-1295-4272-9138-f99709370657
* Redo r21460 and r21462 so that it doesn't introduce a new #define. Patch by ↵Thomas Martitz2009-06-22
| | | | | | Jeffrey Goode, taken from FS#10366. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21467 a1c6a512-1295-4272-9138-f99709370657
* Center the list on the currently loaded file in the following screens ↵Jonas Häggqvist2009-06-22
| | | | | | | | | | | | | | | (FS#10093): - Font selection - FM preset selection - WPS/RWPS selection - Language selection Modify the menu wording to make them seem more like a setting and update the manual accordingly. The code could possibly be more compact - any help on that would be appreciated. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21464 a1c6a512-1295-4272-9138-f99709370657
* FS#10365 - Optional debug output for albumart.c Thomas Martitz2009-06-21
| | | | | | Same as r21460 just for albumart.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21462 a1c6a512-1295-4272-9138-f99709370657
* FS#10364 - Optional debug output for vorbis.c by Jeffrey Goode.Thomas Martitz2009-06-21
| | | | | | Gets rid of the (recently added) annyoing vorbis debug statements. Comment out "#define LOGF_ENABLE" in vorbis.c to restore them. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21460 a1c6a512-1295-4272-9138-f99709370657
* Change the X5/M5 remote keymapping to match the M3 way, improving ↵Jens Arnold2009-06-21
| | | | | | consistency with the button labels. The most important change is that VOL+/VOL- are moving up/down in lists, NEXT enters submenus or selects, PREV exists or cancels. There are a few more slight differences. * Fix M3 remote button mapping in the vkeyboard: moving up/down was switched and select/accept didn't work. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21454 a1c6a512-1295-4272-9138-f99709370657
* Do not use lcd_blit_yuv() if MEMORYSIZE <= 2, since mpegplayer won't run ↵Rafaël Carré2009-06-21
| | | | | | | | anyway (and won't build) Only affected target: Sansa c200v2 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21453 a1c6a512-1295-4272-9138-f99709370657
* Deprecate LANG_REPLAYGAIN_ENABLE in all languages, which r21415 failed to do.Jonas Häggqvist2009-06-21
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21437 a1c6a512-1295-4272-9138-f99709370657
* Remove viewport menu from star and remove useless button macros in ↵Johannes Schwarz2009-06-20
| | | | | | code.(FS#10281) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21422 a1c6a512-1295-4272-9138-f99709370657
* Deprecate the string made unnecessary in r21414Alexander Levin2009-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21415 a1c6a512-1295-4272-9138-f99709370657
* Merge the "Replaygain Off" option into the replaygain type; eliminate the ↵Alexander Levin2009-06-20
| | | | | | "On/Off" setting (FS#10356). All WPS tags should work as before. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21414 a1c6a512-1295-4272-9138-f99709370657
* Plugin for testing LCD driver and greylib drawing performance.Jens Arnold2009-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21405 a1c6a512-1295-4272-9138-f99709370657
* More translations for arabic by Raafat Akkad (FS#10355).Jonas Häggqvist2009-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21404 a1c6a512-1295-4272-9138-f99709370657
* Keep simulators happy.Miika Pekkarinen2009-06-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21403 a1c6a512-1295-4272-9138-f99709370657
* A bunch of stability fixes into tagcache engine and database browser. Mainly ↵Miika Pekkarinen2009-06-20
| | | | | | data retrieval problems, races, data corruption of sorted index files at the end with junk data, access to unitialized memory and so on. Should fix FS#8710 and may fix FS#8414. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21402 a1c6a512-1295-4272-9138-f99709370657
* Enable charging on the Sansa Fuze (charging/discharging curves are still ↵Bertrik Sikken2009-06-20
| | | | | | uncalibrated) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21394 a1c6a512-1295-4272-9138-f99709370657