Skip to content

Releases: markmelix/recordia

v3.0

14 Oct 13:46
Compare
Choose a tag to compare

Translate everything to English, implement user-friendly CLI to run bot and remove all user-specific mentions.

Ready-to-go release for everyone.

v2.1

03 Oct 15:00
Compare
Choose a tag to compare

Lots of bug fixes.

v2.0

01 Oct 10:19
Compare
Choose a tag to compare

Now there's the only LongcatRecorder class within API, so it's really convenient to just invoke one's init method with needed parameters to setup logging and recording. For example:

LongcatRecorder(
    guild_name="Простое сообщество",
    longcat_names={"agent_of_silence", "а.т.#2766"},
    notifiers=( # notifiers have a special notify method which's invoked when timestamping longcat vc join/exit
        BaseNotifier(), # just prints in terminal 
        TelegramNotifier(chats=TELEGRAM_CHAT_IDS, token=TELEGRAM_TOKEN), # sends a message as a telegram bot
    ),
    privacy_doorstep=3, # how many people should be within vc to have bot joined
    disconnect_delay=15, # delay before disconnecting from vc when longcat leaves
    connect_delay=10, # delay before connecting to vc when longcat joins
).run(DISCORD_TOKEN)

v1.0

28 Sep 13:59
99c0991
Compare
Choose a tag to compare
Create README.md