Check-in [b0a6a50a20]
Overview
Comment: | Release as 2.1.8 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 2.1.8 |
Files: | files | file ages | folders |
SHA1: |
b0a6a50a20e2a5842c755f11730337a6 |
User & Date: | mario on 2015-05-06 00:08:20 |
Other Links: | manifest | tags |
Context
2015-05-06
| ||
00:21 | Remove default ["empty",] category. check-in: d958ddb71e user: mario tags: trunk | |
00:08 | Release as 2.1.8 check-in: b0a6a50a20 user: mario tags: trunk, 2.1.8 | |
00:07 | Fix some print and log statements. check-in: d0a9fca2bd user: mario tags: trunk | |
Changes
Modified NEWS from [8a25cfeebf] to [d5a50a4514].
|
Modified PKG-INFO from [09ee67ca0a] to [1adf7674b8].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 | - + | Metadata-Version: 1.0 Name: streamtuner2 |
Modified pluginconf.py from [16bafd8a99] to [a5813116de].
︙ | |||
60 61 62 63 64 65 66 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | - - | # Probes a new plugins` depends: list against installed base modules. # Very crude and tied to streamtuner2 base names. # # # |
︙ | |||
107 108 109 110 111 112 113 | 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | - + | if gz: bin = gzip_decode(bin) if decode: return bin.decode("utf-8", errors='ignore') else: return str(bin) except: |
︙ | |||
334 335 336 337 338 339 340 | 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 | - + | typing = re.findall("bool|str|\[\]|const|false|true", opt["type"]) naming = re.findall("\[\]", opt["name"]) name = re.findall("(?<!-)\\b\\w+", opt["name"]) nargs = re.findall("\\b\d+\\b|[\?\*\+]", opt["type"]) or [None] is_arr = "[]" in (naming + typing) and nargs == [None] is_bool= "bool" in typing false_b = "false" in typing or opt["value"] in ("0", "false") |
︙ |
Modified releases.json from [c7a7214195] to [aa01b242f2].
︙ | |||
8 9 10 11 12 13 14 | 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 | - + + + + + + + + + + | "image": "http://milki.include-once.org/streamtuner2/screenshot.mini.png", "urls": { "fossil": "http://fossil.include-once.org/streamtuner2/", "src": "http://milki.include-once.org/streamtuner2/streamtuner2-$version.src.txz", "deb": "http://milki.include-once.org/streamtuner2/streamtuner2-$version.deb", "rpm": "http://milki.include-once.org/streamtuner2/streamtuner2-$version.rpm", "pyz": "http://milki.include-once.org/streamtuner2/streamtuner2-$version.pyz", |
︙ |
Modified st2.py from [5d8e044644] to [f5518a5d34].
1 2 3 4 5 6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | - + | #!/usr/bin/env python # encoding: UTF-8 # api: python # type: application # title: streamtuner2 # description: Directory browser for internet radio, audio and video streams |
︙ | |||
274 275 276 277 278 279 280 | 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | - + | # Open stream homepage in web browser def on_homepage_stream_clicked(self, widget): url = self.selected("homepage") if url and len(url): action.browser(url) else: self.status("No homepage URL present.") |
︙ |