summaryrefslogtreecommitdiff
path: root/apps (follow)
Commit message (Collapse)AuthorAge
* FS#9487 fixes and improvements of the calendar plugin by Teruaki KawashimaNils Wallménius2008-10-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18870 a1c6a512-1295-4272-9138-f99709370657
* Just correct a typo in a comment.Mustapha Senhaji2008-10-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18869 a1c6a512-1295-4272-9138-f99709370657
* Remove the event object in the kernel since it's rather extraneous at the ↵Michael Sevakis2008-10-23
| | | | | | moment. This makes the codecs and the plugins incompatible, so update fully. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18867 a1c6a512-1295-4272-9138-f99709370657
* Refactor the panning code into separate functions, and correct a commentDave Chapman2008-10-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18865 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#9504 - make the FILENAME_SETTING() macro more user-proof, also ↵Jonathan Gordon2008-10-23
| | | | | | rename it to TEXT_SETTING git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18864 a1c6a512-1295-4272-9138-f99709370657
* Don't accept 0 for the width or height of a progress bar in the %pb tag. A ↵Dave Chapman2008-10-22
| | | | | | zero width causes a divide by zero, and a zero height simply doesn't make any sense, so we assume it was a mistake. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18863 a1c6a512-1295-4272-9138-f99709370657
* Fix test_codec plugin that was broken by r18834Nils Wallménius2008-10-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18862 a1c6a512-1295-4272-9138-f99709370657
* fix FS#8124 - pressing STOP after seeking while paused causes playback to ↵Jonathan Gordon2008-10-22
| | | | | | start again for a second or 2 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18860 a1c6a512-1295-4272-9138-f99709370657
* Make some local global variables static.Dave Chapman2008-10-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18859 a1c6a512-1295-4272-9138-f99709370657
* Fix .talk clips on hwcodec targets. mp3info() must not call get_metadata(), ↵Jens Arnold2008-10-21
| | | | | | because this one tries to guess which get_xx_metadata() to call from the extension, and mp3info() is used in talk_file() (extension .talk) on hwcodec. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18855 a1c6a512-1295-4272-9138-f99709370657
* Move the monolithic jpeg viewer into its own subdirectory and split it into ↵Dave Chapman2008-10-21
| | | | | | three (for now - maybe it should be split further) files - jpeg.c (the main plugin/viewer parts), jpeg_decoder.c (the actual decoder) and. for colour targets only, yuv2rgb.c. The intention of this commit is as a first step towards abstracting this viewer into a reusable jpeg decoder and a multi-format image viewer. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18853 a1c6a512-1295-4272-9138-f99709370657
* Codec memory reorganizationNils Wallménius2008-10-19
| | | | | | | | | | | | Based on a patch by Tomasz Malesinski * Merge Codec buffer and Malloc buffer into one large buffer. * The new merged buffer is now 1MB on targets with lots of memory. * Renamed codec_get_memory to codec_get_buffer and made it behave more. like plugin_get_buffer. * Bumped Codec api and min api versions. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18834 a1c6a512-1295-4272-9138-f99709370657
* Dont show lines which have no info in the id3 viewer screen.Jonathan Gordon2008-10-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18832 a1c6a512-1295-4272-9138-f99709370657
* revert plugin_api part of r18830, as this was the wrong solution for thoseFrank Gevaerts2008-10-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18831 a1c6a512-1295-4272-9138-f99709370657
* code police : fix some multiply defined variablesFrank Gevaerts2008-10-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18830 a1c6a512-1295-4272-9138-f99709370657
* Increase UCL blocksize in order to fix 'blocksize too small' errors when ↵Jens Arnold2008-10-18
| | | | | | trying to flash rockbox on fm/v2 recorders. Default blocksize is 256KB and our thinned-out decompressor only supports single-block UCL files. 1MB blocksize should be on the safe side. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18823 a1c6a512-1295-4272-9138-f99709370657
* Merge the necessary changes for the new archos firmware flash images back to ↵Jens Arnold2008-10-16
| | | | | | the trunk, including the related optimisations. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18821 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#7482 by Klaas Bosteels - return the full path of a file which ↵Jonathan Gordon2008-10-16
| | | | | | doesnt have valid tags yet (and use the end of the filename for the title) instead of before which was only using the filename git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18820 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#9480 - centralise and organise the events in the apps/ layer. Jonathan Gordon2008-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18819 a1c6a512-1295-4272-9138-f99709370657
* Split id3.c/h into metadata.c/h and metadata/mp3.c. Updated all references. ↵Björn Stenberg2008-10-15
| | | | | | Moved mp3data.c/h from firmware to apps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18814 a1c6a512-1295-4272-9138-f99709370657
* Update Swedish translation.Magnus Holmgren2008-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18811 a1c6a512-1295-4272-9138-f99709370657
* Make some dependencies on id3.h explicit.Magnus Holmgren2008-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18810 a1c6a512-1295-4272-9138-f99709370657
* Added #include pcm_record.hBjörn Stenberg2008-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18809 a1c6a512-1295-4272-9138-f99709370657
* Red build fix: Moved PCM #defines from pcm_record.h to pcm.h. Added ↵Björn Stenberg2008-10-14
| | | | | | necessary #includes to statusbar.c and s1a0903x01.c. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18808 a1c6a512-1295-4272-9138-f99709370657
* Moved pcm_record from firmware to apps. Cleaned up some. Now all code using ↵Björn Stenberg2008-10-14
| | | | | | struct mp3entry is in apps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18807 a1c6a512-1295-4272-9138-f99709370657
* Correct poor assumption on my part that WMA frames are 2048 samples long. ↵Michael Giacomelli2008-10-14
| | | | | | Fixed problems with sample rates < 44.1khz. Fixes FS#9242 and FS#9439. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18805 a1c6a512-1295-4272-9138-f99709370657
* Pegbox - new graphics for Archos, c200, small H10, Mini, M3 - also cleaning ↵Marianne Arnold2008-10-13
| | | | | | and small tweaks to the rest of the greyscale and monochrome bitmaps. Aspect ratio correct the pieces for the Archos screen (now uses 9x7 tiles) which made it possible to also add the header with statistics). Necessary changes to pegbox.c: don't assume piece height = piece width, prepare a new 'wide' layout for the c200 with the statics at the side. Additional cleanup - make the code more readable by replacing repeatedly used bmpheight_XYZ with defines, splitting some too long lines. Let the 'Start on level' line in the menu actually appear on the Mini's screen. Also rename the greyscale graphics according convention to '...x2.bmp' and set the mime-type more accurately for all pegbox bitmaps. Finally, add Joel Puik, the creator of the original colour graphics to CREDITS. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18803 a1c6a512-1295-4272-9138-f99709370657
* Stop scrolling lines when entering or leaving a menu list item. Fixes FS ↵Peter D'Hoye2008-10-13
| | | | | | #9478 (Scrolling lines from (menu) lists are drawn over other screens) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18802 a1c6a512-1295-4272-9138-f99709370657
* Move 'Playback Settings' up from 'General Settings' to 'Settings' (FS#9472 ↵Nils Wallménius2008-10-13
| | | | | | by William Poetra Yoga Hadisoeseno but without the menu rearrangement) also closes FS#9154. Update manual to reflect the menu change, Playback Settings is now its own chapter. As a bonus that makes it a bit easier to find stuff in the toc. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18799 a1c6a512-1295-4272-9138-f99709370657
* FS#9463 Fixes and updates to the simplified Chinese translation by William ↵Nils Wallménius2008-10-13
| | | | | | Poetra Yoga Hadisoeseno git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18798 a1c6a512-1295-4272-9138-f99709370657
* Alternate fix for the bug fixed by FS#9163, the selection in the playlist ↵Nils Wallménius2008-10-13
| | | | | | viewer was one line too low, which caused it to be off-screen if the last item was selected. The cause was that the selected item was set before the list title, fixed by re-calculating the position of the selected item after setting the title. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18797 a1c6a512-1295-4272-9138-f99709370657
* Minor clean up, move common define to a header file and use TIME_AFTER macroNils Wallménius2008-10-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18783 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#9479 - "readonly" lists sometimes wrap when they shouldnt. part of ↵Jonathan Gordon2008-10-12
| | | | | | the fix forced it to disable wrapping for these lists.. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18778 a1c6a512-1295-4272-9138-f99709370657
* Updated italian translation.Alessio Lenzi2008-10-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18774 a1c6a512-1295-4272-9138-f99709370657
* * Make %t stricter by aborting if a value is not given.Jonathan Gordon2008-10-11
| | | | | | | | * Move the default value for %mv back into wps_parser.c where it belongs * Add the debug line for the %mv tag git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18773 a1c6a512-1295-4272-9138-f99709370657
* update the %mv wps tag to let you specify how long it should wait after ↵Jonathan Gordon2008-10-11
| | | | | | | | | being released to go back to false. e.g %mv2 will stay true for 2 seconds or %mv3.5 is 3.5 seconds (same as the %t syntax)... if no number is specified it defaults to 1 second git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18769 a1c6a512-1295-4272-9138-f99709370657
* Forgot description for the new lang stringNils Wallménius2008-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18765 a1c6a512-1295-4272-9138-f99709370657
* Search In PlaylistNils Wallménius2008-10-10
| | | | | | | | | | | | | * Add a title to the list of search results. * Fix drawing of the statusbar. * Avoid splashing in every iteration of the search loop if no new hits, gives about 10x speedup on h300 when searching for a string that gives 30 hits in a playlist of 3000 tracks. * Boost cpu when searching, ~doubles the search speed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18764 a1c6a512-1295-4272-9138-f99709370657
* Moved id3.c, mpeg.c and replaygain.c from firmware/ to apps/. This is the ↵Björn Stenberg2008-10-10
| | | | | | first step in separating the generic metadata code and the id3-specific code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18760 a1c6a512-1295-4272-9138-f99709370657
* change the %mv timeout to 1s which works better, also change the string to ↵Jonathan Gordon2008-10-09
| | | | | | show "v" instead of .:| if its not used as a conditional git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18759 a1c6a512-1295-4272-9138-f99709370657
* Added missing Album Hart voice string and synced italian translation.Alessio Lenzi2008-10-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18757 a1c6a512-1295-4272-9138-f99709370657
* Make it possible to interrupt md5sum. FS#9209 by Chrisopher Williams.Antoine Cellerier2008-10-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18756 a1c6a512-1295-4272-9138-f99709370657
* FS#9460 - Add a tag %mv which can be used to check if the volume button is ↵Jonathan Gordon2008-10-09
| | | | | | being pressed (e.g %?mv<yes|no> ). It will stay true after its released for a little over half a second (not configurable unless someone comes up with a nice way to add a parameter to the tag? 1s is too long and .5s is too short... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18752 a1c6a512-1295-4272-9138-f99709370657
* Bring Dutch language file up to datePeter D'Hoye2008-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18746 a1c6a512-1295-4272-9138-f99709370657
* New recording setting to configure how mono recordings are made. Previously, ↵Peter D'Hoye2008-10-08
| | | | | | this was always L+R, which was kinda silly if your signal was on L only. This setting allows for L, R or L+R. SWCODEC only for now, to be added for HWCODEC (although that will only be L and L+R probably) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18745 a1c6a512-1295-4272-9138-f99709370657
* Small fixes to the french translation by Eric Lassauge and Rafaël CarréNils Wallménius2008-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18744 a1c6a512-1295-4272-9138-f99709370657
* Make the array static const char, and use it for direct lookup, saving ↵Jens Arnold2008-10-08
| | | | | | binsize this way. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18743 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#8949 - Alphabetical directory listing reversed after "Error Accessing ↵Nils Wallménius2008-10-08
| | | | | | Directory", patch by pondlife, some long line police by me, also kill a few error splashes in functions that could be called by threads other than UI git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18742 a1c6a512-1295-4272-9138-f99709370657
* add morse input support to the Olympus m:robe 100, patch by Roy Wallace, FS#9450Marcoen Hirschberg2008-10-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18741 a1c6a512-1295-4272-9138-f99709370657
* Another minor improvement: better pipelining and one less register used in ↵Jens Arnold2008-10-07
| | | | | | vector addition/ subtraction. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18739 a1c6a512-1295-4272-9138-f99709370657