Check-in [3d0eb6eed6]
Overview
| Comment: | replace backslashes for VLC on `not conf.windows` | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | trunk | 
| Files: | files | file ages | folders | 
| SHA1: | 
3d0eb6eed6a22f656d3b7296cba5b090 | 
| User & Date: | Oliver on 2016-12-26 15:25:34 | 
| Other Links: | manifest | tags | 
Context
| 
   2016-12-26 
 | ||
| 15:56 | Introduce `depends:` field for themes as well (no version support, just basenames for linux/windows/gtk2/gtk3) check-in: 7027676c80 user: mario tags: trunk | |
| 15:25 | replace backslashes for VLC on `not conf.windows` check-in: 3d0eb6eed6 user: Oliver tags: trunk | |
| 15:24 | Clear up .so files completely on Linux if failed to install. check-in: a7c8985f62 user: Oliver tags: trunk | |
Changes
Modified contrib/file.py from [6b8a1b4500] to [0d878b1704].
| ︙ | ︙ | |||
233 234 235 236 237 238 239  | 
            if self.streams.get(main_base):
                self.streams[main] = self.streams[main_base]
    # extract meta data
    def file_entry(self, fn, dir):
        # basic data
 | | > >  | 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249  | 
            if self.streams.get(main_base):
                self.streams[main] = self.streams[main_base]
    # extract meta data
    def file_entry(self, fn, dir):
        # basic data
        url = ("%s/%s" % (dir, fn))
        if not conf.windows: # needed for VLC playback
            url = url.replace("\\", "/")
        meta = {
            "title": "",
            "filename": fn,
            "url": url,
            "genre": "",
            "album": "",
            "artist": "",
 | 
| ︙ | ︙ |