Skip to content

v0.8.4

Compare
Choose a tag to compare
@jeromeludmann jeromeludmann released this 27 Feb 14:31
· 84 commits to main since this release

Features

Chan Mode Aliases

Allows to use client.mode aliases:

client.op('#channel', 'nick'); // gives operator status to 'nick'
client.deop('#channel', 'nick'); // takes operator status from 'nick'

client.halfop('#channel', 'nick'); // gives half-operator status to 'nick'
client.dehalfop('#channel', 'nick'); // takes half-operator status from 'nick'

client.voice('#channel', 'nick'); // gives voice status to 'nick'
client.devoice('#channel', 'nick'); // takes voice status from 'nick'

client.ban('#channel', 'nick!user@host'); // sets ban 'nick!user@host'
client.unban('#channel', 'nick!user@host'); // unsets ban 'nick!user@host'

Internal

Multi Events

Adds RAW_EVENTS and generateRawEvents helpers.