summaryrefslogtreecommitdiff
path: root/apps/tree.c (follow)
Commit message (Collapse)AuthorAge
...
* Smarter handling of custom charsLinus Nielsen Feltzing2002-09-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2147 a1c6a512-1295-4272-9138-f99709370657
* Now we have file type icons on the player, thanks to Justin HeinerLinus Nielsen Feltzing2002-09-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2144 a1c6a512-1295-4272-9138-f99709370657
* Renamed "wps.config" to "default.wps".Björn Stenberg2002-09-02
| | | | | | | | Added *.wps loading from dir browser. Added ugly 'wps' icon. :-) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2131 a1c6a512-1295-4272-9138-f99709370657
* Fixed build errorsBjörn Stenberg2002-09-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2113 a1c6a512-1295-4272-9138-f99709370657
* Added repeat for ENTER and EXITBjörn Stenberg2002-09-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2108 a1c6a512-1295-4272-9138-f99709370657
* USB Related: Justin Heiner2002-08-31
| | | | | | | | | | | | | | | | | | | Consolidated some more of the USB code in the WPS. Have backlight turn offf when USB Connected. menu.c: LINE_X was set wrong for player. settings_menu.c / wps-display.c: Added 1 Line ID3+. Has progress bar & Kbps. Renamed some of the WPS options to be more readable. wps.c / wps-display.c Fixed problem with FF/REW when 'Remaining Time' is on. Added %pb to the WPS mix. Player progress bar thingy. Thanks to whoever fixed my PLAYER_PROGRESS function :-) Changed how volume changes on player (works better now). General cleanup of Custom WPS code. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2091 a1c6a512-1295-4272-9138-f99709370657
* Added scrollbar to tree view and menus.Markus Braun2002-08-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2084 a1c6a512-1295-4272-9138-f99709370657
* syntax error fixDave Chapman2002-08-28
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2036 a1c6a512-1295-4272-9138-f99709370657
* allow mp2 and mpa as valid file extensions and rename TREE_ATTR_MP3 to ↵Dave Chapman2002-08-28
| | | | | | TREE_ATTR_MPA git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2035 a1c6a512-1295-4272-9138-f99709370657
* Added configurable disk spindown. The disk will also now not spin down while ↵Björn Stenberg2002-08-26
| | | | | | you are running around in the dir browser or pressing buttons in the wps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1987 a1c6a512-1295-4272-9138-f99709370657
* Now doesn't try to play non-mp3/m3u files.Björn Stenberg2002-08-23
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1960 a1c6a512-1295-4272-9138-f99709370657
* MENU_DISK_CHANGED is the new value for telling disk content might haveDaniel Stenberg2002-08-23
| | | | | | | changed git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1949 a1c6a512-1295-4272-9138-f99709370657
* Remade the menu system slightly. All functions invoked from menus now useDaniel Stenberg2002-08-23
| | | | | | | | | | | | | the Menu typedef as return type, and *ALL* menus that intercept USB connect can then return MENU_REFRESH_DIR so that the parent (any parent really) that do file or dir-accesses knows that and can do the refresh. If no refresh is needed by the parent, MENU_OK is returned. Somewhat biggish commit this close to 1.3, but we need to sort out this refresh-after-usb-connected business. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1948 a1c6a512-1295-4272-9138-f99709370657
* statusbar bug fix when going to the menu from the dir browserDaniel Stenberg2002-08-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1933 a1c6a512-1295-4272-9138-f99709370657
* Bill Napier's patch slightly remodelled. This adds a setting calledDaniel Stenberg2002-08-22
| | | | | | | | | | "Show hidden files" that if enabled will show files with the hidden attribute and/or starting with a dot in the dir browser. If the setting is set to Off, files/dirs starting with a dot or that have the hidden attribute set will be... yes, hidden. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1926 a1c6a512-1295-4272-9138-f99709370657
* play_list() is now modified to accept a playlist index that is eitherDaniel Stenberg2002-08-21
| | | | | | | | | | | meant in the unshuffled list or in the shuffled. There's an extra parameter giving that info (which of course only makes sense when shuffle is enabled). This should make resume work with play-all-dir in shuffled mode. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1889 a1c6a512-1295-4272-9138-f99709370657
* store the correct index in the resume info when we fire up a single song in aDaniel Stenberg2002-08-21
| | | | | | | directory git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1838 a1c6a512-1295-4272-9138-f99709370657
* Always remove double-height when resumingBjörn Stenberg2002-08-20
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1826 a1c6a512-1295-4272-9138-f99709370657
* Now using lcd margins instead of a line offset for displaying status bar.Markus Braun2002-08-20
| | | | | | | Needed to support fonts smaller than 8 pixels. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1823 a1c6a512-1295-4272-9138-f99709370657
* Expanded resume options: off/ask/onBjörn Stenberg2002-08-19
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1797 a1c6a512-1295-4272-9138-f99709370657
* Fixed bad resume_index in dirs with both folders and filesBjörn Stenberg2002-08-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1789 a1c6a512-1295-4272-9138-f99709370657
* Fixed double-height problem and broken fwd/rew.Björn Stenberg2002-08-16
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1788 a1c6a512-1295-4272-9138-f99709370657
* Added resume. Works in dirs and playlists, shuffled or not. Resumes ↵Björn Stenberg2002-08-16
| | | | | | mid-song, but press pause on players before you shutdown so they get a chance to store the position on disk. Recorders use RTC ram. Todo: Time display is wrong after mid-track resume and ffd/rew is not handled. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1787 a1c6a512-1295-4272-9138-f99709370657
* F3 now toggles global_settings.statusbarMarkus Braun2002-08-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1768 a1c6a512-1295-4272-9138-f99709370657
* Now we can have up to 400 files in a directoryLinus Nielsen Feltzing2002-08-15
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1761 a1c6a512-1295-4272-9138-f99709370657
* Getting a few pixels more filename display width by using a smaller cursor iconBjörn Stenberg2002-08-13
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1723 a1c6a512-1295-4272-9138-f99709370657
* Tell user when limits are reachedBjörn Stenberg2002-08-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1692 a1c6a512-1295-4272-9138-f99709370657
* Added remote vol up/down as next/prev navigation keysBjörn Stenberg2002-08-12
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1688 a1c6a512-1295-4272-9138-f99709370657
* First version of loadable fonts patch by Alex GitelmanBjörn Stenberg2002-08-11
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1666 a1c6a512-1295-4272-9138-f99709370657
* Fixed indexing bug in build_playlistBjörn Stenberg2002-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1622 a1c6a512-1295-4272-9138-f99709370657
* Moved globals back into dirbrowse() now that dirlist hack is gone.Björn Stenberg2002-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1612 a1c6a512-1295-4272-9138-f99709370657
* Removed peek_next_track()Björn Stenberg2002-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1611 a1c6a512-1295-4272-9138-f99709370657
* Now adjusts if the cursor goes off-screen on status bar changesLinus Nielsen Feltzing2002-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1609 a1c6a512-1295-4272-9138-f99709370657
* Compensates the starting position for non-mp3 files in the playlist buildLinus Nielsen Feltzing2002-08-08
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1606 a1c6a512-1295-4272-9138-f99709370657
* Removing scroll acceleration for the release (don't worry, I've saved the patch)Björn Stenberg2002-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1603 a1c6a512-1295-4272-9138-f99709370657
* Added status bar to file browser and wpsMarkus Braun2002-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1582 a1c6a512-1295-4272-9138-f99709370657
* Changed playlist API againLinus Nielsen Feltzing2002-08-07
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1575 a1c6a512-1295-4272-9138-f99709370657
* C99 code breaks compilingDaniel Stenberg2002-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1571 a1c6a512-1295-4272-9138-f99709370657
* rushed it. missed one little bugEric Linenberg2002-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1569 a1c6a512-1295-4272-9138-f99709370657
* added support for players for high speed browsing, but will not be much ↵Eric Linenberg2002-08-06
| | | | | | faster than the default git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1567 a1c6a512-1295-4272-9138-f99709370657
* added a speedup for browsing long directoriesEric Linenberg2002-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1565 a1c6a512-1295-4272-9138-f99709370657
* Now builds a RAM-based playlist when playing a directoryLinus Nielsen Feltzing2002-08-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1561 a1c6a512-1295-4272-9138-f99709370657
* no longer stop playback when trying to 'exit' the root directory, theDaniel Stenberg2002-08-06
| | | | | | | | | player version can't stop playback in the dir browser now but requires a switch into the wps. The Recorder version however now stops playback when OFF is pressed in the dir browser. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1545 a1c6a512-1295-4272-9138-f99709370657
* The new button handling filtered out the USB_CONNECTED messageLinus Nielsen Feltzing2002-07-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1470 a1c6a512-1295-4272-9138-f99709370657
* Better button and play status handlingLinus Nielsen Feltzing2002-07-27
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1464 a1c6a512-1295-4272-9138-f99709370657
* Safer dir reread after USB mode, by Magnus HolmgrenLinus Nielsen Feltzing2002-07-25
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1445 a1c6a512-1295-4272-9138-f99709370657
* First crude status display for PlayersLinus Nielsen Feltzing2002-07-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1408 a1c6a512-1295-4272-9138-f99709370657
* Now rescans the dir when sort_case is changedLinus Nielsen Feltzing2002-07-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1403 a1c6a512-1295-4272-9138-f99709370657
* Loudness, Superbass and sorting patch by Heikki HannikainenLinus Nielsen Feltzing2002-07-22
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1401 a1c6a512-1295-4272-9138-f99709370657
* New sort: Dirs first, then files. And case insensitive.Björn Stenberg2002-07-17
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1376 a1c6a512-1295-4272-9138-f99709370657