summaryrefslogtreecommitdiff
path: root/apps/plugins (follow)
Commit message (Collapse)AuthorAge
...
* Sudoku: Slightly smaller bitmaps for iPod Video and Gigabeat to make the ↵Jens Arnold2006-08-10
| | | | | | board not stick to the LCD border, by Marianne Arnold. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10509 a1c6a512-1295-4272-9138-f99709370657
* Sudoku: * Changed the LCD size ifdef magic to ease adding of new LCD ↵Jens Arnold2006-08-09
| | | | | | resolutions. * Added vertical layout option with the scratchpad at the bottom (Gigabeat). * New Bitmaps for iPod Mini, iPod Video and Gigabeat, and slightly modified bitmaps for Archos, by Marianne Arnold. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10504 a1c6a512-1295-4272-9138-f99709370657
* ARM targets: Shave off one instruction from the multiply-by-75.Jens Arnold2006-08-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10503 a1c6a512-1295-4272-9138-f99709370657
* fix button mappings for the gigabeatMarcoen Hirschberg2006-08-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10502 a1c6a512-1295-4272-9138-f99709370657
* fix scroll speed on the gigabeatMarcoen Hirschberg2006-08-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10501 a1c6a512-1295-4272-9138-f99709370657
* Bootloader support to search firmware also from flash. Bootloader <->Miika Pekkarinen2006-08-09
| | | | | | | Rockbox communication when Rockbox has been flashed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10499 a1c6a512-1295-4272-9138-f99709370657
* Mandelbrot: * Asm optimisation for arm targets. * Proper aspect for all LCD ↵Jens Arnold2006-08-09
| | | | | | resolutions. * Keep proper aspect when zooming on targets where LCD_WIDTH and/or LCD_HEIGHT is not an integer multiple of 8. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10498 a1c6a512-1295-4272-9138-f99709370657
* Add STOP and PAUSE features (mapped to OFF/ON on iriver H300, MENU/PLAY on ↵Dave Chapman2006-08-09
| | | | | | ipods and POWER/PLAY on X5) - patch by Jonathan Gordon. Also adapt the buffering to different available memory sizes - we allow libmpeg2 itself 2MB for buffers, and the rest is used to buffer the compressed video data. Note that using PAUSE will break the FPS display - this will be fixed later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10497 a1c6a512-1295-4272-9138-f99709370657
* Slightly optimised range_limit() for arm targets.Jens Arnold2006-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10494 a1c6a512-1295-4272-9138-f99709370657
* Do the clipping with inline asm instead of a huge lookup table. Tiny ↵Jens Arnold2006-08-08
| | | | | | speedup, and saves ~7.5KB of IRAM. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10493 a1c6a512-1295-4272-9138-f99709370657
* Implementation of lcd_yuv_blit() for the ipod 5g.Dave Chapman2006-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10487 a1c6a512-1295-4272-9138-f99709370657
* mpegplayer FPS display: * Don't count the first frame if we don't know the ↵Jens Arnold2006-08-08
| | | | | | decode time it took. * Display every 2 seconds independent of actual fps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10486 a1c6a512-1295-4272-9138-f99709370657
* Fix corrupted videos on target.Jens Arnold2006-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10485 a1c6a512-1295-4272-9138-f99709370657
* H300: * Implemented lcd_yuv_blit(). Speeds up video playback by about 7%. No ↵Jens Arnold2006-08-08
| | | | | | bounds check in lcd_yuv_blit() (by convention), implementations for other targets should be adapted. * Fixed off-by-one bug in lcd_update_rect() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10484 a1c6a512-1295-4272-9138-f99709370657
* Use the film strip icon for .m2v (same as for .rvf)Jens Arnold2006-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10483 a1c6a512-1295-4272-9138-f99709370657
* Add disktidy plugin (FS#2596).Dan Everton2006-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10482 a1c6a512-1295-4272-9138-f99709370657
* Fix sim warnings.Jens Arnold2006-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10481 a1c6a512-1295-4272-9138-f99709370657
* Initial commit of work-in-progress MPEG video player plugin based on ↵Dave Chapman2006-08-07
| | | | | | libmpeg2. Works on all targets with colour LCDs, but most optimised for the ipod Color/Photo and Nano. It currently only plays raw MPEG-1 or MPEG-2 video streams (no audio). Also adds a new lcd_yuv_blit() function to the plugin API - currently only implemented for the ipod Color/Photo and Nano. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10479 a1c6a512-1295-4272-9138-f99709370657
* Grayscale lib: Working screendump on iPod (target + sim).Jens Arnold2006-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10478 a1c6a512-1295-4272-9138-f99709370657
* * Assembler optimised gray_update_rect() and writearray() for arm (greyscale ↵Jens Arnold2006-08-07
| | | | | | iPods). * Some slight optimisations for coldfire (H1x0) and SH1 (archos). * Comment and formatting cleanup. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10473 a1c6a512-1295-4272-9138-f99709370657
* Pong! * adapt to FS#4761 * add pause button for non-holdswitch players *Shachar Liberman2006-08-07
| | | | | | | | better gameplay (no wait for BUTTON_REPEAT) * a few bugfixes * H300 new keypad (should credit & close 2822) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10472 a1c6a512-1295-4272-9138-f99709370657
* We can run the grayscale lib at full frame rate on iPods...Jens Arnold2006-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10471 a1c6a512-1295-4272-9138-f99709370657
* Use striped buffering for grayscale targets to make the buffer fit on iPod ↵Jens Arnold2006-08-07
| | | | | | g3/g4. Also slightly faster (at least on H1x0) with the buffer in IRAM. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10470 a1c6a512-1295-4272-9138-f99709370657
* Fix red iPod g3 build.Jens Arnold2006-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10469 a1c6a512-1295-4272-9138-f99709370657
* Grayscale library ported to the grayscale iPods, first version. Added C ↵Jens Arnold2006-08-07
| | | | | | reference versions of gray_update_rect() for both horizontal and vertical pixel packing. gray_update_rect() and gray_ub_gray_bitmap_part() not yet assembler optimised. Grayscale screendump doesn't work yet. * Fixed button assignments for iPod in grayscale.c git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10468 a1c6a512-1295-4272-9138-f99709370657
* Initial version of the iriver flashing plugin for H1xx. Building ofMiika Pekkarinen2006-08-05
| | | | | | | | the code not yet enabled, because the code still lacks some features and safety checks. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10463 a1c6a512-1295-4272-9138-f99709370657
* Again smaller fixed point exp()Jens Arnold2006-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10455 a1c6a512-1295-4272-9138-f99709370657
* Smaller & faster (on our targets) fixed point exp() with a multiplication.Jens Arnold2006-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10454 a1c6a512-1295-4272-9138-f99709370657
* Yet some more fixes (mostly for small archos screens).Antoine Cellerier2006-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10453 a1c6a512-1295-4272-9138-f99709370657
* Change hearts and diamonds bitmaps for monochrome screens. Thanks to pixelma ↵Antoine Cellerier2006-08-03
| | | | | | for the idea. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10452 a1c6a512-1295-4272-9138-f99709370657
* repair x5 buildDaniel Stenberg2006-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10451 a1c6a512-1295-4272-9138-f99709370657
* Barry Wardell's keymappings for H10Daniel Stenberg2006-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10446 a1c6a512-1295-4272-9138-f99709370657
* Remove some more useless codeAntoine Cellerier2006-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10445 a1c6a512-1295-4272-9138-f99709370657
* Some graphics fixes for solitaire. (Numbers for hearts and diamonds still ↵Antoine Cellerier2006-08-03
| | | | | | need to be colored red on color LCD screens) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10443 a1c6a512-1295-4272-9138-f99709370657
* Repair bufferend scrolling background.Jens Arnold2006-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10434 a1c6a512-1295-4272-9138-f99709370657
* Greyscale targets: Fix empty display when returning from menu without ↵Jens Arnold2006-08-03
| | | | | | action. Don't show remnants of old info during disk spinup when loading a new file. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10426 a1c6a512-1295-4272-9138-f99709370657
* Fix compile warning (and small diaply bug)Antoine Cellerier2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10423 a1c6a512-1295-4272-9138-f99709370657
* Cleanup solitaire code a bit. A side effect is that it should now be ↵Antoine Cellerier2006-08-02
| | | | | | possible to play on small LCD screens like the recorder's (which had become impossible since revision 1.20). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10422 a1c6a512-1295-4272-9138-f99709370657
* Some more solitaire graphicsAntoine Cellerier2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10421 a1c6a512-1295-4272-9138-f99709370657
* Proper rounding...Jens Arnold2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10420 a1c6a512-1295-4272-9138-f99709370657
* Slightly better precision.Jens Arnold2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10419 a1c6a512-1295-4272-9138-f99709370657
* Ooops, don't apply correction when it shouldn't be applied.Jens Arnold2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10418 a1c6a512-1295-4272-9138-f99709370657
* Grayscale library: LCD linearisation and gamma correction.Jens Arnold2006-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10402 a1c6a512-1295-4272-9138-f99709370657
* Fix bug #5724 - Missing characters in text viewer, the number of characters ↵Linus Nielsen Feltzing2006-08-01
| | | | | | in the line to display was calculated with a too wide character as reference git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10395 a1c6a512-1295-4272-9138-f99709370657
* accept patch FS#4761 - putting the player on hold will now pause games. this ↵Shachar Liberman2006-07-30
| | | | | | | | | | should be fitted to pong and rockblox as well. credit Lukas Sabota for the initial work, and, my very own first commit! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10365 a1c6a512-1295-4272-9138-f99709370657
* Commit greyscale images again using binary mode this time. Also changed ↵Antoine Cellerier2006-07-28
| | | | | | bitmap a bit to increase contrast git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10356 a1c6a512-1295-4272-9138-f99709370657
* Remove bitmap (i'll commit it again in binary mode). This will break some of ↵Antoine Cellerier2006-07-28
| | | | | | the builds git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10355 a1c6a512-1295-4272-9138-f99709370657
* X5 remote LCD drawing. This will break target linking atm - ↵Jens Arnold2006-07-28
| | | | | | lcd_remote_update[_rect]() are not yet implemented. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10347 a1c6a512-1295-4272-9138-f99709370657
* Star plugin (again): Apply http://www.rockbox.org/tracker/task/5493 (button ↵Antoine Cellerier2006-07-27
| | | | | | help strings for all targets) and rework the help string for grey/color targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10345 a1c6a512-1295-4272-9138-f99709370657
* Add bitmaps for greyscale LCD targets for "star" game. Closes ↵Antoine Cellerier2006-07-27
| | | | | | | | | http://www.rockbox.org/tracker/task/5509 (bitmaps are a bit too large for ipod mini, but the game is still playable) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10344 a1c6a512-1295-4272-9138-f99709370657