Check-in [f0cd5d48f2]
Overview
Comment: | live365 now searches javascript |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
f0cd5d48f2dbbd736673913d2926554f |
User & Date: | mario on 2014-01-04 22:25:31 |
Other Links: | manifest | tags |
Context
2014-01-04
| ||
22:37 | Live365 fixed by Abhisek Sanyal check-in: 0cf2739b13 user: mario tags: trunk | |
22:25 | live365 now searches javascript check-in: f0cd5d48f2 user: mario tags: trunk | |
2012-01-12
| ||
14:39 | (no comment) check-in: ff3473b8ec user: mario tags: trunk | |
Changes
Modified README from [7a93008fc3] to [2b90d3c380].
︙ | |||
102 103 104 105 106 107 108 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | - + | - added [new] button in streamedit window - prepared remaining print syntax for python3 (still needs 2to3 though) - fix for https://bugzilla.redhat.com/show_bug.cgi?id=655596 array error - transitioned glade file to gtk.Builder, just a few things broke - made configuration window resizable - locked station list columns, no longer resortable (associatation mismatch) - applied Vincents fixed for Windows action.run and Shoutcast PQ parsing |
︙ |
Modified _pack from [71637bf944] to [b488883eba].
| 1 2 3 4 5 6 7 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 35 36 37 38 39 40 41 42 43 | - - + + + + + + + + + - - - - - - - - + + + + + + + + + + + + + + + + + - + + - - - - - - - - - |
|
Modified _package.epm from [bb299e0003] to [0d8e7f10fb].
1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | - + - + - - + - + - + | %product streamtuner2 - internet radio browser |
︙ |
Modified channels/live365.py from [0058898af0] to [f126b8da6a].
|
Modified st2.py from [c1d417a2d9] to [2dd481062a].
1 2 3 4 5 6 7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | - + | #!/usr/bin/env python # encoding: UTF-8 # api: python # type: application # title: streamtuner2 # description: directory browser for internet radio / audio streams # depends: gtk, pygtk, xml.dom.minidom, threading, lxml, pyquery, kronos |
︙ | |||
27 28 29 30 31 32 33 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - - + | # # # """ project status """ # |
︙ | |||
519 520 521 522 523 524 525 | 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 | - + | # auxiliary window: about dialog class AboutStreamtuner2: # about us def __init__(self): a = gtk.AboutDialog() |
︙ |