Check-in [d4f8ceee3f]
Overview
Comment: | Add WinAmp user agent. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
d4f8ceee3fd49b919f5b309917c83b80 |
User & Date: | mario on 2015-05-17 03:03:00 |
Other Links: | manifest | tags |
Context
2015-05-17
| ||
03:03 | Get rid of StringIO wrapper for json loading. check-in: d1a36e5bde user: mario tags: trunk | |
03:03 | Add WinAmp user agent. check-in: d4f8ceee3f user: mario tags: trunk | |
03:02 | Fix python dependency, and embed PYTHONPATH in 0-requests feed. check-in: da2cff9cbb user: mario tags: trunk | |
Changes
Modified channels/useragentswitcher.py from [656ccfb2dd] to [fc341bc2fe].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | - + - + | # encoding: UTF-8 # api: streamtuner2 # title: User Agent Switcher # description: Mask streamtuner2 as browser or different radio player. |
︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - + + + | module = "useragentswitcher" meta = plugin_meta() map = { "default": "streamtuner2/2.1 (X11; Linux amd64; rv:33.0) like WinAmp/2.1", "vlc": "vlc 1.1.0-git-20100330-0003", "firefox": "Mozilla/5.0 (Windows NT 6.3; rv:36.0) Gecko/20100101 Firefox/36.0", "chrome": "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36", |
︙ |