summaryrefslogtreecommitdiffstats
path: root/apps
AgeCommit message (Collapse)AuthorFilesLines
2003-12-23Screen buffer transposed, such that bytes in X-direction are consecutive. ↵Jörg Hohensohn1-2/+2
This enables my turbocharged lcd_write_data() for regular screen updates. Please check the X11 sim, Win32 works. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4177 a1c6a512-1295-4272-9138-f99709370657
2003-12-23I found several plugins to draw beyond screen boundaryJörg Hohensohn4-5/+123
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4176 a1c6a512-1295-4272-9138-f99709370657
2003-12-22better USB handling, typo fixedJörg Hohensohn1-2/+6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4174 a1c6a512-1295-4272-9138-f99709370657
2003-12-22icons for .ch8, .rvfJörg Hohensohn3-5/+7
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4172 a1c6a512-1295-4272-9138-f99709370657
2003-12-22emulator is a lot faster with my lcd_blit() function and yield() instead of ↵Jörg Hohensohn1-14/+6
sleep() git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4171 a1c6a512-1295-4272-9138-f99709370657
2003-12-20Fixed the display corruption in the recording screen when the status bar is ↵Linus Nielsen Feltzing1-0/+5
disabled git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4169 a1c6a512-1295-4272-9138-f99709370657
2003-12-20Upside Down option for display (and buttons) now wired into the display ↵Jörg Hohensohn4-7/+40
settings menu, persistence, simulator stubs git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4168 a1c6a512-1295-4272-9138-f99709370657
2003-12-19Silly me, I passed the wrong number of items to menu_init(). Thanks to Mike ↵Linus Nielsen Feltzing1-1/+1
Grupenhoff for pointing that out. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4167 a1c6a512-1295-4272-9138-f99709370657
2003-12-19Automatic detection of FM radio hardware for V2 recordersLinus Nielsen Feltzing3-17/+61
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4165 a1c6a512-1295-4272-9138-f99709370657
2003-12-19Added sound controls to the FM radio menuLinus Nielsen Feltzing1-1/+9
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4164 a1c6a512-1295-4272-9138-f99709370657
2003-12-18the vidoe player has some control now: backward, pause, step, FF/FRJörg Hohensohn1-29/+181
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4163 a1c6a512-1295-4272-9138-f99709370657
2003-12-17Synced.Mats Lidell1-2/+16
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4160 a1c6a512-1295-4272-9138-f99709370657
2003-12-15prevent compiler errors on platforms we can't (currently) flashDaniel Stenberg1-1/+6
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4158 a1c6a512-1295-4272-9138-f99709370657
2003-12-15prevent buffer overflowDaniel Stenberg1-19/+28
prevent massive stack usage minor adjusting to rockbox code style git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4156 a1c6a512-1295-4272-9138-f99709370657
2003-12-15handle_on() depends on the presence of an ON buttonDaniel Stenberg1-0/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4155 a1c6a512-1295-4272-9138-f99709370657
2003-12-15Since some code isn't used if no ON button exist, we need to ifdef aroundDaniel Stenberg1-0/+4
them to prevent compiler warning(s). We should make more code use a different key instead of ON for the models that don't have one! git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4154 a1c6a512-1295-4272-9138-f99709370657
2003-12-15kill an "unused variable" compiler warningDaniel Stenberg1-0/+2
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4153 a1c6a512-1295-4272-9138-f99709370657
2003-12-15Now correctly informs gcc that r0 is clobbered in lcd_write_data(). The ↵Linus Nielsen Feltzing1-1/+0
video LED bug is now dead and buried. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4147 a1c6a512-1295-4272-9138-f99709370657
2003-12-15#ifdef platform exclusion fixedJörg Hohensohn1-3/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4146 a1c6a512-1295-4272-9138-f99709370657
2003-12-15the video player plugin and file the type / plugin API for itJörg Hohensohn5-1/+221
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4145 a1c6a512-1295-4272-9138-f99709370657
2003-12-12removed the neo-specific scramble-tool and made it an option to scrambleDaniel Stenberg1-3/+4
instead, and made the makefile use this git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4140 a1c6a512-1295-4272-9138-f99709370657
2003-12-12Make it build without ON button. We should probably allow a different keyDaniel Stenberg1-0/+4
on such platforms. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4139 a1c6a512-1295-4272-9138-f99709370657
2003-12-12Initial suppport for building Rockbox for Neo. The Neo has a differentDaniel Stenberg10-70/+130
key layout so we need to check for this. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4138 a1c6a512-1295-4272-9138-f99709370657
2003-12-12Rockbox on Neo supportDaniel Stenberg1-4/+19
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4137 a1c6a512-1295-4272-9138-f99709370657
2003-12-12New Neo-specific code from the Open Neo project. Unfortunately, the sourcesDaniel Stenberg3-0/+378
don't say who've written this stuff so I can give credit to any specific person (yet). The sources have been modified by me to conform to Rockbox standards. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4135 a1c6a512-1295-4272-9138-f99709370657
2003-12-12fixed a // comment, added a comment how this source file checks for featuresDaniel Stenberg1-2/+6
the wrong way. I didn't address the actual error due to limited time. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4128 a1c6a512-1295-4272-9138-f99709370657
2003-12-11Fixed incorrect #ifdef for .ucl and .ajz filesHardeep Sidhu1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4126 a1c6a512-1295-4272-9138-f99709370657
2003-12-10Added viewer for currently playing playlist. Accessed from Menu->Playlist ↵Hardeep Sidhu7-42/+1075
Options->View Current Playlist. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4124 a1c6a512-1295-4272-9138-f99709370657
2003-12-09Don't write playlist shuffle settings immediately to disk. Instead, save ↵Hardeep Sidhu4-61/+157
them in global settings and only flush to disk when the playlist is modified \(e.g. insert,delete\). As part of the changes the resume index was changed from an int to a short to give an extra 2 bytes in RTC ram to be used for another playlist index. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4121 a1c6a512-1295-4272-9138-f99709370657
2003-12-09typecast the five functions that still make a simulator produce compilerDaniel Stenberg1-5/+5
warnings git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4119 a1c6a512-1295-4272-9138-f99709370657
2003-12-08my take at fixing the simulator warnings by adding mode_t, size_t, ssize_tDaniel Stenberg1-5/+5
and off_t git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4116 a1c6a512-1295-4272-9138-f99709370657
2003-12-07table-driven internal handling of file types, so we can have many of themJörg Hohensohn4-109/+97
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4115 a1c6a512-1295-4272-9138-f99709370657
2003-12-07relaxed version checking, some people had problems with itJörg Hohensohn1-4/+8
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4114 a1c6a512-1295-4272-9138-f99709370657
2003-12-06Re-added analog clockBjörn Stenberg1-10/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4113 a1c6a512-1295-4272-9138-f99709370657
2003-12-04Language updatesBjörn Stenberg5-363/+2440
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4107 a1c6a512-1295-4272-9138-f99709370657
2003-12-04Buffer overrun fix by Craigh Sather (#852494)Björn Stenberg1-8/+14
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4106 a1c6a512-1295-4272-9138-f99709370657
2003-12-04Added a splash to indicate battery charging if user tries to shut off while ↵Björn Stenberg4-1/+28
plugged in. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4104 a1c6a512-1295-4272-9138-f99709370657
2003-12-03Battery meter now shows '?' after boot instead of nothing at all.Björn Stenberg2-7/+17
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4103 a1c6a512-1295-4272-9138-f99709370657
2003-12-03for FM and V2: removed the now false voltage reading from charging screen.Jörg Hohensohn1-8/+15
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4096 a1c6a512-1295-4272-9138-f99709370657
2003-12-03No more spinning disk while charging flashed FM+V2 (you need the new ↵Jörg Hohensohn1-1/+0
bootloader to utilize it). ToDo: remove now false voltage reading from charging screen. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4095 a1c6a512-1295-4272-9138-f99709370657
2003-11-30now supporting V2 Recorder, firmware_flash has extra checks against files ↵Jörg Hohensohn2-11/+80
for wrong platform (hope it's not too strict, causing false rejects) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4084 a1c6a512-1295-4272-9138-f99709370657
2003-11-28No more dependency of the cat commandLinus Nielsen Feltzing1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4077 a1c6a512-1295-4272-9138-f99709370657
2003-11-28The FM/V2 Recorder battery capacity default value is now 2200mAhLinus Nielsen Feltzing1-0/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4076 a1c6a512-1295-4272-9138-f99709370657
2003-11-26Set font before resume.Björn Stenberg1-0/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4069 a1c6a512-1295-4272-9138-f99709370657
2003-11-26Changed WPS and synced.Mats Lidell1-1/+12
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4068 a1c6a512-1295-4272-9138-f99709370657
2003-11-25not yet for V2Jörg Hohensohn1-2/+4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4067 a1c6a512-1295-4272-9138-f99709370657
2003-11-24s/stricmp/strcasecmp/Björn Stenberg1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4064 a1c6a512-1295-4272-9138-f99709370657
2003-11-24Case insensitive compare for BOOTFILEBjörn Stenberg1-1/+1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4063 a1c6a512-1295-4272-9138-f99709370657
2003-11-21Changed Info screen battery info when unknown battery levelBjörn Stenberg1-2/+5
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4062 a1c6a512-1295-4272-9138-f99709370657
2003-11-20yellow build is badDaniel Stenberg1-2/+0
green build is good git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4056 a1c6a512-1295-4272-9138-f99709370657