Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2008-12-31 | Update copyright notices | Avuton Olrich | 1 | -9/+10 | |
2008-12-05 | screen_song: make the variable "current" static | Max Kellermann | 1 | -1/+1 | |
The global variable "current" should not be exported, and should be "static". | |||||
2008-11-27 | list_window: converted "flags" to one "bool" variable | Max Kellermann | 1 | -1/+1 | |
Currently, there is only one known list_window flag ("hide_cursor"). Replace the "flags" bit field with a boolean variable. If we run out of space some day, we can convert that to bool:1. | |||||
2008-11-27 | list_window: use "bool" instead of "int" | Max Kellermann | 1 | -1/+1 | |
For flags and return values, use the "bool" data type instead of "int". | |||||
2008-11-19 | screen_song: support CMD_SCREEN_LYRICS | Max Kellermann | 1 | -0/+10 | |
Show the lyrics of the song currently being displayed. | |||||
2008-11-19 | screen_song: free the song pointer | Max Kellermann | 1 | -0/+5 | |
Fix a memory leak. | |||||
2008-11-19 | screen_song: include cleanup | Max Kellermann | 1 | -5/+0 | |
2008-11-18 | screen_song: new screen which views song information | Max Kellermann | 1 | -0/+189 | |
This new screen views all information available on a song: its location, file name, and tags. |