summaryrefslogtreecommitdiff
path: root/apps
AgeCommit message (Collapse)Author
2008-08-15Ok, ok, strncpy is better here :PNils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18285 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Kill one more of the printf related warnings in gcc 4.3.1Nils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18284 a1c6a512-1295-4272-9138-f99709370657
2008-08-15Adapt comment to the fact that the splash is removedPeter D'Hoye
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18283 a1c6a512-1295-4272-9138-f99709370657
2008-08-15FS#9281 Rename of splash functions.Nils Wallménius
* Remove gui_splash() * Rename gui_syncsplash() to splashf() and remove its voice capabilities. * Rename the internal splash() to splash_internal() and introduce an externally visible splash() that handles simple splashing without printf functionality e.g. splash(HZ, ID2P(LANG_FOO)); or splash(HZ, "foo"); if a LANG_* id is passed it will be voiced. * Adjust all places that called gui_syncsplash() to use the correct variant from above. * Export both new functions to plugins and adjust places calling rb->splash() to use the correct variant so that we now have naming consistency between the core and plugins. * Fix one latent bug that would cause my sim to crash with the above changes and correct P2STR and P2ID macros, thanks to pondlife. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18282 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Apply FS#9155 (Simplified battery bench). This is a simplification/rework of ↵Bertrik Sikken
the current battery bench code. Battery measurements are now done simply once a minute (no more dependency on HDD specific timeouts) and are flushed to disk by using the ata_idle callback instead of polling ata_disk_is_active (this call is removed from the plugin API now) to make the plugin as unobtrusive as possible. This battery bench plugin also works for flash-based targets like sansa e200. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18281 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Add missing header file to plugins/zxbox/helpers.cBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18280 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Update German translation.Marianne Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18278 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Update Swedish translation.Magnus Holmgren
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18277 a1c6a512-1295-4272-9138-f99709370657
2008-08-14Fix one printf format string warning by applying a simplification.Jens Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18276 a1c6a512-1295-4272-9138-f99709370657
2008-08-13gcc 4.3.1 quite rightfully warnings when printf-style functions use "formatDaniel Stenberg
not a string literal and no format arguments". Those occurances can (will?) lead to future nasty and surprising bugs. These are just a few of a very large amount of necessary fixes. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18274 a1c6a512-1295-4272-9138-f99709370657
2008-08-13Fix a small delay in updating the recording screen. This caused the screen ↵Peter D'Hoye
not to update when changing settings fast (key repeat) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18273 a1c6a512-1295-4272-9138-f99709370657
2008-08-13Updated Polish translation by Maciej Adamczak (FS#9275).Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18267 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Made local functions static for vorbis and speex codecsBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18263 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Declare codec_main prototype in codecs.h to make sure every codec implements ↵Bertrik Sikken
it correctly git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18262 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Removed unused abort function implementationBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18261 a1c6a512-1295-4272-9138-f99709370657
2008-08-12plugin.h implements memcpy (etc) through MEM_FUNCTION_WRAPPERS so it should ↵Bertrik Sikken
also include the proper header file for it git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18260 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Language file fixes for Chinese (simplified and traditional), Russian, ↵Jonas Häggqvist
Finnish and Serbian. Some by me, some by Robert Menes (FS#9267). No actual translation done. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18259 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Fix a few syntax errors in the Japanese translation file.Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18258 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Updated Japanese translation by Takumi Suzuki, Shunsuke Shimizu and Tadayuki ↵Jonas Häggqvist
Nishizono (FS#9148). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18257 a1c6a512-1295-4272-9138-f99709370657
2008-08-12Separate the feature for remote lcd inversion from main lcd inversion to fix ↵Nils Wallménius
a small manual bug git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18251 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Fix FS#8689 (the peak meter does not work during a playing after a recording ↵Bertrik Sikken
not followed by a reboot) by applying the patch from FS#9227. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18249 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Make wavrecord use the same recording directory as the core.Jens Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18247 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Adapt clip counter to compact view of recording screenPeter D'Hoye
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18246 a1c6a512-1295-4272-9138-f99709370657
2008-08-11A few fixes for the Brazilian Portuguese translation by Robert Menes. No ↵Jonas Häggqvist
actual translation work. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18245 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Non-translating changes to Russian, Hebrew and Danish translations.Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18244 a1c6a512-1295-4272-9138-f99709370657
2008-08-11Updated Brazilian Portuguese translation by Adilson Vicente Xavier (FS#9264).Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18243 a1c6a512-1295-4272-9138-f99709370657
2008-08-11r10544 changed the playlist reloading so you couldnt actually abort the ↵Jonathan Gordon
process. This fixes it... git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18242 a1c6a512-1295-4272-9138-f99709370657
2008-08-10Recording screen: show a more compact view if 6 lines do not fit but 4 do. ↵Peter D'Hoye
Should help things on small screens or with big fonts. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18239 a1c6a512-1295-4272-9138-f99709370657
2008-08-10Use WMA windowing optimizations for AAC. Saves about 3.5MHz on Coldfire, ↵Michael Giacomelli
and about 2 MHz on ARM. Thanks to amiconn for help with Coldfire ASM improvements. Next step: dump faad IMDCT. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18238 a1c6a512-1295-4272-9138-f99709370657
2008-08-10Updated Finnish translation by Jani Kinnunen (FS#9261).Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18237 a1c6a512-1295-4272-9138-f99709370657
2008-08-10Update Dutch lang filePeter D'Hoye
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18233 a1c6a512-1295-4272-9138-f99709370657
2008-08-10fix FS#9259 - the trigger screen changes a while ago broke the trigger type ↵Jonathan Gordon
setting git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18232 a1c6a512-1295-4272-9138-f99709370657
2008-08-10Actually put the output in IRAM this time by combining some buffers that ↵Michael Giacomelli
weren't used at the same time. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18231 a1c6a512-1295-4272-9138-f99709370657
2008-08-09Speed up WMA decoding on coldfire (14% speedup with a 128kbps test file).Jens Arnold
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18228 a1c6a512-1295-4272-9138-f99709370657
2008-08-09Remove some garbage from the Italian translation.Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18227 a1c6a512-1295-4272-9138-f99709370657
2008-08-09Fix the feature on which one deprecated string depends. It got accidentally ↵Nils Wallménius
changed in the recsreen ui remake and could mess up the string order in translations for targets with recording but without agc git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18226 a1c6a512-1295-4272-9138-f99709370657
2008-08-09Fix problem with utf8 playlists containing a BOM breaking all entries but ↵Dominik Riebeling
the first -- the index calculation needs to take the BOM size into account. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18225 a1c6a512-1295-4272-9138-f99709370657
2008-08-08Also have the peakmeter menu shown inside the recording menu, because there ↵Peter D'Hoye
is a big chance you want to teak them from inside the recording screen. Also makes the clipcounter setting available there. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18223 a1c6a512-1295-4272-9138-f99709370657
2008-08-08Updated italian lang file.Alessio Lenzi
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18221 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Update Dutch lang filePeter D'Hoye
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18217 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Updated Hebrew translation by Tomer Shalev (FS#9249).Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18215 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Updated Russian translation by Dennis Ivanov.Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18212 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Updated Danish translation.Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18211 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Deprecate unused sysfont stringNils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18210 a1c6a512-1295-4272-9138-f99709370657
2008-08-07Style police, trigStat -> trig_statNils Wallménius
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18209 a1c6a512-1295-4272-9138-f99709370657
2008-08-06First step of the recording screen redesign. The screen is split into a ↵Peter D'Hoye
fixed top part containing essential data and the peakmeters/triggerbar, and a bottom part that is in fact a list. The list contains the items that can be changed, and also some stuff that isn't important enough to be on the top part, like the filename. That filename is now shown completely. If the font is too big to have 6 lines on the display, sysfont is used. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18202 a1c6a512-1295-4272-9138-f99709370657
2008-08-06Updated Russian translation by Dennis Ivanov (FS#9244).Jonas Häggqvist
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18200 a1c6a512-1295-4272-9138-f99709370657
2008-08-05Fix problems (mostly not noticable to user) reported in norwegian translation.Thom Johansen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18199 a1c6a512-1295-4272-9138-f99709370657
2008-08-04Updated dutch voice translationsBertrik Sikken
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18195 a1c6a512-1295-4272-9138-f99709370657
2008-08-04Apply fix for FS#9203 (WPS gets corrupted after changing status bar setting) ↵Bertrik Sikken
by Thomas Schott git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18192 a1c6a512-1295-4272-9138-f99709370657