Check-in [2a364e20fd]
Overview
Comment: | Minor updates to category: field (now displayed in config dialog.) |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
2a364e20fdaa8b3af318e88e79ca798b |
User & Date: | mario on 2015-03-29 14:49:33 |
Other Links: | manifest | tags |
Context
2015-03-29
| ||
14:51 | Mirror updates to Mallard help pages. check-in: 73b73dd933 user: mario tags: trunk | |
14:49 | Minor updates to category: field (now displayed in config dialog.) check-in: 2a364e20fd user: mario tags: trunk | |
14:49 | Prepare for genre matching into RadioTray groups/folders. check-in: e22c0e1c5a user: mario tags: trunk | |
Changes
Modified channels/bookmarks.py from [145c80c0b6] to [1622338506].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | - + - + - + | # encoding: UTF-8 # api: streamtuner2 |
︙ | |||
113 114 115 116 117 118 119 | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 | - + | # simplified gtk TreeStore display logic (just one category for the moment, always rebuilt) def load(self, category, force=False): __print__(dbg.UI, category, self.streams.keys()) self.streams[category] = self.update_streams(category) #self.liststore[category] = \ |
︙ |
Modified channels/file.py from [6ec2a8db67] to [1ae0a2679f].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # # api: streamtuner2 # title: File browser # description: Displays mp3/oggs or m3u/pls files from local media file directories. # type: channel |
︙ |
Modified channels/history.py from [dff5e057f5] to [8bb9924983].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + | # # api: streamtuner2 # title: History # description: List recently played stations under favourites > history. # version: 1.0 |
︙ |
Modified channels/links.py from [574a0e1823] to [c5baaec29d].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | # # api: streamtuner2 # title: Links to directory services # description: Static list of various music directory websites. |
︙ |
Modified channels/live365.py from [2e2986e12a] to [f9cb99d01d].
︙ | |||
18 19 20 21 22 23 24 | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | - + | # # /cgi-bin/play.pls?stationid=%s&direct=1&file=%s.pls # # streamtuner2 modules from config import conf |
︙ |
Modified channels/modarchive.py from [681b28ed63] to [6105d250d0].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - + | # api: streamtuner2 # title: MODarchive # description: Collection of module / tracker audio files (MOD, S3M, XM, etc.) # type: channel # version: 0.2 # url: http://www.modarchive.org/ # priority: extra # config: - |
︙ |
Modified channels/myoggradio.py from [cdc167a1f7] to [a6b1955e45].
︙ | |||
22 23 24 25 26 27 28 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | - + | # from channels import * from config import conf from action import action |
︙ | |||
57 58 59 60 61 62 63 | 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | - + | # prepare GUI def __init__(self, parent): ChannelPlugin.__init__(self, parent) if parent: |
︙ |
Modified channels/timer.py from [446fecc94b] to [185461bc28].
1 2 3 4 5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | - + - - + + | # # api: streamtuner2 # title: Recording timer # description: Schedules play/record events for bookmarked radio stations. # type: feature |
︙ | |||
55 56 57 58 59 60 61 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + | if parent: # keep reference to main window self.parent = parent self.bookmarks = parent.bookmarks # add menu |
︙ |
Modified channels/xiph.py from [f757c3da36] to [5e3d628269].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | - + | # # # streamtuner2 modules from config import conf |
︙ |