Check-in [1478740ada]
Overview
| Comment: | bump minor versions |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
1478740adaf31e923ccafdecf622d56e |
| User & Date: | mario on 2016-10-28 23:18:10 |
| Other Links: | manifest | tags |
Context
|
2016-10-28
| ||
| 23:40 | Updated HTML version of help/ check-in: 4293fd7db3 user: mario tags: trunk | |
| 23:18 | bump minor versions check-in: 1478740ada user: mario tags: trunk | |
| 23:12 | Enable `list`/`array`/`table` config schemes in addition to `dict`. Currently unused, just added because it's little more code. No custom value="x,x,x|y,y,y" parser yet. Not for `dict` either, as it's only used by specbuttons with a predefined list. check-in: 50c68197c7 user: mario tags: trunk | |
Changes
Modified action.py from [8584cbcec7] to [8b37efd187].
1 2 3 4 5 6 | # encoding: UTF-8 # api: streamtuner2 # type: functions # category: io # title: play/record actions # description: Starts audio applications, guesses MIME types for URLs | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # encoding: UTF-8 # api: streamtuner2 # type: functions # category: io # title: play/record actions # description: Starts audio applications, guesses MIME types for URLs # version: 1.1.2 # priority: core # # Multimedia interface for starting audio players, recording app, # or web browser (listed as "url/http" association in players). # It maps audio MIME types, and extracts/converts playlist types # (PLS, M3U, XSPF, SMIL, JSPF, ASX, raw urls). # |
| ︙ | ︙ |
Modified channels/configwin.py from [f3a2a25e57] to [d6732e4b27].
1 2 3 | # api: streamtuner2 # title: Config dialog # description: Allows to configure players, options, and plugins | | | 1 2 3 4 5 6 7 8 9 10 11 | # api: streamtuner2 # title: Config dialog # description: Allows to configure players, options, and plugins # version: 2.7 # type: feature # category: ui # config: - # priority: core # # Configuration dialog for audio applications, # general settings, and plugin activaiton and |
| ︙ | ︙ |
Modified channels/specbuttons.py from [0939200c7c] to [50f6d0eab7].
1 2 3 | # encoding: utf-8 # title: Spec buttons for apps # description: Adds configurable mini toolbar buttons | | | 1 2 3 4 5 6 7 8 9 10 11 |
# encoding: utf-8
# title: Spec buttons for apps
# description: Adds configurable mini toolbar buttons
# version: 0.8
# depends: streamtuner2 >= 2.2.0
# type: feature
# category: ui
# config:
# { name: specbutton_rows, value: 2, max: 4, type: int, description: "Number of rows to arrange buttons in." }
# { name: specbuttons, type: dict, columns: "Icon,Command", description: "Icons can be `<a href='http://www.pygtk.org/pygtk2reference/gtk-stock-items.html'>gtk-xyz</a>` internal names. Else use `/usr/share/icon/*.png` file names. Icon file basenames will be expanded into full paths. "}
# doc:
|
| ︙ | ︙ |
Modified st2.py from [23371f7a27] to [29c7034b2f].
1 2 3 4 5 6 | #!/usr/bin/env python # encoding: UTF-8 # api: python # type: application # title: streamtuner2 # description: Directory browser for internet radio, audio and video streams | | | 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
# version: 2.1.9.4
# state: beta
# author: Mario Salzer <mario@include-once.org>
# license: Public Domain
# url: http://freshcode.club/projects/streamtuner2
# config:
# { type: env, name: HTTP_PROXY, description: proxy for HTTP access }
# { type: env, name: XDG_CONFIG_HOME, description: relocates user .config subdirectory }
|
| ︙ | ︙ |
Modified uikit.py from [26d04e8c56] to [ffdf4878d3].
1 2 3 4 5 | # encoding: UTF-8 # api: python # type: functions # title: uikit helper functions # description: simplify usage of some gtk widgets | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 | # encoding: UTF-8 # api: python # type: functions # title: uikit helper functions # description: simplify usage of some gtk widgets # version: 2.0 # author: mario # license: public domain # # Wrappers around gtk methods. The TreeView method .columns() allows # to fill a treeview. It adds columns and data rows with a mapping # dictionary (which specifies many options and data positions). # |
| ︙ | ︙ |