23 lines
577 B
Python
23 lines
577 B
Python
|
# Copyright: Ankitects Pty Ltd and contributors
|
||
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
|
||
|
"""
|
||
|
See pylib/tools/genhooks.py for more info.
|
||
|
"""
|
||
|
|
||
|
import os
|
||
|
|
||
|
from anki.hooks_gen import Hook, update_file
|
||
|
|
||
|
# Hook list
|
||
|
######################################################################
|
||
|
|
||
|
hooks = [
|
||
|
Hook(name="mpv_idle"),
|
||
|
Hook(name="mpv_will_play", cb_args="file: str", legacy_hook="mpvWillPlay"),
|
||
|
]
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
path = os.path.join(os.path.dirname(__file__), "..", "aqt", "gui_hooks.py")
|
||
|
update_file(path, hooks)
|