summaryrefslogtreecommitdiffstats
path: root/apps
AgeCommit message (Collapse)AuthorFilesLines
2009-01-06Changed lang message for credits item in Rockbox Mainmenu/System and updated ↵Alessio Lenzi2-5/+19
italian translation. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19699 a1c6a512-1295-4272-9138-f99709370657
2009-01-06Remove the BOM from english.langMarc Guay1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19694 a1c6a512-1295-4272-9138-f99709370657
2009-01-05fix the delay between exiting a plugin and having the statusbar drawn. Does ↵Jonathan Gordon1-2/+3
plugin_load() really need to clear both displays? git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19691 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Try it again.Marc Guay1-5/+19
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19690 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Revert 19687Marc Guay1-19/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19689 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Now in UTF-8Marc Guay1-2/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19688 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Switch the Credits lang back to Version and add a new one for Version.Marc Guay1-5/+19
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19687 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Better just do some cache maintenence there for good luck.Michael Sevakis1-0/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19685 a1c6a512-1295-4272-9138-f99709370657
2009-01-05Have the codec thread do callbacks instead of messing with the stack which ↵Michael Sevakis6-125/+56
is much simpler and safer. Remove threads array from plugin API since it now serves no purpose. Up minimum API version and sort. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19684 a1c6a512-1295-4272-9138-f99709370657
2009-01-05temporarilty disable the statusbar in the keyboard because it doesnt use ↵Jonathan Gordon1-3/+5
viewports and this is the easier fix than reworking the screen git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19683 a1c6a512-1295-4272-9138-f99709370657
2009-01-05fix red and yellowJonathan Gordon2-4/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19682 a1c6a512-1295-4272-9138-f99709370657
2009-01-05redo how the statusbar updates are done. send the EVENT_GUI_ACTIONUPDATE ↵Jonathan Gordon10-37/+28
event every time get_action() is called. The event wont be as realiable (timewise) as before, but seems to work better This also fixes FS#9761. Also set the lcd font back to the ui font from the debug screens which use sysfont git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19681 a1c6a512-1295-4272-9138-f99709370657
2009-01-05"fix" FS#9757 by handing the statusbar redraw event more correctly... the ↵Jonathan Gordon2-11/+24
eqscreen needs to be converted to viewports to display the statusbar. fix the colour chooser screen to work with the bar redraw also git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19680 a1c6a512-1295-4272-9138-f99709370657
2009-01-05rockdoom: Mixing 512 samples in an interrupt handler is too much. Gigabeast ↵Michael Sevakis1-15/+11
FIFOs are very tight and it will channel swap and crackle. It's better to minimize time in the audio callback anyway so change it to 128. It should probably even be 64. Use faster saturation code too. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19679 a1c6a512-1295-4272-9138-f99709370657
2009-01-05fix typo.Michael Giacomelli1-1/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19678 a1c6a512-1295-4272-9138-f99709370657
2009-01-04Commit FS#9617 - Keymaps for Plugins fuze by Thomas Martitz.Michael Giacomelli64-88/+475
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19673 a1c6a512-1295-4272-9138-f99709370657
2009-01-04remove extra include of core bmp.c from a previous attempt at pluginlib scalerAndrew Mahone1-2/+0
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19672 a1c6a512-1295-4272-9138-f99709370657
2009-01-04build a scaling-enabled bitmap loader in pluginlib for mono bitmap targets, ↵Andrew Mahone9-50/+188
and use it in the test greylib scaler plugin git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19671 a1c6a512-1295-4272-9138-f99709370657
2009-01-04Updated italian translation.Alessio Lenzi1-10/+12
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19670 a1c6a512-1295-4272-9138-f99709370657
2009-01-04MP4/AAC: Add support for album artist tags written by Foobar2000. Closes ↵Magnus Holmgren1-0/+5
FS#9723. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19669 a1c6a512-1295-4272-9138-f99709370657
2009-01-04minor code reshuffle to not call viewport_set_default so oftenJonathan Gordon1-7/+7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19667 a1c6a512-1295-4272-9138-f99709370657
2009-01-03Cleaner solution to plugin-included core files.Björn Stenberg3-14/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19664 a1c6a512-1295-4272-9138-f99709370657
2009-01-03List sscanf.c in SOURCES instead of doom.makeBjörn Stenberg2-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19663 a1c6a512-1295-4272-9138-f99709370657
2009-01-03FS# 9752 by Melba Sitjar: Added missing strings to Tagalog language.Robert Menes1-4/+106
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19662 a1c6a512-1295-4272-9138-f99709370657
2009-01-03Change System->Version to System->Credits. Closes FS#9620.Marc Guay1-4/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19660 a1c6a512-1295-4272-9138-f99709370657
2009-01-03fix yellowJonathan Gordon1-2/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19658 a1c6a512-1295-4272-9138-f99709370657
2009-01-03Fix some reds.Nils Wallménius2-2/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19657 a1c6a512-1295-4272-9138-f99709370657
2009-01-03a few more button/statusbar fixes...Jonathan Gordon8-16/+26
* hopefully fix the last of the plugins which dont handle the enw SYS event. * fix FS#9750 - WPS's which dont specify (or force the wps on) wernt showing the statusbar at all * lamp, battery_bench, *_flash button handling fixes * plugins using the core menu code will again show the statusbar git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19656 a1c6a512-1295-4272-9138-f99709370657
2009-01-03Reorder of user_settings, cleaned out some unused settings grouped settings ↵Nils Wallménius4-279/+252
depending on the same preprocessor defines together a bit more to make it more readable, updated some comments. Plugin api bump and the wps token for 12/24 hour clock setting is now excluded for non rtc targets git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19655 a1c6a512-1295-4272-9138-f99709370657
2009-01-03Sansa Clip: simplify keymap for button_context_right_is_inc. This fixes ↵Bertrik Sikken1-14/+6
moving around in the graphical equalizer screen. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19648 a1c6a512-1295-4272-9138-f99709370657
2009-01-02static/const/#include/tab police on various filesBertrik Sikken4-504/+506
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19643 a1c6a512-1295-4272-9138-f99709370657
2009-01-02fix FS#9743: plugins using rb->do_menu() were dropped 8 pixels..Jonathan Gordon1-7/+1
please oh please let this be the last fix :p git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19640 a1c6a512-1295-4272-9138-f99709370657
2009-01-02FS#9742 - hopefully the last of theseJonathan Gordon1-3/+7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19638 a1c6a512-1295-4272-9138-f99709370657
2009-01-02woops... fix the header and bump the plugin APIJonathan Gordon3-4/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19636 a1c6a512-1295-4272-9138-f99709370657
2009-01-02More SYS_FOURHERTZ handling fixes.. (FS#9740 FS#9741)Jonathan Gordon6-9/+43
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19635 a1c6a512-1295-4272-9138-f99709370657
2009-01-01Fix building invadrog with DEBUG defined, patch by Yoshihisa Uchida, FS#9737Nils Wallménius1-3/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19633 a1c6a512-1295-4272-9138-f99709370657
2009-01-01bah, the filetree does the same spindown handling as the WPS so fix it there ↵Jonathan Gordon1-1/+1
also git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19632 a1c6a512-1295-4272-9138-f99709370657
2009-01-01try again... BUTTON_NONE is not a sys event :pJonathan Gordon1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19631 a1c6a512-1295-4272-9138-f99709370657
2009-01-01fis FS#9739 - yesterdays statusbar commits broke the WPS disk spindown handlingJonathan Gordon1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19630 a1c6a512-1295-4272-9138-f99709370657
2008-12-31Updated Fuze button code. FS#9645 by Thomas Martitz.Björn Stenberg1-38/+39
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19629 a1c6a512-1295-4272-9138-f99709370657
2008-12-31Commit FS#9733 (multiline logf) by Yoshihisa UchidaMaurus Cuelenaere1-8/+50
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19625 a1c6a512-1295-4272-9138-f99709370657
2008-12-31fix the yesno screen which I accidently broke with the last commitesJonathan Gordon1-0/+3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19624 a1c6a512-1295-4272-9138-f99709370657
2008-12-31fix redJonathan Gordon1-1/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19623 a1c6a512-1295-4272-9138-f99709370657
2008-12-31Decouple the statusbar drawing from the rest of the screen drawing. it is ↵Jonathan Gordon44-263/+293
not drawn roughly 4x per second automatically. viewport_Set_defaults() will setup the given viewport with the correct "full screen" dimensions (so start at 0,0 if statusbars are disabled or 0,8 if they are enabled.) All screens should keep the statusbar enabled, but if you really want to ignore the user setting you can disbaled it with viewportmanager_set_statusbar(false). This commit also includes some menu/list viewport cleanups from kugel in FS#9603 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19622 a1c6a512-1295-4272-9138-f99709370657
2008-12-31Gigabeat S: Allow recording from FM. Give FM the same volume range as ↵Michael Sevakis2-7/+60
playback. NOTE: This bumps the si4700 output volume to -0dB so other players with that may need a minor adjustment. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19619 a1c6a512-1295-4272-9138-f99709370657
2008-12-29Make local functions static in codecs, where possible.Bertrik Sikken12-44/+44
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19612 a1c6a512-1295-4272-9138-f99709370657
2008-12-29Reduce the pictureflow empty slide bitmaps to 8-bit palette images,Andrew Mahone2-0/+0
as they are already greyscale. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19611 a1c6a512-1295-4272-9138-f99709370657
2008-12-28Make sure pictureflow always uses the user font, both on colour and ↵Jens Arnold1-0/+3
greyscale targets. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19610 a1c6a512-1295-4272-9138-f99709370657
2008-12-28Updated italian translation.Alessio Lenzi1-1/+103
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19608 a1c6a512-1295-4272-9138-f99709370657
2008-12-28Make the greylib text output functions handle unicode. Fixes non-working ↵Jens Arnold1-9/+6
umlauts etc in greyscale pictureflow. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19607 a1c6a512-1295-4272-9138-f99709370657