summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* Resistor plugin: Frank Gevaerts2010-10-02
| | | | | | | | crop the smallest bitmap so it's usable for any small screen and nut just the c200 make the layout a bit more flexible git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28193 a1c6a512-1295-4272-9138-f99709370657
* picture flow: clean up code. no functional changes.Teruaki Kawashima2010-10-02
| | | | | | | | -use upper case for enum constants. -rename variables to match it's use. -remove tabs and fix indents. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28192 a1c6a512-1295-4272-9138-f99709370657
* New plugin: Resistor code calculatorFrank Gevaerts2010-10-02
| | | | | | | | Flyspray: FS#11585 Author: Calvin Walden git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28191 a1c6a512-1295-4272-9138-f99709370657
* Submit FS#11646. Reduce voltage supply for iPod nano 2G LCD. Significantly ↵Andree Buschmann2010-10-01
| | | | | | reduces buzzing sound of LDS176 type displays. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28190 a1c6a512-1295-4272-9138-f99709370657
* text editor: decrease size of extension to reduce stack usage.Teruaki Kawashima2010-10-01
| | | | | | this could solve crash in text editor (FS#10078). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28189 a1c6a512-1295-4272-9138-f99709370657
* use correct condition for #if for tagcache_fill_tags().Teruaki Kawashima2010-09-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28188 a1c6a512-1295-4272-9138-f99709370657
* fix redMarcin Bukat2010-09-29
| | | | | | | simple_resize_bitmap() can deal with greylib now but I missed that it was compiled only for LCD_DEPTH > 1 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28187 a1c6a512-1295-4272-9138-f99709370657
* imageviewer bmp - drop special case for grey bitmap scallerMarcin Bukat2010-09-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28186 a1c6a512-1295-4272-9138-f99709370657
* fix bitmap scallers smooth_resize_bitmap() and simple_resize_bitmap() to ↵Marcin Bukat2010-09-29
| | | | | | properly handle LCD_STRIDEFORMAT == VERTICAL_STRIDE case git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28185 a1c6a512-1295-4272-9138-f99709370657
* explicitly set img->using_preloaded_icons in parse_image_load() and don't ↵Teruaki Kawashima2010-09-29
| | | | | | rely on parse_image_display(). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28184 a1c6a512-1295-4272-9138-f99709370657
* ARMv6 supports unaligned memory accesses and they are enabled on our only ↵Nils Wallménius2010-09-29
| | | | | | ARMv6 target so we might as well use them. Speeds up decoding of a flac8 file by 3.5%. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28183 a1c6a512-1295-4272-9138-f99709370657
* id3 parser: also add id3v2.2 TCM tag for "composer" since that's the only ↵Torne Wuff2010-09-28
| | | | | | other tag not in there in 2.2 and 2.3 versions git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28182 a1c6a512-1295-4272-9138-f99709370657
* id3 parser: add id3v2.2 TPA tag for "part of set" as iTunes appears to use itTorne Wuff2010-09-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28181 a1c6a512-1295-4272-9138-f99709370657
* Add a simple script to try to run configure with the correct target ↵Jonathan Gordon2010-09-28
| | | | | | | | | | | | | | | | name/type based on the build directory name. ~/rockbox/.../e200 -> e200, normal ~/rockbox/.../e200-sim -> e200, sim build ~/rockbox/.../sim/e200 -> e200, sim build replace sim with "boot" for bootloader, falls back on normal if neither is given. Run this from inside the build dir just like you would tools/configure using the full shortname guarentees the correct match, as above e200 will work for sansae200.... asks for confirmation before doing anything. Add your folder structure if this doesnt work for your way of doing things git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28180 a1c6a512-1295-4272-9138-f99709370657
* Make eabi toolchain build on OS X 10.6.Dominik Riebeling2010-09-27
| | | | | | | | OS X requires slightly different compiler options due to functions deprecated in 10.6 (FS#11643). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28179 a1c6a512-1295-4272-9138-f99709370657
* Remove obsolete 2nd gen nano checkFrank Gevaerts2010-09-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28178 a1c6a512-1295-4272-9138-f99709370657
* Add Tuomas Airaksinen to docs/CREDITS for r28716Michael Chicoine2010-09-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28177 a1c6a512-1295-4272-9138-f99709370657
* Warn about erasing dynamic playlist when loading bookmark - FS #10482 by ↵Bertrik Sikken2010-09-26
| | | | | | Tuomas Airaksinen git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28176 a1c6a512-1295-4272-9138-f99709370657
* fiddle with the alloc requested size instead of the buffer pointer to keep ↵Jonathan Gordon2010-09-26
| | | | | | the buffer 32bit aligned git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28175 a1c6a512-1295-4272-9138-f99709370657
* If BUFFER_ALLOC_DEBUG is defined, make buffer_alloc() not actually allocate ↵Frank Gevaerts2010-09-26
| | | | | | anything if size==0, so code that uses buffer_alloc(0) to find out what address it would get keeps working git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28174 a1c6a512-1295-4272-9138-f99709370657
* Add optional (define BUFFER_ALLOC_DEBUG to enable it) code to check for code ↵Frank Gevaerts2010-09-26
| | | | | | | | | overflowing buffer_alloc()-allocated buffers. Also add a panicf() if buffer_alloc() doesn't have enough space left to allocate a requested buffer git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28173 a1c6a512-1295-4272-9138-f99709370657
* Make sure get_lif_token_value isn't inlined, as it would defeat the purpose ↵Magnus Holmgren2010-09-26
| | | | | | of introducing that function. E.g., gcc 3.4.6 for m68k is keen on inlining code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28172 a1c6a512-1295-4272-9138-f99709370657
* Improve some trace messages.Dominik Riebeling2010-09-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28171 a1c6a512-1295-4272-9138-f99709370657
* RDA5802 tuner: fix small bug in rda5802_init (writing too much data)Bertrik Sikken2010-09-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28170 a1c6a512-1295-4272-9138-f99709370657
* Android: Exclude the main binary from make zip.Thomas Martitz2010-09-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28169 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#11552 - touches outside of the UI viewport can do unexpected list ↵Jonathan Gordon2010-09-26
| | | | | | | | movements. Also remove naughty // comments from r28145 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28168 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#1159 - stack overflow in the skin engine when there is too many ↵Jonathan Gordon2010-09-26
| | | | | | nested conditionals git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28167 a1c6a512-1295-4272-9138-f99709370657
* Roll back r28164 as this change introduced LCD issues on some nano 2G.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28166 a1c6a512-1295-4272-9138-f99709370657
* Add current consumption and battery capacities to iPod nano 2G config file.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28165 a1c6a512-1295-4272-9138-f99709370657
* Reduce LCD voltage supply to 2500 mV to avoid humming noise of nano 2G.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28164 a1c6a512-1295-4272-9138-f99709370657
* Remove code that was unintentionally submitted.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28163 a1c6a512-1295-4272-9138-f99709370657
* Add some more information to iPod nano 2G debug screen.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28162 a1c6a512-1295-4272-9138-f99709370657
* Disable clickwheel power supply when hold button is active for iPod nano 2G.Andree Buschmann2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28161 a1c6a512-1295-4272-9138-f99709370657
* fix FS#11596. make "make install" use rbdir. copy image file correctly.Teruaki Kawashima2010-09-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28160 a1c6a512-1295-4272-9138-f99709370657
* Implement lineout en-/disable for WM8975 and activate it for iPod nano 2G.Andree Buschmann2010-09-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28159 a1c6a512-1295-4272-9138-f99709370657
* Make sure the dsp code has proper resample buffers even if HAVE_PITCHSCREEN ↵Frank Gevaerts2010-09-24
| | | | | | is undefined. This makes playback work again without HAVE_PITCHSCREEN git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28158 a1c6a512-1295-4272-9138-f99709370657
* Correct the examples of usage of %pS and %pE in the manualAlexander Levin2010-09-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28157 a1c6a512-1295-4272-9138-f99709370657
* Minor build script tweaks to make android auto-buildable.Björn Stenberg2010-09-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28156 a1c6a512-1295-4272-9138-f99709370657
* Bump Rockbox Utility version to 1.2.8.Dominik Riebeling2010-09-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28154 a1c6a512-1295-4272-9138-f99709370657
* Set missing svn:keywords property.Dominik Riebeling2010-09-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28153 a1c6a512-1295-4272-9138-f99709370657
* Link libstdc++ and libgcc statically.Dominik Riebeling2010-09-23
| | | | | | | | Since the current MinGW version behaves differently here explicitly link libstdc++ and libgcc statically. Avoids dependency to those DLLs. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28152 a1c6a512-1295-4272-9138-f99709370657
* CREDITS: remove duplicate name (Pinitnun Shanasabang is the same person as ↵Bertrik Sikken2010-09-23
| | | | | | Phinitnun Chanasabaeng) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28151 a1c6a512-1295-4272-9138-f99709370657
* Fix matching of DLL name in deployment script.Dominik Riebeling2010-09-23
| | | | | | | Allow DLL filenames to contain the plus sign. Fixes libstdc++-6.dll not getting recognized as DLL. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28150 a1c6a512-1295-4272-9138-f99709370657
* Escape Backslash and improve version check.Dominik Riebeling2010-09-23
| | | | | | | Since Qt 4.7 unescaped backslashes are deprecated so escape it. Change the order of the version check message to make sure it gets displayed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28149 a1c6a512-1295-4272-9138-f99709370657
* Don't actually reimplement an existing feature for hiding the selection markerThomas Martitz2010-09-23
| | | | | | | | | during scrolling. However, the existing one is part of the list api, so it shouldn't be overridden blindly internally, so do the decision in a different but equivalent way. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28147 a1c6a512-1295-4272-9138-f99709370657
* Explicitly disable hiding the selection bar by default.Thomas Martitz2010-09-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28146 a1c6a512-1295-4272-9138-f99709370657
* Touchscreen: Improve scrolling in absolute point mode.Thomas Martitz2010-09-23
| | | | | | | | | | | | | | | | | | | | | * Scrolling is now done by wiping over the screen. There's no acceleration or kinetic scrolling yet though. But it works rather well (previously you held the edges of the list to scroll). * Improve scrollbar scrolling so that it keeps scrolling even if you leave the scrollbar area. * Hide selection during scrolling * Prevent accidental hitting of the list title (which means go back) during scrolling * Don't go into context menu after scrolling when leaving the screen on an item In general, it's very much like scrolling in native lists in Android, except there's no kinetic scrolling and everything is still line based, but with the feature that the scrollbar enables jumping around in the list and very fast scrolling. Thanks to Dustin Skoracki for his ideas and half of the code for this. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28145 a1c6a512-1295-4272-9138-f99709370657
* Enlarge the button post interval against audio drop outs, Too many lcd updatesThomas Martitz2010-09-22
| | | | | | | | per seconds apparently don't very well. Not sure if it's the hardware or our threading that doesn't play well enough here (UI isn't less response despite of the audio drop outs). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28144 a1c6a512-1295-4272-9138-f99709370657
* Touchscreen: button driver improvementsThomas Martitz2010-09-22
| | | | | | | | | | | | | * Until BUTTON_REPEAT was started, coordinate changes were not exposed. Change that (post on every coordinate change) so that wiping over the screen does actually something between the first touch and BUTTON_REPEAT * Once BUTTON_REPEAT is active, further repeats are posted in an acceleration fashion (slow at the begginning), which smoothes list scrolling. But this has the contrary effect on touchscreen, as it makes swiping appear very laggy. So, remove that acceleration for touchscreen and make it equally fast at all times so the scrollbar is better usable. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28143 a1c6a512-1295-4272-9138-f99709370657
* Removed a bit too much, libmisc.so shall still depend on rockbox.zipThomas Martitz2010-09-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28142 a1c6a512-1295-4272-9138-f99709370657