summaryrefslogtreecommitdiff
path: root/apps (follow)
Commit message (Collapse)AuthorAge
* Fix LANG_TAGNAVI_UNTAGGED source stringRafaël Carré2010-05-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26415 a1c6a512-1295-4272-9138-f99709370657
* fix red. no replaygain on hwcodecJonathan Gordon2010-05-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26410 a1c6a512-1295-4272-9138-f99709370657
* Accept FS#11313 by Chris Savery. Add composer to the track info screen and ↵Jonathan Gordon2010-05-30
| | | | | | some general cleen up. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26409 a1c6a512-1295-4272-9138-f99709370657
* Slovak language updateBertrik Sikken2010-05-30
| | | | | | | | Flyspray: FS #11331 Author: Peter Lecký git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26406 a1c6a512-1295-4272-9138-f99709370657
* Change the software hold button combo from select + home to just holding ↵Michael Giacomelli2010-05-29
| | | | | | home. This is both easier to do on such a small player and more consistent with the OF. Quickscreen is now select + home. Update the manual to reflect this. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26396 a1c6a512-1295-4272-9138-f99709370657
* Correction to clobber lists of several codec's inline assembly.Andree Buschmann2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26376 a1c6a512-1295-4272-9138-f99709370657
* Small changes to asm for better readability.Andree Buschmann2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26375 a1c6a512-1295-4272-9138-f99709370657
* Doom plugin: Missed properly making a few 'unsigned' on my second pass.Michael Sevakis2010-05-29
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26369 a1c6a512-1295-4272-9138-f99709370657
* Doom plugin: In anticipation of moving to the EABI toolchain, because of its ↵Michael Sevakis2010-05-29
| | | | | | assumptions about enums being sized as ints, convert enum typdefs to int or unsigned depending upon whether they have negative values in the enumeration. This should effectively preserve the manner in which it is compiled under the old toolchain and avoids having to closely inspect and possibly change many places in the code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26368 a1c6a512-1295-4272-9138-f99709370657
* Fix typo that made alarmclock exit immediately and add scrollwheel actions.Thomas Martitz2010-05-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26363 a1c6a512-1295-4272-9138-f99709370657
* Update Brazilian Portuguese TranslationMichael Chicoine2010-05-28
| | | | | | | | Flyspray: FS#11316 Author: Adilson Xavier git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26359 a1c6a512-1295-4272-9138-f99709370657
* Updated Turkish translationMichael Chicoine2010-05-28
| | | | | | | | Flyspray: FS#11299 Author: Altay Oz git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26357 a1c6a512-1295-4272-9138-f99709370657
* Update of Czech languageMichael Chicoine2010-05-28
| | | | | | | | Flyspray: FS#11326 Author: Marek Salaba git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26355 a1c6a512-1295-4272-9138-f99709370657
* Voice buffer can be much, much smaller. Code cleanup, logf fixJeffrey Goode2010-05-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26354 a1c6a512-1295-4272-9138-f99709370657
* Catalan language update by Adrián Cereto MassaguéRafaël Carré2010-05-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26345 a1c6a512-1295-4272-9138-f99709370657
* rockboy: rename pcm_*() functions to avoid namespace clash with rockboxRafaël Carré2010-05-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26327 a1c6a512-1295-4272-9138-f99709370657
* update catalan translationRafaël Carré2010-05-27
| | | | | | patch by Adrián Cereto Massagué git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26324 a1c6a512-1295-4272-9138-f99709370657
* Polish translation updates (translated by Tomasz Kowalczyk)Yoshihisa Uchida2010-05-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26322 a1c6a512-1295-4272-9138-f99709370657
* Generate C file / header for svn version stringRafaël Carré2010-05-27
| | | | | | | | | | | | | | | | | | | | | | | | It's now easier to force rebuild of files depending on the svn revision version.c/version.h are generated once with new tools/genversion.sh Changes in the VCS are still not auto detected, so you'll have to remove builddir/version.* if you want to change the string in your binaries APPSVERSION is now called RBVERSION and is defined in the generated header instead of being defined by the Makefiles appsversion is now called rbversion (the plugin api number didn't change since old modules are still binary compatible) Change some bootloaders to use knwon-at-buildtime RBVERSION instead of "%s" + rbversion You'll need to run make clean to regenerate dependencies after the removal of apps/version.h To build binaries with a different version string, hand-edit tools/version.sh or tools/genversion.sh (which calls the former) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26320 a1c6a512-1295-4272-9138-f99709370657
* Since the sdl to target tree move, the main thread cannot be removed anymore,Thomas Martitz2010-05-26
| | | | | | | | | since it's now the default thread which is implicitely created by starting the sim. This caused a segfault that r26283 tried to fix. Revert r26283 and protect the main thread from being removed. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26315 a1c6a512-1295-4272-9138-f99709370657
* Updated Swedish translation (again).Magnus Holmgren2010-05-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26314 a1c6a512-1295-4272-9138-f99709370657
* Japanese translation updates.Yoshihisa Uchida2010-05-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26310 a1c6a512-1295-4272-9138-f99709370657
* Change the hardcoded radio screen almost to how it was before - better use ↵Marianne Arnold2010-05-26
| | | | | | of screen estate, shorter lines, more info. Keep the 'progress' bar which was even possible on small screens. Also show peak meter and prerecording time correctly in the hwcodec version. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26302 a1c6a512-1295-4272-9138-f99709370657
* Give the radio screen setting(s) in the themes menu its own language strings ↵Marianne Arnold2010-05-26
| | | | | | so they don't simply reuse 'FM Radio' as in the main menu. Rename 'Remote FM Radio' which went along with it accordingly. Distinct strings to avoid cunfusion but the change needs translators' attention. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26301 a1c6a512-1295-4272-9138-f99709370657
* Fix r26298 yellow: Somehow missed those warnings. Need playback.h.Michael Sevakis2010-05-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26299 a1c6a512-1295-4272-9138-f99709370657
* SWCODEC: Wait for audio init to complete before starting radio or recording; ↵Michael Sevakis2010-05-26
| | | | | | hardware init might not be finished yet if those are the start screens. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26298 a1c6a512-1295-4272-9138-f99709370657
* lang.h voice comments were off by 1, fixedJeffrey Goode2010-05-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26296 a1c6a512-1295-4272-9138-f99709370657
* Oops, didnt mean to enable logf in talk.cJeffrey Goode2010-05-26
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26295 a1c6a512-1295-4272-9138-f99709370657
* Fix crash in talk.c logf line when outputting voice only clips, more ↵Jeffrey Goode2010-05-26
| | | | | | comments in lang.h git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26294 a1c6a512-1295-4272-9138-f99709370657
* Updated Swedish transation.Magnus Holmgren2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26289 a1c6a512-1295-4272-9138-f99709370657
* Updated italian translation.Alessio Lenzi2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26287 a1c6a512-1295-4272-9138-f99709370657
* Fix M:Robe Plugins and Codecs.Karl Kurbjun2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26279 a1c6a512-1295-4272-9138-f99709370657
* fix red, but this might not be the best long term solution.Jonathan Gordon2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26278 a1c6a512-1295-4272-9138-f99709370657
* remove a stray printfJonathan Gordon2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26277 a1c6a512-1295-4272-9138-f99709370657
* fix FS#11321 - the x5 remote used the wrong coloursJonathan Gordon2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26276 a1c6a512-1295-4272-9138-f99709370657
* fix remote statusbar not being updated if it is enabled on both displaysJonathan Gordon2010-05-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26275 a1c6a512-1295-4272-9138-f99709370657
* pdbox: Code cleanupWincent Balin2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26274 a1c6a512-1295-4272-9138-f99709370657
* Fix test_mem for the archos plugin buffer size and for charcell.Jens Arnold2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26273 a1c6a512-1295-4272-9138-f99709370657
* pdbox: Successfully resolved issue with loading of audio filesWincent Balin2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26272 a1c6a512-1295-4272-9138-f99709370657
* Test plugins: * test_sampr.c is swcodec only * Several plugins are bitmap only.Jens Arnold2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26271 a1c6a512-1295-4272-9138-f99709370657
* Si4700 tuner: It doesn't like to do i2c while powered off and hangs the bus. ↵Michael Sevakis2010-05-24
| | | | | | Make 'pause' simply be 'mute', allowing tuning during user mute as well as nicer-sounding unmute. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26269 a1c6a512-1295-4272-9138-f99709370657
* Vibe 500: fix the scrolling through the lists by implementing BUTTON_REPEAT ↵Szymon Dziok2010-05-24
| | | | | | for the scrollstrip. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26268 a1c6a512-1295-4272-9138-f99709370657
* FS#11293 - Catalan language update by Adrián Cereto MassaguéAlex Parker2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26262 a1c6a512-1295-4272-9138-f99709370657
* FS#11303 - Polish translation update by Tomasz KowalczykAlex Parker2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26259 a1c6a512-1295-4272-9138-f99709370657
* FS#11269 - Slovak language update by Peter LeckyAlex Parker2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26258 a1c6a512-1295-4272-9138-f99709370657
* Correct new memcpy/memset functionality in test_mem plugin. Use appropriate ↵Andree Buschmann2010-05-24
| | | | | | clobber list for arm asm. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26255 a1c6a512-1295-4272-9138-f99709370657
* Make PCM->driver interface about as simple as it will get. Registered ↵Michael Sevakis2010-05-24
| | | | | | callback, zero data, alignment and stops are handled entirely inside pcm.c; driver merely calls fixed pcm.c callback. Remove pcm_record_more and do it just like playback; the original reason behind it isn't very practical in general. Everything checks out on supported targets. There wer some compat changes I can't check out on many unsupoorted but if there's a problem it will be a minor oops. Plugins become incompatible due to recording tweak-- full update. Sorted API. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26253 a1c6a512-1295-4272-9138-f99709370657
* fix: when move_handle() is successful, the return valueYoshihisa Uchida2010-05-24
| | | | | | corrects valid type. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26249 a1c6a512-1295-4272-9138-f99709370657
* fix the %Ti (preset index) not working with conditionls correctlyJonathan Gordon2010-05-24
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26246 a1c6a512-1295-4272-9138-f99709370657
* Wakeup alarm screen is unusuable with large fonts or small screensRafaël Carré2010-05-22
| | | | | | | | | Split the description and the time on 2 lines Flyspray: FS#11274 Authors: Clément Pit--Claudel (CFP) and myself git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26244 a1c6a512-1295-4272-9138-f99709370657