summaryrefslogtreecommitdiff
path: root/apps/plugins (follow)
Commit message (Collapse)AuthorAge
...
* FS#9326 grammar fix by Clément Pit--ClaudelNils Wallménius2008-08-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18343 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#9308: differentiate between TOUCHPAD & TOUCHSCREENMaurus Cuelenaere2008-08-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18338 a1c6a512-1295-4272-9138-f99709370657
* Fix a problem with dict and checkbox where their internal buffer allocaters ↵Jonathan Gordon2008-08-19
| | | | | | wernt actually fixing the amount of freespace after an alloc (Spotted and fixed by Daniel Weck) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18317 a1c6a512-1295-4272-9138-f99709370657
* Ok, ok, strncpy is better here :PNils Wallménius2008-08-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18285 a1c6a512-1295-4272-9138-f99709370657
* Kill one more of the printf related warnings in gcc 4.3.1Nils Wallménius2008-08-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18284 a1c6a512-1295-4272-9138-f99709370657
* FS#9281 Rename of splash functions.Nils Wallménius2008-08-15
| | | | | | | | | | | | | | | | | | | | * Remove gui_splash() * Rename gui_syncsplash() to splashf() and remove its voice capabilities. * Rename the internal splash() to splash_internal() and introduce an externally visible splash() that handles simple splashing without printf functionality e.g. splash(HZ, ID2P(LANG_FOO)); or splash(HZ, "foo"); if a LANG_* id is passed it will be voiced. * Adjust all places that called gui_syncsplash() to use the correct variant from above. * Export both new functions to plugins and adjust places calling rb->splash() to use the correct variant so that we now have naming consistency between the core and plugins. * Fix one latent bug that would cause my sim to crash with the above changes and correct P2STR and P2ID macros, thanks to pondlife. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18282 a1c6a512-1295-4272-9138-f99709370657
* Apply FS#9155 (Simplified battery bench). This is a simplification/rework of ↵Bertrik Sikken2008-08-14
| | | | | | the current battery bench code. Battery measurements are now done simply once a minute (no more dependency on HDD specific timeouts) and are flushed to disk by using the ata_idle callback instead of polling ata_disk_is_active (this call is removed from the plugin API now) to make the plugin as unobtrusive as possible. This battery bench plugin also works for flash-based targets like sansa e200. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18281 a1c6a512-1295-4272-9138-f99709370657
* Add missing header file to plugins/zxbox/helpers.cBertrik Sikken2008-08-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18280 a1c6a512-1295-4272-9138-f99709370657
* Removed unused abort function implementationBertrik Sikken2008-08-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18261 a1c6a512-1295-4272-9138-f99709370657
* Make wavrecord use the same recording directory as the core.Jens Arnold2008-08-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18247 a1c6a512-1295-4272-9138-f99709370657
* Apply FS#9217 - Rockpaint line-drawing function, replace line-drawing ↵Bertrik Sikken2008-08-01
| | | | | | algorithm by better looking bresenham algorithm git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18176 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#9170 by Dave Hooper. Adds support for profiling on ARM, and fixes ↵Michael Giacomelli2008-07-28
| | | | | | various issues with compiling profile builds. Also, note that profile_reader.pl syntax has changed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18142 a1c6a512-1295-4272-9138-f99709370657
* Oops, revert unrelated changesNils Wallménius2008-07-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18139 a1c6a512-1295-4272-9138-f99709370657
* FS#9221 by Christopher Williams fixing a couple of bugs in keyboxNils Wallménius2008-07-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18138 a1c6a512-1295-4272-9138-f99709370657
* commit asap codec. plays .sap files. At the moment it only plays the default ↵Dominik Wenger2008-07-26
| | | | | | song. So subSongs are ignored. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18121 a1c6a512-1295-4272-9138-f99709370657
* correct overlooked POWER<->A swaps for gigabeat plugins (thanks to Firestorm ↵Robert Kukla2008-07-20
| | | | | | ZERO for reporting) and button fix for blackjack on mr100 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18097 a1c6a512-1295-4272-9138-f99709370657
* Too much on the last commit.Michael Giacomelli2008-07-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18085 a1c6a512-1295-4272-9138-f99709370657
* Use Tremor IMDCT for WMA. Gives a ~20% speedup on ARM and coldfire. All my ↵Michael Giacomelli2008-07-17
| | | | | | test samples gave equivilent or better accuracy (>>16 bit), but there may still be problems. Code becomes somewhat less readable since the IMDCT has bits of Vorbis in it, but this is not a serious issue and the old ffmpeg transform remains in SVN if anyone wants it. Also, WMA now passes Vorbis as the fastest transform codec on ARM, although MPC remains the fastest lossy codec overall. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18084 a1c6a512-1295-4272-9138-f99709370657
* Update lcd-as-memframe.S to only rotate YUV data for portrait LCDs (and ↵Rob Purchase2008-07-15
| | | | | | remove the D2's temporary C implementation). Enable MpegPlayer dithering option for D2. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18055 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#9191 - lots of code reworking for maze.rock, should also fix FS#9184Jonathan Gordon2008-07-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18045 a1c6a512-1295-4272-9138-f99709370657
* fix FS#9184 hopefully...Jonathan Gordon2008-07-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18023 a1c6a512-1295-4272-9138-f99709370657
* #if and #ifdef are slightly different. Use the correct oneFrank Gevaerts2008-07-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17981 a1c6a512-1295-4272-9138-f99709370657
* Keybox, encrypted password storage. Manual page comming soonNils Wallménius2008-07-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17979 a1c6a512-1295-4272-9138-f99709370657
* Bring libmpeg2 portions that we use up to date with the latest libmpeg2 CVS. ↵Michael Sevakis2008-07-01
| | | | | | Fix up some file headers and add a revision history to the libmpeg2 files detailing to which CVS file revisions things were synced. This makes it easier to start in the right place by hand in the future. Hopefully no mistakes and everything works. :-) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17904 a1c6a512-1295-4272-9138-f99709370657
* only build ppmviewer on colour targets (as it doesn't do greylib yet), and ↵Frank Gevaerts2008-06-30
| | | | | | actually document it git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17895 a1c6a512-1295-4272-9138-f99709370657
* fix line endings and propertiesFrank Gevaerts2008-06-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17892 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#9111 - only exit te stats plugin if the exit button is pressedJonathan Gordon2008-06-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17866 a1c6a512-1295-4272-9138-f99709370657
* fix FS#9120 by actually quiting random folder advance config after choosing ↵Jonathan Gordon2008-06-29
| | | | | | "ignore changes and quit" git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17864 a1c6a512-1295-4272-9138-f99709370657
* FS#9085 - Stopwatch: Retain stopwatch times after exit Robert Kukla2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17858 a1c6a512-1295-4272-9138-f99709370657
* Remove a viewport ambiguity by changing the screens width/heigth members ↵Peter D'Hoye2008-06-28
| | | | | | into lcdwidth/lcdheight. Normal usercode should always use getwidth()/getheigth() as that returns the viewport width/height. Fixes issues that would have appeared in many places when introducing viewports with sizes != lcd sizes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17857 a1c6a512-1295-4272-9138-f99709370657
* Updated our source code header to explicitly mention that we are GPL v2 orDaniel Stenberg2008-06-28
| | | | | | | | | later. We still need to hunt down snippets used that are not. 1324 modified files... http://www.rockbox.org/mail/archive/rockbox-dev-archive-2008-06/0060.shtml git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17847 a1c6a512-1295-4272-9138-f99709370657
* - use correct define (make lamp plugin work again)Robert Kukla2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17844 a1c6a512-1295-4272-9138-f99709370657
* implement smooth seeking acceleration for audio playback and mpegplayerMarcoen Hirschberg2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17843 a1c6a512-1295-4272-9138-f99709370657
* Add ppm and rppm viewer by Alexander PapstFrank Gevaerts2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17835 a1c6a512-1295-4272-9138-f99709370657
* fix redFrank Gevaerts2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17834 a1c6a512-1295-4272-9138-f99709370657
* This file was originally sorted, so sort it againFrank Gevaerts2008-06-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17833 a1c6a512-1295-4272-9138-f99709370657
* Add rockblox1d, by Alexander Papst (originally 1drockblox, but renamed to ↵Frank Gevaerts2008-06-28
| | | | | | not end up as the first game listed) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17831 a1c6a512-1295-4272-9138-f99709370657
* Small optimisation for mandelbrot on arm targets: Help the compiler ↵Jens Arnold2008-06-27
| | | | | | allocating registers. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17807 a1c6a512-1295-4272-9138-f99709370657
* Revert pointless change to random_folder_advance_config.cMarc Guay2008-06-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17802 a1c6a512-1295-4272-9138-f99709370657
* Add the Random Folder Advance feature to the manual, along with the plugin ↵Marc Guay2008-06-26
| | | | | | random_folder_advance_config, and a tiny bug fix in the plugin itself. Closes FS#7677. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17801 a1c6a512-1295-4272-9138-f99709370657
* pictureflow update:Jonathan Gordon2008-06-24
| | | | | | | | | fix FS#8347 and FS#8425 - track order is incorrrect also: center the track list in the screen, and show the track number if its available git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17781 a1c6a512-1295-4272-9138-f99709370657
* D2: Editing config.h wasn't enough to fully disable IRAM - also disable it ↵Rob Purchase2008-06-24
| | | | | | in *.lds for a crash fix and further 100% increase in codec performance. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17779 a1c6a512-1295-4272-9138-f99709370657
* D2: Add test_codec exit button mapping.Rob Purchase2008-06-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17764 a1c6a512-1295-4272-9138-f99709370657
* FS#9051 - remove LCD margins... use viewports if you need them...Jonathan Gordon2008-06-23
| | | | | | | | | | | NOTE to WPS people.... %m has been removed, but (i think) because of the other %m tags it wont fail if you try loading a wps with %m|..|, it will just be ignored. Also note that if the statusbar is enabled the default viewport is 8 pixels shorter than when its not, i.e (0,0) is really (0,8) if the statusbar is shown... I dont think this will be a major issue because almost no WPS show the bar and use bitmaps... text only WPS shouldnt be affected. Please report problem screens in http://forums.rockbox.org/index.php?topic=17358.0 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17763 a1c6a512-1295-4272-9138-f99709370657
* Let's the plugin stats count more music files that we support. Spoted by ↵Mustapha Senhaji2008-06-21
| | | | | | Alex Parker. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17749 a1c6a512-1295-4272-9138-f99709370657
* More calculate button changes: make the 'calculate' shortcut also work on ↵Marianne Arnold2008-06-18
| | | | | | the M5X5, the Ipod and the Gigabeat S pad. Also make 'select' actually select the number under the cursor and use 'menu' for calculating instead. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17731 a1c6a512-1295-4272-9138-f99709370657
* Make the 'calculate' shortcut work on the H10 padMarianne Arnold2008-06-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17728 a1c6a512-1295-4272-9138-f99709370657
* quick fix for FS#9046 - dont let jpeg.rock enter the playback menu if its ↵Jonathan Gordon2008-06-16
| | | | | | using the audiobuffer git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17727 a1c6a512-1295-4272-9138-f99709370657
* Print some more usefull info on screen. (Should be the last commit for this ↵Antoine Cellerier2008-06-10
| | | | | | plugin) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17712 a1c6a512-1295-4272-9138-f99709370657
* Use strncasecmp for hash (string version) comparision.Antoine Cellerier2008-06-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17711 a1c6a512-1295-4272-9138-f99709370657