summaryrefslogtreecommitdiff
path: root/apps (follow)
Commit message (Collapse)AuthorAge
...
* Oops #ifdef -> #ifNils Wallménius2010-10-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28296 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#11606 by Michael Gentry, making ACTION_TREE_STOP stop radio too.Nils Wallménius2010-10-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28295 a1c6a512-1295-4272-9138-f99709370657
* Restore translated strings removed by accident in the previous revision.Mustapha Senhaji2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28294 a1c6a512-1295-4272-9138-f99709370657
* Remove a lot of untranslated strings in the turkce translation since it was ↵Mustapha Senhaji2010-10-16
| | | | | | | | | marked as "good translation" at http://translate.rockbox.org/, while it wasn't. Translator in turkce langage is welcome like for all other ones by the way. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28293 a1c6a512-1295-4272-9138-f99709370657
* Fix minor typos in description fields.Mustapha Senhaji2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28292 a1c6a512-1295-4272-9138-f99709370657
* Update the french translation for the upcoming release.Mustapha Senhaji2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28291 a1c6a512-1295-4272-9138-f99709370657
* Make two local functions static in skin_tokens.cBertrik Sikken2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28290 a1c6a512-1295-4272-9138-f99709370657
* skin_engine: struct gui_skin can be staticBertrik Sikken2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28289 a1c6a512-1295-4272-9138-f99709370657
* fix loding of default remote viewers icons.Teruaki Kawashima2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28288 a1c6a512-1295-4272-9138-f99709370657
* Remove some inconsistent guarding around cpucache_* functions to fix a ↵Nils Wallménius2010-10-16
| | | | | | test_codec crash on coldfire, breaks plugin api compatibility so sorted and bumped version numbers. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28287 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#10981: Viewers icons applied incorrectly.Teruaki Kawashima2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28286 a1c6a512-1295-4272-9138-f99709370657
* libtremor: tiny optimization 0.5%-1.5% on coldfire and PPNils Wallménius2010-10-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28285 a1c6a512-1295-4272-9138-f99709370657
* Pitch detector: do not break profiling builds.Nils Wallménius2010-10-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28283 a1c6a512-1295-4272-9138-f99709370657
* Resistor calculator: make brace-style consistentFrank Gevaerts2010-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28282 a1c6a512-1295-4272-9138-f99709370657
* Fix warning on USB_NONE targetsJonathan Gordon2010-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28279 a1c6a512-1295-4272-9138-f99709370657
* Fix typo in resistor plugin help textMichael Chicoine2010-10-14
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28278 a1c6a512-1295-4272-9138-f99709370657
* Resistor calculator: Initialise variable to make the compiler shut up about ↵Frank Gevaerts2010-10-13
| | | | | | it (it's always initialised, but the compiler won't know that) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28276 a1c6a512-1295-4272-9138-f99709370657
* Resistor calculator: Support Gigaohms in resistor to colour conversion, and ↵Frank Gevaerts2010-10-13
| | | | | | guard against values that can not be represented git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28275 a1c6a512-1295-4272-9138-f99709370657
* Resistor calculator: Use correct units if resistor to colour uses kilo- or ↵Frank Gevaerts2010-10-13
| | | | | | megaohms git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28274 a1c6a512-1295-4272-9138-f99709370657
* Add violet, grey and white multiplier for completenessFrank Gevaerts2010-10-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28273 a1c6a512-1295-4272-9138-f99709370657
* Fix some incorrect colour-to-resistance results. The price is that sometimes ↵Frank Gevaerts2010-10-13
| | | | | | | | | the display is subobtimal (like "2000 Ohms" instead of "2 KOhms") Ideally, unit prefixes (K, M,...) should be calculated separately, but the largest resistance we can handle is 99 MOhm, which wouldn't fit in a 32 bit int (using our centiohm internal units) if we didn't cheat. (and technically we could go higher still. white-white-white would be 99 GOhm, but we don't do such high multipliers now) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28272 a1c6a512-1295-4272-9138-f99709370657
* Resistor calculator: Add lots of static, and slightly reorganise the codeFrank Gevaerts2010-10-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28271 a1c6a512-1295-4272-9138-f99709370657
* Simplify resistance to colour calculations, removing some bugs in the process.Frank Gevaerts2010-10-13
| | | | | | | Fixes the bugs that triggered FS#11667 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28269 a1c6a512-1295-4272-9138-f99709370657
* fix sorting of track list when tracks with track number and tracks without ↵Teruaki Kawashima2010-10-13
| | | | | | track number are in the same list. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28267 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#11593 - %Vf() and %Vb() should be able to be used in conditionals. ↵Jonathan Gordon2010-10-13
| | | | | | Remember that these tags cause a new line to get drawn so text/tags on the same line wont be displayed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28266 a1c6a512-1295-4272-9138-f99709370657
* Update of Czech language - FS#11674 by Marek SalabaBertrik Sikken2010-10-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28264 a1c6a512-1295-4272-9138-f99709370657
* Rearrange and remove some manual register assignments, make use of pointer ↵Dave Hooper2010-10-12
| | | | | | address increments for free on arm, and remove macros in favour of explicit inline fns. also add memory clobbers to all uses of stm in inline asm. appears to resolve issues with codeclib failing to work as expected when using ARM_ASM optimisations on targets with native position independent code (e.g. android rockbox targets, but also tremor on non-rockbox targets that has been patched with the fastermdct patches) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28262 a1c6a512-1295-4272-9138-f99709370657
* Slovak language update - FS#11668 by Peter Lecký.Bertrik Sikken2010-10-12
| | | | | | | Also remove duplicate entry from docs/CREDITS git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28254 a1c6a512-1295-4272-9138-f99709370657
* fix FS#11659. wait for user input before exiting the plugin.Teruaki Kawashima2010-10-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28253 a1c6a512-1295-4272-9138-f99709370657
* skin bar tag: Load an image from a label or filename. i.e %xl(bar_image, ↵Jonathan Gordon2010-10-12
| | | | | | pb.bmp,0,0) %pb(0,0,10,10,bar_image) or %pb(0,0,10,10, pb.bmp) both are acceptable. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28249 a1c6a512-1295-4272-9138-f99709370657
* improvement for bar tag with slider.Teruaki Kawashima2010-10-12
| | | | | | | | -fix bug the slider is drawn outside of the bounds (FS#11658). -offset the slider position so that the center of the slider indicates current position. -add nobar option. if this option is set, the bar isn't drawn at all. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28248 a1c6a512-1295-4272-9138-f99709370657
* Skin bar tags fix+cleanup:Jonathan Gordon2010-10-12
| | | | | | | | | | | Don't crash when not enough params were given (i.e forgetting the filename) Make the parser enforce the first 4 params as compulsary Be more leniant and don't require the image filename if one isnt going to be loaded (no more need for the - as the 5th param) Add an option "image" to specify the filename (otherwise the first option will be used if it isnt a recognised option). e.g: %pv(0,0,100,10) or %pv(0,0,100,10, bar.bmp) or %pv(0,0,100,10, ..., image, bar.bmp) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28247 a1c6a512-1295-4272-9138-f99709370657
* Viewports dont necessarily have children lines, so make sure there is one or ↵Jonathan Gordon2010-10-12
| | | | | | it will crash git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28245 a1c6a512-1295-4272-9138-f99709370657
* check viewport dimension when parsing viewport so that player doesn't clash ↵Teruaki Kawashima2010-10-11
| | | | | | with bad wps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28244 a1c6a512-1295-4272-9138-f99709370657
* Rename {draw,fill}_viewport once more (to draw_border_viewport and ↵Thomas Martitz2010-10-11
| | | | | | | | fill_viewport) and remove the viewport parameter as suggested by Dave Chapman. The parameter wasn't used yet and it's not clear whether it should be a absolute or relative viewport. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28242 a1c6a512-1295-4272-9138-f99709370657
* Fix charcell %pb and %pf tags, FS#11592Frank Gevaerts2010-10-10
| | | | | | | This also moves draw_player_fullbar() and draw_player_progress() from skin_display.c to skin_tokens.c. Charcell is a bit different from bitmap here because drawing a progress bar is a combination of setting up the LCD controller (custom characters) and providing a format string. The custom character definition might fit in skin_display.c, but the format strings are needed in skin_tokens.c. Putting these functions in skin_tokens.c seemed to fit better. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28241 a1c6a512-1295-4272-9138-f99709370657
* Add _rect to {draw,fill}_viewport as suggested by Jonathan Gordon to reduce ↵Thomas Martitz2010-10-10
| | | | | | the chance to confuse it with update_viewport(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28240 a1c6a512-1295-4272-9138-f99709370657
* Two new lcd/multi screen api convinience functions: draw_viewport(), ↵Thomas Martitz2010-10-10
| | | | | | | | | fill_viewport(). They work as the drawrect/fillrect pendants but work on a viewport basis; pass NULL to draw the current viewport (the one set with set_viewport()). In conjunction with action_get_touchscreen_press_in_vp() it should be less of a pain to draw buttons and get presses on them. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28239 a1c6a512-1295-4272-9138-f99709370657
* Guard the cpucache_invalidate() with proper #ifdefsFrank Gevaerts2010-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28238 a1c6a512-1295-4272-9138-f99709370657
* Invalidate the CPU cache after clearing bss, to make sure that bss variables ↵Frank Gevaerts2010-10-10
| | | | | | | | | that are used via non-cached aliases don't read garbage. This fixes FS#11653 for me git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28236 a1c6a512-1295-4272-9138-f99709370657
* Fix a few div0 cases forgotten in r27684 to enable enabling asm ↵Thomas Martitz2010-10-10
| | | | | | optimizations for android builds. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28235 a1c6a512-1295-4272-9138-f99709370657
* correct comment in configfile.h, FS#11292 by Chris Savery.Teruaki Kawashima2010-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28234 a1c6a512-1295-4272-9138-f99709370657
* use different function to resize bitmap for greylib.Teruaki Kawashima2010-10-10
| | | | | | | it is confusing that same function expects different data type (fb_data or unsigned char) depending on the target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28233 a1c6a512-1295-4272-9138-f99709370657
* Fix for FS #10097 - Sometimes keys do work after exiting plugins.Bertrik Sikken2010-10-10
| | | | | | | | This removes the call to button_clear_queue which interfered with the mechanism in action.c to wait for a key release event when the button context is changed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28232 a1c6a512-1295-4272-9138-f99709370657
* Make skin_render_playlistviewer() noinline. This function uses lots of stack ↵Frank Gevaerts2010-10-10
| | | | | | (around 1 kilobyte), and is called from a recursive function. gcc's stack allocation strategy makes the calling function then use all this stack space when inlining. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28231 a1c6a512-1295-4272-9138-f99709370657
* Revert accidental commit of skin_render.cFrank Gevaerts2010-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28230 a1c6a512-1295-4272-9138-f99709370657
* Add a "early_usb" argument to gui_usb_screen_run(), and don't do skin ↵Frank Gevaerts2010-10-10
| | | | | | unloading/reloading in gui_usb_screen_run() in the early usb case. Fixes the crash part of FS#11589 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28229 a1c6a512-1295-4272-9138-f99709370657
* Fix FS# 11414 : .mod files - metadata in incorrect fieldsBertrik Sikken2010-10-10
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28228 a1c6a512-1295-4272-9138-f99709370657
* fix FS#11662 and FS#11629 - skin %t() issues. %t should now work properly ↵Jonathan Gordon2010-10-10
| | | | | | | | inside and outside of conditionals. Remember that skins update at a rather slow speed so even if you have %t(0.2) in your skin it depends on which screen you are in for it to work (the main menu only updates at 2FPS, the WPS is 25FPS with peakmeters enabled... this is on the fixme list) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28226 a1c6a512-1295-4272-9138-f99709370657
* Add "resumeplayback" touchscreen button action which returns you to the ↵Jonathan Gordon2010-10-10
| | | | | | previous music screen (WPS or FM) from most of the lists (browsers and menus) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28223 a1c6a512-1295-4272-9138-f99709370657