Check-in [beebec9c76]
Overview
| Comment: | Add some version: bumps and add a few versions to depends: references. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
beebec9c7629fa4d043b3d957c1c4103 |
| User & Date: | mario on 2015-05-03 20:26:01 |
| Other Links: | manifest | tags |
Context
|
2015-05-04
| ||
| 15:20 | Hopefully fix Gtk3 error by wrapping second set_current() call in uikit.do check-in: b5a787d470 user: mario tags: trunk | |
|
2015-05-03
| ||
| 20:26 | Add some version: bumps and add a few versions to depends: references. check-in: beebec9c76 user: mario tags: trunk | |
| 20:24 | Perform basic version dependency checks before displaying downloadable plugins. check-in: c83b236a5a user: mario tags: trunk | |
Changes
Modified channels/__init__.py from [4aa8b6efaf] to [fcabfb47c7].
| ︙ | |||
42 43 44 45 46 47 48 49 50 51 52 53 54 55 | 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | + |
# Only export plugin classes
__all__ = [
"GenericChannel", "ChannelPlugin", "use_rx",
"entity_decode", "strip_tags", "nl", "unhtml", "to_int"
]
#__path__.insert(0, conf.plugin_dir)
# generic channel module ---------------------------------------
class GenericChannel(object):
# control attributes
|
| ︙ |
Modified channels/dnd.py from [f74a30909e] to [b0d6800112].
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | - + - - + + | # encoding: UTF-8 # api: streamtuner2 |
| ︙ |
Modified channels/file.py from [710b8d2e10] to [a4d7826b5b].
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 # category: local |
| ︙ |
Modified channels/global_key.py from [9906a49477] to [62a1ee3f85].
1 2 3 4 5 6 7 8 9 10 11 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + |
# api: streamtuner2
# title: Global keyboard shortcut
# description: Allows switching between bookmarked radios via key press.
# type: feature
# category: ui
# version: 0.3
# config:
# { name="switch_key", type="text", value="XF86Forward", description="Global key shortcut for switching radio." },
# { name="switch_channel", type="text", value="bookmarks:favourite", description="Station list and channels to alternate in." },
# { name="switch_random", type="boolean", value=0, description="Pick random channel, instead of next." },
# priority: extra
|
| ︙ |
Modified channels/myoggradio.py from [cb87a3782b] to [b165bc2c10].
1 2 3 4 5 6 7 8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | - + | # api: streamtuner2 # title: MyOggRadio # description: Open source internet radio directory. # type: channel # category: radio # version: 0.7 # url: http://www.myoggradio.org/ |
| ︙ |
Modified config.py from [f4ef1864d6] to [8817626a3c].
| ︙ | |||
389 390 391 392 393 394 395 | 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 | - - + | # Extremely crude version for Python and streamtuner2 plugin usage. # But can fetch from different sources: # ยท fn= to read from literal files, out of a .pyzip package # ยท src= to extract from pre-read script code # ยท module= utilizes pkgutil to read # ยท frame= automatically extract comment header from caller # |
| ︙ |
Modified st2.py from [49404ca98a] to [f3bb2fc332].
1 | 1 2 3 4 5 6 7 8 | - | #!/usr/bin/env python |
| ︙ |
Modified uikit.py from [38277dba47] to [baec4be4e9].
1 2 3 4 5 | 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 |
| ︙ |