summaryrefslogtreecommitdiff
path: root/apps/plugins (follow)
Commit message (Collapse)AuthorAge
...
* Fix mistake at checking the return in rockboy. Thanks Al Le for spotting.Thomas Martitz2009-08-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22273 a1c6a512-1295-4272-9138-f99709370657
* Make kbd_input() show a cancel splash to indicate user abort better and for ↵Thomas Martitz2009-08-12
| | | | | | better consistency all over the place. Change checking for its return value (style-wise) at some places too. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22269 a1c6a512-1295-4272-9138-f99709370657
* FS#10496: remove function read_image_file_offset, it had a bug and is not ↵Bertrik Sikken2009-08-09
| | | | | | used anyway. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22232 a1c6a512-1295-4272-9138-f99709370657
* M:Robe 500: Add missing filesKarl Kurbjun2009-08-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22217 a1c6a512-1295-4272-9138-f99709370657
* Rockboy: Cleanup redKarl Kurbjun2009-08-09
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22215 a1c6a512-1295-4272-9138-f99709370657
* Rockboy: Significantly reduce the number of palette updates, add support for ↵Karl Kurbjun2009-08-09
| | | | | | hardware palette mode, screen can now be rotated left or right. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22214 a1c6a512-1295-4272-9138-f99709370657
* fix red: add a define accidentally removedTeruaki Kawashima2009-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22209 a1c6a512-1295-4272-9138-f99709370657
* snake2: add standard start menu. use pluginlib highscore for highscores.Teruaki Kawashima2009-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22208 a1c6a512-1295-4272-9138-f99709370657
* snake:go back to menu when game is over. save highscores using pluginlib ↵Teruaki Kawashima2009-08-08
| | | | | | highscore. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22206 a1c6a512-1295-4272-9138-f99709370657
* M:Robe 500: Make yes/no screen work better and add appropriate strings for ↵Karl Kurbjun2009-08-08
| | | | | | some screens. Rockboy: Improve m:robe 500 default keymap. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22201 a1c6a512-1295-4272-9138-f99709370657
* Fix out of bounds accesses in keybox and matrixNils Wallménius2009-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22191 a1c6a512-1295-4272-9138-f99709370657
* use set_option instead of menu api for some settings of plugins to make it ↵Teruaki Kawashima2009-08-06
| | | | | | clear it's a setting. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22189 a1c6a512-1295-4272-9138-f99709370657
* small fixes for mazezam.Teruaki Kawashima2009-08-06
| | | | | | | | * enable repeating direction key for the targets using PLA. * clear the check point after user clear the last level. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22188 a1c6a512-1295-4272-9138-f99709370657
* a bit of code polish for rockpaint and disktidy.Teruaki Kawashima2009-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22187 a1c6a512-1295-4272-9138-f99709370657
* fix for r22171 for pacbox. make "Quit" item quit the plugin again.Teruaki Kawashima2009-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22186 a1c6a512-1295-4272-9138-f99709370657
* Goban: Rename save file extension back to sgf to match other applications.Karl Kurbjun2009-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22181 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Correcting two more warnings.Wincent Balin2009-08-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22174 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Got rid of warnings.Wincent Balin2009-08-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22173 a1c6a512-1295-4272-9138-f99709370657
* Goban: Change save location and file names to fit more in line with the rest ↵Karl Kurbjun2009-08-05
| | | | | | of the plugins git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22172 a1c6a512-1295-4272-9138-f99709370657
* add playback control to more menu of plugins.Teruaki Kawashima2009-08-05
| | | | | | | although it doesn't make much sense for some plugins like dice as the menu is only shown when you start that plugin. change star plugin to go back to menu when exit game instead of closing plugin so that above change makes useful. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22171 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Removed unneeded include file to, hopefully, diminish the amount of ↵Wincent Balin2009-08-05
| | | | | | warnings. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22170 a1c6a512-1295-4272-9138-f99709370657
* fix bug calendar fails to add new memo if there is not .memo file caused by ↵Teruaki Kawashima2009-08-05
| | | | | | | | my change in r22143. setting flags O_RDONLY|O_CREAT for open doesn't seem to create file. change flags to O_RDWR|O_CREAT but there is no writing. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22169 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Added iriver H100 to supported targets.Wincent Balin2009-08-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22168 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Changed type of t_int to remove 64-bit related warnings.Wincent Balin2009-08-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22167 a1c6a512-1295-4272-9138-f99709370657
* Remove unneeded blackjack defines for the YH series.Michael Giacomelli2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22161 a1c6a512-1295-4272-9138-f99709370657
* Insert pdbox into build system, currently only for H300.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22160 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Undoing incorrect changes of math functions.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22159 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Simplified some math functions.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22157 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Use correct values of maximal string size for snprintf.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22154 a1c6a512-1295-4272-9138-f99709370657
* Invadrox: Add support for 640x480 screens.Karl Kurbjun2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22151 a1c6a512-1295-4272-9138-f99709370657
* Always do an SVN up before committing . . . hopefully fixes red by defining ↵Michael Giacomelli2009-08-04
| | | | | | more buttons. Unfortunately I'm not sure what blackjack should be so I've left it incomplete until someone comes up with a working keymap. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22150 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#10251. Plugins for the YH-820, YH-920, and YH-925 by Jens Erdmann ↵Michael Giacomelli2009-08-04
| | | | | | with improvements and bitmap graphics by me. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22149 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Minor addition and bugfixes.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22148 a1c6a512-1295-4272-9138-f99709370657
* PDBox: Added GUI.Wincent Balin2009-08-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22147 a1c6a512-1295-4272-9138-f99709370657
* calendar: fix bug when add new event text longer than last entry.Teruaki Kawashima2009-08-03
| | | | | | | | | | blackjack: fix bug that bet becomes 10 when resume saved game. bubbles: save high level to sparate file. clix, spacerocks, jewels, bubbles: correct text of menu item. wormlet: clean up code: removed unused defines and functions. pluginlib display_text: insert sleep so that the screen doesn't quit immediately. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22143 a1c6a512-1295-4272-9138-f99709370657
* Fix yellows relvealed by the ABS() rework tonight. The abs() didn't seem to ↵Thomas Martitz2009-08-03
| | | | | | make much sense there anyway. Thanks Dave Chapman. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22142 a1c6a512-1295-4272-9138-f99709370657
* Remove find_albumart() from the plugin API as it doesn't exist for them.Thomas Martitz2009-08-03
| | | | | | | Remove lcd_set_viewport() too, and replace the calls with the appropriate multi-screen api calls as calling lcd_* functions should be avoided in favor of the api. Bump API version and sort a bit. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22140 a1c6a512-1295-4272-9138-f99709370657
* Reversi: Make Reversi respect the global touchscreen setting when in a menu.Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22134 a1c6a512-1295-4272-9138-f99709370657
* Clix: Forgot ifdefs around touchscreen_set_mode.Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22133 a1c6a512-1295-4272-9138-f99709370657
* Clix: Make Clix respect the global touchscreen setting when in a menu.Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22132 a1c6a512-1295-4272-9138-f99709370657
* Calculator: Enable absolute mode for touchscreens.Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22131 a1c6a512-1295-4272-9138-f99709370657
* Remove various ABS() definitions with a single one using typeof (if using ↵Thomas Martitz2009-08-03
| | | | | | gcc) to avoid multiple evaluations of the input expressions. Speex still uses its own as I didn't want to change this imported code too much. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22129 a1c6a512-1295-4272-9138-f99709370657
* Fix X5/M5Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22128 a1c6a512-1295-4272-9138-f99709370657
* Fix warning and ZVMKarl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22127 a1c6a512-1295-4272-9138-f99709370657
* Blackjack: Use standard menu and add playback menu, use pluginlib high scores.Karl Kurbjun2009-08-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22126 a1c6a512-1295-4272-9138-f99709370657
* Fix highest succeeded level from the highscores really this time, and don't ↵Thomas Martitz2009-08-02
| | | | | | confuse MIN() and MAX(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22125 a1c6a512-1295-4272-9138-f99709370657
* Cap the level chooser to NUM_LEVELS (100) to avoid accessing level 101, ↵Thomas Martitz2009-08-02
| | | | | | which contains the secret Data Abort Bubble (which looks really funny but is not an Easter Egg). Fix a bug with loading the highest succeeded level from the highscores too. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22124 a1c6a512-1295-4272-9138-f99709370657
* Fix red - overlooked renaming in 1 place.Thomas Martitz2009-08-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22122 a1c6a512-1295-4272-9138-f99709370657
* Reversi: Fix warning, change the text so that it does not resize the board ↵Karl Kurbjun2009-08-02
| | | | | | (text does not scroll currently), and fix some target buttons. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22121 a1c6a512-1295-4272-9138-f99709370657
* New bubbles background for 176x220 (Sansa e200), heavily based off a mockup ↵Thomas Martitz2009-08-02
| | | | | | | | provided by Marianne Arnold. Also implement some custom text positioning which is needed to display the text boxes horizontally. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22120 a1c6a512-1295-4272-9138-f99709370657