Diff
Differences From Artifact [6675e32df1]:
- File contrib/record_stop.py — part of check-in [20cd77b794] at 2016-11-08 20:01:44 on branch trunk — Add Windows support (taskkill instead of pkill) (user: mario, size: 827) [annotate] [blame] [check-ins using]
 
To Artifact [658cb7ac5c]:
- File channels/record_stop.py — part of check-in [096b121dee] at 2016-12-24 20:18:35 on branch trunk — Make record-stop button a distributed plugin. (user: mario, size: 832) [annotate] [blame] [check-ins using]
 - File contrib/record_stop.py — part of check-in [09dec64f41] at 2016-12-16 16:26:55 on branch trunk — Reverted all `module = __name__` assignments, because that was carrying the module over, not the base classname. Added #extraction-method: meta information to channel plugins. (user: mario, size: 832) [annotate] [blame] [check-ins using]
 
| ︙ | ︙ | |||
10 11 12 13 14 15 16  | # a streamripper kill switch. import action from config import log, conf # Stop button class record_stop(object):  | |  | 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24  | 
# a streamripper kill switch.
import action
from config import log, conf
# Stop button
class record_stop(object):
    module = 'record_stop'
    # button + hook
    def __init__(self, parent):
        btn = parent.stop
        btn.show()
        btn.set_property("visible", True)
        btn.set_property("visible_horizontal", True)
 | 
| ︙ | ︙ |