summaryrefslogtreecommitdiff
path: root/apps/plugins (follow)
Commit message (Collapse)AuthorAge
...
* Brickmania, Chessbox, Blackjack, and Solitaire: Add support for 640x480 and ↵Karl Kurbjun2009-07-18
| | | | | | 480x640 screens git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21946 a1c6a512-1295-4272-9138-f99709370657
* Bubbles: Make new screen support a bit more generic and add support for ↵Karl Kurbjun2009-07-18
| | | | | | 640x480 and 480x640 screen sizes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21945 a1c6a512-1295-4272-9138-f99709370657
* Brickmania: Correct a bug in the ball/brick collision (large screens ↵Karl Kurbjun2009-07-18
| | | | | | (640x480) did not collide with the bottom row of bricks) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21944 a1c6a512-1295-4272-9138-f99709370657
* Brickmania: Make the defines dependent on screen size generic calculationsKarl Kurbjun2009-07-18
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21943 a1c6a512-1295-4272-9138-f99709370657
* Revert r21912 : "Storage API : remove undeeded target-specific functions"Rafaël Carré2009-07-17
| | | | | | | | After a discussion mixed on mailing list and irc, it was agreed that more abstraction for plugins is better (so developers don't have to add a check to HAVE_DISK_STORAGE when writing disk-specific code) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21923 a1c6a512-1295-4272-9138-f99709370657
* Lua IOlib: when opening files for writing/appending, check if they exist and ↵Maurus Cuelenaere2009-07-17
| | | | | | if not, add O_CREAT. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21918 a1c6a512-1295-4272-9138-f99709370657
* Jewels: Simplify support for new target screen sizes. Just adding new ↵Karl Kurbjun2009-07-17
| | | | | | bitmaps for the target should now be enough. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21915 a1c6a512-1295-4272-9138-f99709370657
* Storage API : remove undeeded target-specific functionsRafaël Carré2009-07-17
| | | | | | | storage_sleep, storage_spin, storage_spindown are only defined if #defiend (HAVE_DISK_STORAGE), not for MMC/ATA/SD remove already unneeded nand_disk_is_active, nand_soft_reset git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21912 a1c6a512-1295-4272-9138-f99709370657
* remove references to pegbox bitmaps that were removed in r21907 (problem not ↵Robert Kukla2009-07-16
| | | | | | detected by build system) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21910 a1c6a512-1295-4272-9138-f99709370657
* Remove unused menu bitmaps from pegbox since r21867Johannes Schwarz2009-07-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21907 a1c6a512-1295-4272-9138-f99709370657
* fix wrong score recording.Teruaki Kawashima2009-07-16
| | | | | | change menu a bit. now game is saved by default when quit, and not saved when "Quit without Saving" is selected. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21903 a1c6a512-1295-4272-9138-f99709370657
* Gigabeat S can do dithered YUV blitting too, so put it into the plugin API ↵Jens Arnold2009-07-15
| | | | | | and enable it in mpegplayer. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21888 a1c6a512-1295-4272-9138-f99709370657
* Further ARMv6 imdct optimisation, ~5.5% speedup.Jens Arnold2009-07-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21884 a1c6a512-1295-4272-9138-f99709370657
* Revert r21863 partly: fixes LuaMaurus Cuelenaere2009-07-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21883 a1c6a512-1295-4272-9138-f99709370657
* Tiny bug fix for help text in pegboxJohannes Schwarz2009-07-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21882 a1c6a512-1295-4272-9138-f99709370657
* Fix a bug in lib display_text.h, which inserts a unwanted blank lineJohannes Schwarz2009-07-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21881 a1c6a512-1295-4272-9138-f99709370657
* Replace bitmap menu with a standard menu, clean up the code and remove ↵Johannes Schwarz2009-07-14
| | | | | | corrupt save game git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21867 a1c6a512-1295-4272-9138-f99709370657
* Make the progress bar in game mode puzzle shows the level process (part of ↵Johannes Schwarz2009-07-14
| | | | | | FS#10139) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21866 a1c6a512-1295-4272-9138-f99709370657
* FS#10080Nils Wallménius2009-07-14
| | | | | | | | | | * Move strncpy() from core to the pluginlib * Introduce strlcpy() and use that instead in most places (use memcpy in a few) in core and some plugins * Drop strncpy() from the codec api as no codec used it * Bump codec and plugin api versions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21863 a1c6a512-1295-4272-9138-f99709370657
* use lib display text to display help messages (FS#10099).Teruaki Kawashima2009-07-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21861 a1c6a512-1295-4272-9138-f99709370657
* add a way to quit without saving game.Teruaki Kawashima2009-07-14
| | | | | | some cosmetic fixes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21860 a1c6a512-1295-4272-9138-f99709370657
* Combine the two menus, improve highscore list, automatically save game, ↵Johannes Schwarz2009-07-14
| | | | | | improve help text (buttons are missing yet) and clean up the code in jewels (part of FS#10139) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21858 a1c6a512-1295-4272-9138-f99709370657
* Silence the gcc 4.4.0 warning by making this code look like it was probably ↵Jens Arnold2009-07-14
| | | | | | meant to be. I'm not 100% sure this is correct - latest prboom doesn't have that fix. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21857 a1c6a512-1295-4272-9138-f99709370657
* Change buttons in pegbox for Fuze (part of FS#10193)Johannes Schwarz2009-07-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21856 a1c6a512-1295-4272-9138-f99709370657
* try to make buttons in jewels more unified (part of FS#10193)Johannes Schwarz2009-07-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21854 a1c6a512-1295-4272-9138-f99709370657
* FS#10235 - "(fuze) pacbox keymap change" by Ralph Soto.Thomas Martitz2009-07-13
| | | | | | | | Fixes pacbox' keymapping for direction and changes accessing the menu to short home. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21843 a1c6a512-1295-4272-9138-f99709370657
* Make clix more usable on touchscreen targetsMaurus Cuelenaere2009-07-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21837 a1c6a512-1295-4272-9138-f99709370657
* * Fix overlooked r12 usage possibility in mpegplayer ARM idct Jens Arnold2009-07-12
| | | | | | | * ARM dualcore: Don't save r12 in switch_thread_core() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21830 a1c6a512-1295-4272-9138-f99709370657
* Another patch by Wincent Balin (from the FS #10416 series): get rid of some ↵Peter D'Hoye2009-07-12
| | | | | | warnings. PDBox now builds without any error or warning. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21819 a1c6a512-1295-4272-9138-f99709370657
* PDBox: One file with stuff is enough....Peter D'Hoye2009-07-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21818 a1c6a512-1295-4272-9138-f99709370657
* More work on PDBox by Wincent Balin. The PDBox plug-in is now working with ↵Peter D'Hoye2009-07-12
| | | | | | the pdpod_test.pd file from the PureData.zip archive git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21816 a1c6a512-1295-4272-9138-f99709370657
* Patch by Wincent Balin: convert pdbox from app to viewerPeter D'Hoye2009-07-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21815 a1c6a512-1295-4272-9138-f99709370657
* set svn:keywords propertyTeruaki Kawashima2009-07-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21809 a1c6a512-1295-4272-9138-f99709370657
* * ARM asm DSP and codec/plugin functions: Use r12 scratch register properlyJens Arnold2009-07-12
| | | | | | | | | * Fix saving another unused reg in dsp code * Use less regs in the generic ARM mpegplayer adding idct pure DC case * Fix ARMv6 mpegplayer adding idct using an unsaved register in pure DC case git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21803 a1c6a512-1295-4272-9138-f99709370657
* Optimize chopper a bit by making a often used macro an inline function(which ↵Thomas Martitz2009-07-12
| | | | | | means its parameter expressions are evaluated before expanding) and removing a unecessary display clear. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21802 a1c6a512-1295-4272-9138-f99709370657
* Fix plugins for the changed pitch scale from r21781Jens Arnold2009-07-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21794 a1c6a512-1295-4272-9138-f99709370657
* clix: fix bug that game isn't over when no move is possible.Teruaki Kawashima2009-07-11
| | | | | | clean up a bit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21774 a1c6a512-1295-4272-9138-f99709370657
* Correct return value when quit sudoku from the menu.Teruaki Kawashima2009-07-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21771 a1c6a512-1295-4272-9138-f99709370657
* FS#10418: Change menu button in Sudoku on Fuze, by Nick TryonJohannes Schwarz2009-07-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21750 a1c6a512-1295-4272-9138-f99709370657
* Correct return value of function get_ucs, position of next character, in ↵Teruaki Kawashima2009-07-10
| | | | | | viewer plugin (FS #9387, patch by Yoshihisa Uchida, small modification by me). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21743 a1c6a512-1295-4272-9138-f99709370657
* Lua:Maurus Cuelenaere2009-07-10
| | | | | | | | * add ./?/init.lua to the search path for require * put Lua libs in /.rockbox/rocks/viewers/lua/ git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21739 a1c6a512-1295-4272-9138-f99709370657
* fix FS#9383 (chessclock freezes on deleting a player), patch by Yoshihisa ↵Teruaki Kawashima2009-07-09
| | | | | | Uchida. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21733 a1c6a512-1295-4272-9138-f99709370657
* Helloworld.lua: fix file_put_contents depending on a wrong return value of ↵Maurus Cuelenaere2009-07-08
| | | | | | io.write + use a cleaner version of if(file == nil) (thanks to Christophe Gragnic) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21731 a1c6a512-1295-4272-9138-f99709370657
* add keymap for m300 and fix warnings of previous patchJohannes Schwarz2009-07-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21723 a1c6a512-1295-4272-9138-f99709370657
* new game plugin for colored players named clix (by Rene Peinthor)Johannes Schwarz2009-07-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21720 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#10210: "Mpegplayer playback controls on portrait oriented players" ↵Bertrik Sikken2009-07-08
| | | | | | by Matthew Bonnett. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21718 a1c6a512-1295-4272-9138-f99709370657
* Lua IOlib: don't create files when they don't existMaurus Cuelenaere2009-07-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21715 a1c6a512-1295-4272-9138-f99709370657
* Lua: expose SCREEN_MAIN & SCREEN_REMOTE (for rb.lcd_*() functions)Maurus Cuelenaere2009-07-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21712 a1c6a512-1295-4272-9138-f99709370657
* Fix returning too early (before cleanup) in RFAC, which led to not cancellingThomas Martitz2009-07-06
| | | | | | boosting. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21682 a1c6a512-1295-4272-9138-f99709370657
* Adapt pictureflow and random_folder_advance_config to make use of the new ↵Thomas Martitz2009-07-05
| | | | | | | | | goto-wps exit feature. For pictureflow a menu item is added, but the key press that works in the filetree works also (unless it's already remapped), rfa will go to the wps after selecting "Play Shuffled", as it needs to exit then anyway. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21681 a1c6a512-1295-4272-9138-f99709370657