├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── c ├── README ├── easywinampcontrol │ ├── .gitignore │ ├── hexchat_winampctrl.sln │ ├── hexchat_winampctrl │ │ ├── ReadMe.txt │ │ ├── hexchat-plugin.h │ │ ├── hexchat_winampctrl.cpp │ │ ├── hexchat_winampctrl.vcxproj │ │ ├── hexchat_winampctrl.vcxproj.filters │ │ ├── plugin.def │ │ └── winamp.h │ └── readme.md ├── globalhotkeys │ ├── .gitignore │ ├── Plugin.def │ ├── globalhotkeys.cpp │ ├── globalhotkeys.sln │ ├── globalhotkeys.vcxproj │ ├── globalhotkeys.vcxproj.filters │ ├── hexchat-plugin.h │ └── readme.md ├── tcl │ ├── .gitignore │ ├── hexchat-plugin.h │ ├── printevents.h │ ├── readme.md │ ├── resource.h │ ├── tcl.def │ ├── tcl.md │ ├── tcl.props │ ├── tcl.rc │ ├── tcl.sln │ ├── tcl.vcxproj │ ├── tcl.vcxproj.filters │ ├── tclplugin.c │ ├── tclplugin.h │ └── win32 │ │ └── typedef.h └── wmpa │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── hexchat-plugin.cpp │ ├── hexchat-plugin.h │ ├── res │ └── wmpa.rc2 │ ├── resource.h │ ├── wmpa.cpp │ ├── wmpa.def │ ├── wmpa.h │ ├── wmpa.ico │ ├── wmpa.odl │ ├── wmpa.rc │ ├── wmpa.sln │ ├── wmpa.vcxproj │ ├── wmpa.vcxproj.filters │ ├── wmpa_h.h │ ├── wmpadialog.cpp │ ├── wmpadialog.h │ ├── wmpcdrom.cpp │ ├── wmpcdrom.h │ ├── wmpcdromcollection.cpp │ ├── wmpcdromcollection.h │ ├── wmpclosedcaption.cpp │ ├── wmpclosedcaption.h │ ├── wmpcontrols.cpp │ ├── wmpcontrols.h │ ├── wmpdvd.cpp │ ├── wmpdvd.h │ ├── wmperror.cpp │ ├── wmperror.h │ ├── wmperroritem.cpp │ ├── wmperroritem.h │ ├── wmpmedia.cpp │ ├── wmpmedia.h │ ├── wmpmediacollection.cpp │ ├── wmpmediacollection.h │ ├── wmpnetwork.cpp │ ├── wmpnetwork.h │ ├── wmpplayer4.cpp │ ├── wmpplayer4.h │ ├── wmpplayerapplication.cpp │ ├── wmpplayerapplication.h │ ├── wmpplaylist.cpp │ ├── wmpplaylist.h │ ├── wmpplaylistarray.cpp │ ├── wmpplaylistarray.h │ ├── wmpplaylistcollection.cpp │ ├── wmpplaylistcollection.h │ ├── wmpsettings.cpp │ ├── wmpsettings.h │ ├── wmpstringcollection.cpp │ └── wmpstringcollection.h ├── lua ├── README ├── alias │ └── alias.lua ├── clones │ └── clones.lua ├── debbugs │ └── debbugs.lua ├── input-r-search │ └── input-r-search.lua ├── keepdialogs │ └── keepdialogs.lua ├── match │ └── match.lua └── whois-event │ └── whois-event.lua ├── perl ├── AutoNick │ └── AutoNick.pl ├── README ├── autoaway │ └── autoaway.pl ├── banwithnick │ └── banwithnick.pl ├── cap_to_capab │ └── cap_to_capab.pl ├── channel_highlight │ └── channel_highlight.pl ├── channelballoon │ └── channelballoon.pl ├── channoticetab │ └── channoticetab.pl ├── chansaver │ └── chansaver.pl ├── ctrltabcontrol │ └── ctrltabcontrol.pl ├── dccautomanage │ └── dccautomanage.pl ├── doat │ └── doat.pl ├── doop │ └── doop.pl ├── duplicateenter │ └── duplicateenter.pl ├── edittopic │ └── edittopic.pl ├── eventtoservertab │ └── eventtoservertab.pl ├── gmb-nowplaying │ └── gmb-nowplaying.pl ├── greetonchan │ └── greetonchan.pl ├── groupprivate │ └── groupprivate.pl ├── homoglyph │ └── homoglyph.pl ├── ignore_chan_voices │ └── ignore_chan_voices.pl ├── ignore_user_channel │ └── ignore_user_channel.pl ├── ignorechanctcp │ └── ignorechanctcp.pl ├── limitmaintain │ └── limitmaintain.pl ├── masshighlightignore │ └── masshighlightignore.pl ├── masskb │ └── masskb.pl ├── massnamesspamignore │ └── massnamesspamignore.pl ├── multilinecatch │ └── multilinecatch.pl ├── namesjoin │ └── namesjoin.pl ├── nicktrace │ └── nicktrace.pl ├── nochannelhighlight │ └── nochannelhighlight.pl ├── notice no alert │ └── notice no alert.pl ├── noticequery │ └── noticequery.pl ├── notifyhighlight │ └── notifyhighlight.pl ├── operbuddy │ ├── README.txt │ └── operbuddy.pl ├── query-blocker │ └── query-blocker.pl ├── rainbow │ └── rainbow.pl ├── randslappy │ ├── randobjects.txt │ ├── randslappy.conf │ └── randslappy.pl ├── ratbox-respond │ ├── README.txt │ └── ratbox-respond.pl ├── sayignore │ └── sayignore.pl ├── servernoticejqtab │ └── servernoticejqtab.pl ├── showall │ └── showall.pl ├── showallchannels │ └── showallchannels.pl ├── showhighlight │ └── showhighlight.pl ├── showmodedate │ └── showmodedate.pl ├── statuscolor │ └── statuscolor.pl ├── tempconv │ └── tempconv.pl ├── textualdynambot │ ├── CHANGELOG │ ├── COPYING │ ├── INSTALL │ ├── MANIFEST │ ├── README │ ├── textualdynambot.conf │ └── textualdynambot.pl ├── url_highlight │ └── url_highlight.pl ├── urltitlesay │ └── urltitlesay.pl ├── voiceall │ └── voiceall.pl └── whosave │ └── whosave.pl ├── python ├── README ├── amip │ ├── README.md │ └── amip.py ├── at │ └── at.py ├── autoaway │ └── autoaway.py ├── autoop │ └── pyxaop.py ├── awayannounce │ └── awayanounce.py ├── betternotifications │ ├── BetterNotifications.py │ └── README ├── blinkonprivate │ └── blinkonprivate.py ├── bubbles │ ├── bubbles.ico │ └── bubbles.py ├── cd │ └── cd.py ├── cmus_hexchat │ ├── README.md │ └── cmus_hexchat.py ├── ctypes │ ├── README.md │ ├── tabxhider.py │ └── treenumbers.py ├── downthemall │ └── down.py ├── easyxdcc │ ├── EasyXdcc.py │ ├── LICENSE.md │ └── README.md ├── emoji-slack-fix │ └── emoji-slack-fix.py ├── hexquotes │ ├── LICENSE │ ├── README.md │ └── quotes.py ├── icycle │ └── icycle.py ├── isbanned │ └── isbanned.py ├── msg-notice-redirection │ └── msg-notice-redirection.py ├── nicenicks │ ├── README.md │ └── nicenicks.py ├── nignore │ ├── README.md │ └── nignore.py ├── onoticeformat │ └── onoticeformat.py ├── passwordmask │ └── passwordmask.py ├── privacy │ └── privacy.py ├── regex_auto-replace │ ├── README.md │ └── replace.py ├── sharedchans │ └── sharedchannels.py ├── shorten │ ├── LICENCE │ └── shorten.py ├── slap │ └── slap.py ├── smart_filter │ ├── README.md │ └── filter.py ├── sound-alert │ ├── README.md │ └── soundalert.py ├── statusmsg │ └── statusmsg.py ├── teknik │ ├── README.md │ └── teknik.py ├── twitch_enhancements │ ├── readme.md │ └── twitch_enhancements.py └── urbandictionary │ └── urbandictionary.py └── tcl ├── README ├── aliases └── aliases.tcl ├── firstmsg └── firstmsg.tcl ├── kb └── kb.tcl ├── nicksaid └── nicksaid.tcl ├── nickserv └── nickserv.tcl ├── notice └── notice.tcl ├── oper └── oper-v1.tcl ├── pingme └── pingme.tcl ├── sounds └── sounds.tcl ├── tclplugin └── tclplugin.tcl ├── telnet └── telnet.tcl ├── uptime └── uptime.tcl └── whois ├── whois-2.tcl └── whois.tcl /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/README.md -------------------------------------------------------------------------------- /c/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/README -------------------------------------------------------------------------------- /c/easywinampcontrol/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/.gitignore -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl.sln -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/ReadMe.txt -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/hexchat-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/hexchat-plugin.h -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.cpp -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.vcxproj -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/hexchat_winampctrl.vcxproj.filters -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/plugin.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | hexchat_plugin_init 3 | -------------------------------------------------------------------------------- /c/easywinampcontrol/hexchat_winampctrl/winamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/hexchat_winampctrl/winamp.h -------------------------------------------------------------------------------- /c/easywinampcontrol/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/easywinampcontrol/readme.md -------------------------------------------------------------------------------- /c/globalhotkeys/.gitignore: -------------------------------------------------------------------------------- 1 | *.opendb 2 | *.VC.db 3 | -------------------------------------------------------------------------------- /c/globalhotkeys/Plugin.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/Plugin.def -------------------------------------------------------------------------------- /c/globalhotkeys/globalhotkeys.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/globalhotkeys.cpp -------------------------------------------------------------------------------- /c/globalhotkeys/globalhotkeys.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/globalhotkeys.sln -------------------------------------------------------------------------------- /c/globalhotkeys/globalhotkeys.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/globalhotkeys.vcxproj -------------------------------------------------------------------------------- /c/globalhotkeys/globalhotkeys.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/globalhotkeys.vcxproj.filters -------------------------------------------------------------------------------- /c/globalhotkeys/hexchat-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/hexchat-plugin.h -------------------------------------------------------------------------------- /c/globalhotkeys/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/globalhotkeys/readme.md -------------------------------------------------------------------------------- /c/tcl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/.gitignore -------------------------------------------------------------------------------- /c/tcl/hexchat-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/hexchat-plugin.h -------------------------------------------------------------------------------- /c/tcl/printevents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/printevents.h -------------------------------------------------------------------------------- /c/tcl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/readme.md -------------------------------------------------------------------------------- /c/tcl/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/resource.h -------------------------------------------------------------------------------- /c/tcl/tcl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.def -------------------------------------------------------------------------------- /c/tcl/tcl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.md -------------------------------------------------------------------------------- /c/tcl/tcl.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.props -------------------------------------------------------------------------------- /c/tcl/tcl.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.rc -------------------------------------------------------------------------------- /c/tcl/tcl.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.sln -------------------------------------------------------------------------------- /c/tcl/tcl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.vcxproj -------------------------------------------------------------------------------- /c/tcl/tcl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tcl.vcxproj.filters -------------------------------------------------------------------------------- /c/tcl/tclplugin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tclplugin.c -------------------------------------------------------------------------------- /c/tcl/tclplugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/tclplugin.h -------------------------------------------------------------------------------- /c/tcl/win32/typedef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/tcl/win32/typedef.h -------------------------------------------------------------------------------- /c/wmpa/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/ReadMe.txt -------------------------------------------------------------------------------- /c/wmpa/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/StdAfx.cpp -------------------------------------------------------------------------------- /c/wmpa/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/StdAfx.h -------------------------------------------------------------------------------- /c/wmpa/hexchat-plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/hexchat-plugin.cpp -------------------------------------------------------------------------------- /c/wmpa/hexchat-plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/hexchat-plugin.h -------------------------------------------------------------------------------- /c/wmpa/res/wmpa.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/res/wmpa.rc2 -------------------------------------------------------------------------------- /c/wmpa/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/resource.h -------------------------------------------------------------------------------- /c/wmpa/wmpa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpa.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.def -------------------------------------------------------------------------------- /c/wmpa/wmpa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.h -------------------------------------------------------------------------------- /c/wmpa/wmpa.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.ico -------------------------------------------------------------------------------- /c/wmpa/wmpa.odl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.odl -------------------------------------------------------------------------------- /c/wmpa/wmpa.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.rc -------------------------------------------------------------------------------- /c/wmpa/wmpa.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.sln -------------------------------------------------------------------------------- /c/wmpa/wmpa.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.vcxproj -------------------------------------------------------------------------------- /c/wmpa/wmpa.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa.vcxproj.filters -------------------------------------------------------------------------------- /c/wmpa/wmpa_h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpa_h.h -------------------------------------------------------------------------------- /c/wmpa/wmpadialog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpadialog.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpadialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpadialog.h -------------------------------------------------------------------------------- /c/wmpa/wmpcdrom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcdrom.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpcdrom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcdrom.h -------------------------------------------------------------------------------- /c/wmpa/wmpcdromcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcdromcollection.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpcdromcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcdromcollection.h -------------------------------------------------------------------------------- /c/wmpa/wmpclosedcaption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpclosedcaption.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpclosedcaption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpclosedcaption.h -------------------------------------------------------------------------------- /c/wmpa/wmpcontrols.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcontrols.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpcontrols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpcontrols.h -------------------------------------------------------------------------------- /c/wmpa/wmpdvd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpdvd.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpdvd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpdvd.h -------------------------------------------------------------------------------- /c/wmpa/wmperror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmperror.cpp -------------------------------------------------------------------------------- /c/wmpa/wmperror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmperror.h -------------------------------------------------------------------------------- /c/wmpa/wmperroritem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmperroritem.cpp -------------------------------------------------------------------------------- /c/wmpa/wmperroritem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmperroritem.h -------------------------------------------------------------------------------- /c/wmpa/wmpmedia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpmedia.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpmedia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpmedia.h -------------------------------------------------------------------------------- /c/wmpa/wmpmediacollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpmediacollection.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpmediacollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpmediacollection.h -------------------------------------------------------------------------------- /c/wmpa/wmpnetwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpnetwork.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpnetwork.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpnetwork.h -------------------------------------------------------------------------------- /c/wmpa/wmpplayer4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplayer4.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpplayer4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplayer4.h -------------------------------------------------------------------------------- /c/wmpa/wmpplayerapplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplayerapplication.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpplayerapplication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplayerapplication.h -------------------------------------------------------------------------------- /c/wmpa/wmpplaylist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylist.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpplaylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylist.h -------------------------------------------------------------------------------- /c/wmpa/wmpplaylistarray.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylistarray.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpplaylistarray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylistarray.h -------------------------------------------------------------------------------- /c/wmpa/wmpplaylistcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylistcollection.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpplaylistcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpplaylistcollection.h -------------------------------------------------------------------------------- /c/wmpa/wmpsettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpsettings.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpsettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpsettings.h -------------------------------------------------------------------------------- /c/wmpa/wmpstringcollection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpstringcollection.cpp -------------------------------------------------------------------------------- /c/wmpa/wmpstringcollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/c/wmpa/wmpstringcollection.h -------------------------------------------------------------------------------- /lua/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/README -------------------------------------------------------------------------------- /lua/alias/alias.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/alias/alias.lua -------------------------------------------------------------------------------- /lua/clones/clones.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/clones/clones.lua -------------------------------------------------------------------------------- /lua/debbugs/debbugs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/debbugs/debbugs.lua -------------------------------------------------------------------------------- /lua/input-r-search/input-r-search.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/input-r-search/input-r-search.lua -------------------------------------------------------------------------------- /lua/keepdialogs/keepdialogs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/keepdialogs/keepdialogs.lua -------------------------------------------------------------------------------- /lua/match/match.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/match/match.lua -------------------------------------------------------------------------------- /lua/whois-event/whois-event.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/lua/whois-event/whois-event.lua -------------------------------------------------------------------------------- /perl/AutoNick/AutoNick.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/AutoNick/AutoNick.pl -------------------------------------------------------------------------------- /perl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/README -------------------------------------------------------------------------------- /perl/autoaway/autoaway.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/autoaway/autoaway.pl -------------------------------------------------------------------------------- /perl/banwithnick/banwithnick.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/banwithnick/banwithnick.pl -------------------------------------------------------------------------------- /perl/cap_to_capab/cap_to_capab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/cap_to_capab/cap_to_capab.pl -------------------------------------------------------------------------------- /perl/channel_highlight/channel_highlight.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/channel_highlight/channel_highlight.pl -------------------------------------------------------------------------------- /perl/channelballoon/channelballoon.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/channelballoon/channelballoon.pl -------------------------------------------------------------------------------- /perl/channoticetab/channoticetab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/channoticetab/channoticetab.pl -------------------------------------------------------------------------------- /perl/chansaver/chansaver.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/chansaver/chansaver.pl -------------------------------------------------------------------------------- /perl/ctrltabcontrol/ctrltabcontrol.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ctrltabcontrol/ctrltabcontrol.pl -------------------------------------------------------------------------------- /perl/dccautomanage/dccautomanage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/dccautomanage/dccautomanage.pl -------------------------------------------------------------------------------- /perl/doat/doat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/doat/doat.pl -------------------------------------------------------------------------------- /perl/doop/doop.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/doop/doop.pl -------------------------------------------------------------------------------- /perl/duplicateenter/duplicateenter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/duplicateenter/duplicateenter.pl -------------------------------------------------------------------------------- /perl/edittopic/edittopic.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/edittopic/edittopic.pl -------------------------------------------------------------------------------- /perl/eventtoservertab/eventtoservertab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/eventtoservertab/eventtoservertab.pl -------------------------------------------------------------------------------- /perl/gmb-nowplaying/gmb-nowplaying.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/gmb-nowplaying/gmb-nowplaying.pl -------------------------------------------------------------------------------- /perl/greetonchan/greetonchan.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/greetonchan/greetonchan.pl -------------------------------------------------------------------------------- /perl/groupprivate/groupprivate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/groupprivate/groupprivate.pl -------------------------------------------------------------------------------- /perl/homoglyph/homoglyph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/homoglyph/homoglyph.pl -------------------------------------------------------------------------------- /perl/ignore_chan_voices/ignore_chan_voices.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ignore_chan_voices/ignore_chan_voices.pl -------------------------------------------------------------------------------- /perl/ignore_user_channel/ignore_user_channel.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ignore_user_channel/ignore_user_channel.pl -------------------------------------------------------------------------------- /perl/ignorechanctcp/ignorechanctcp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ignorechanctcp/ignorechanctcp.pl -------------------------------------------------------------------------------- /perl/limitmaintain/limitmaintain.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/limitmaintain/limitmaintain.pl -------------------------------------------------------------------------------- /perl/masshighlightignore/masshighlightignore.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/masshighlightignore/masshighlightignore.pl -------------------------------------------------------------------------------- /perl/masskb/masskb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/masskb/masskb.pl -------------------------------------------------------------------------------- /perl/massnamesspamignore/massnamesspamignore.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/massnamesspamignore/massnamesspamignore.pl -------------------------------------------------------------------------------- /perl/multilinecatch/multilinecatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/multilinecatch/multilinecatch.pl -------------------------------------------------------------------------------- /perl/namesjoin/namesjoin.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/namesjoin/namesjoin.pl -------------------------------------------------------------------------------- /perl/nicktrace/nicktrace.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/nicktrace/nicktrace.pl -------------------------------------------------------------------------------- /perl/nochannelhighlight/nochannelhighlight.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/nochannelhighlight/nochannelhighlight.pl -------------------------------------------------------------------------------- /perl/notice no alert/notice no alert.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/notice no alert/notice no alert.pl -------------------------------------------------------------------------------- /perl/noticequery/noticequery.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/noticequery/noticequery.pl -------------------------------------------------------------------------------- /perl/notifyhighlight/notifyhighlight.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/notifyhighlight/notifyhighlight.pl -------------------------------------------------------------------------------- /perl/operbuddy/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/operbuddy/README.txt -------------------------------------------------------------------------------- /perl/operbuddy/operbuddy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/operbuddy/operbuddy.pl -------------------------------------------------------------------------------- /perl/query-blocker/query-blocker.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/query-blocker/query-blocker.pl -------------------------------------------------------------------------------- /perl/rainbow/rainbow.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/rainbow/rainbow.pl -------------------------------------------------------------------------------- /perl/randslappy/randobjects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/randslappy/randobjects.txt -------------------------------------------------------------------------------- /perl/randslappy/randslappy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/randslappy/randslappy.conf -------------------------------------------------------------------------------- /perl/randslappy/randslappy.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/randslappy/randslappy.pl -------------------------------------------------------------------------------- /perl/ratbox-respond/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ratbox-respond/README.txt -------------------------------------------------------------------------------- /perl/ratbox-respond/ratbox-respond.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/ratbox-respond/ratbox-respond.pl -------------------------------------------------------------------------------- /perl/sayignore/sayignore.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/sayignore/sayignore.pl -------------------------------------------------------------------------------- /perl/servernoticejqtab/servernoticejqtab.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/servernoticejqtab/servernoticejqtab.pl -------------------------------------------------------------------------------- /perl/showall/showall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/showall/showall.pl -------------------------------------------------------------------------------- /perl/showallchannels/showallchannels.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/showallchannels/showallchannels.pl -------------------------------------------------------------------------------- /perl/showhighlight/showhighlight.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/showhighlight/showhighlight.pl -------------------------------------------------------------------------------- /perl/showmodedate/showmodedate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/showmodedate/showmodedate.pl -------------------------------------------------------------------------------- /perl/statuscolor/statuscolor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/statuscolor/statuscolor.pl -------------------------------------------------------------------------------- /perl/tempconv/tempconv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/tempconv/tempconv.pl -------------------------------------------------------------------------------- /perl/textualdynambot/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/CHANGELOG -------------------------------------------------------------------------------- /perl/textualdynambot/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/COPYING -------------------------------------------------------------------------------- /perl/textualdynambot/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/INSTALL -------------------------------------------------------------------------------- /perl/textualdynambot/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/MANIFEST -------------------------------------------------------------------------------- /perl/textualdynambot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/README -------------------------------------------------------------------------------- /perl/textualdynambot/textualdynambot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/textualdynambot.conf -------------------------------------------------------------------------------- /perl/textualdynambot/textualdynambot.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/textualdynambot/textualdynambot.pl -------------------------------------------------------------------------------- /perl/url_highlight/url_highlight.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/url_highlight/url_highlight.pl -------------------------------------------------------------------------------- /perl/urltitlesay/urltitlesay.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/urltitlesay/urltitlesay.pl -------------------------------------------------------------------------------- /perl/voiceall/voiceall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/voiceall/voiceall.pl -------------------------------------------------------------------------------- /perl/whosave/whosave.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/perl/whosave/whosave.pl -------------------------------------------------------------------------------- /python/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/README -------------------------------------------------------------------------------- /python/amip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/amip/README.md -------------------------------------------------------------------------------- /python/amip/amip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/amip/amip.py -------------------------------------------------------------------------------- /python/at/at.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/at/at.py -------------------------------------------------------------------------------- /python/autoaway/autoaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/autoaway/autoaway.py -------------------------------------------------------------------------------- /python/autoop/pyxaop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/autoop/pyxaop.py -------------------------------------------------------------------------------- /python/awayannounce/awayanounce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/awayannounce/awayanounce.py -------------------------------------------------------------------------------- /python/betternotifications/BetterNotifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/betternotifications/BetterNotifications.py -------------------------------------------------------------------------------- /python/betternotifications/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/betternotifications/README -------------------------------------------------------------------------------- /python/blinkonprivate/blinkonprivate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/blinkonprivate/blinkonprivate.py -------------------------------------------------------------------------------- /python/bubbles/bubbles.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/bubbles/bubbles.ico -------------------------------------------------------------------------------- /python/bubbles/bubbles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/bubbles/bubbles.py -------------------------------------------------------------------------------- /python/cd/cd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/cd/cd.py -------------------------------------------------------------------------------- /python/cmus_hexchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/cmus_hexchat/README.md -------------------------------------------------------------------------------- /python/cmus_hexchat/cmus_hexchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/cmus_hexchat/cmus_hexchat.py -------------------------------------------------------------------------------- /python/ctypes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/ctypes/README.md -------------------------------------------------------------------------------- /python/ctypes/tabxhider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/ctypes/tabxhider.py -------------------------------------------------------------------------------- /python/ctypes/treenumbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/ctypes/treenumbers.py -------------------------------------------------------------------------------- /python/downthemall/down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/downthemall/down.py -------------------------------------------------------------------------------- /python/easyxdcc/EasyXdcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/easyxdcc/EasyXdcc.py -------------------------------------------------------------------------------- /python/easyxdcc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/easyxdcc/LICENSE.md -------------------------------------------------------------------------------- /python/easyxdcc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/easyxdcc/README.md -------------------------------------------------------------------------------- /python/emoji-slack-fix/emoji-slack-fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/emoji-slack-fix/emoji-slack-fix.py -------------------------------------------------------------------------------- /python/hexquotes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/hexquotes/LICENSE -------------------------------------------------------------------------------- /python/hexquotes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/hexquotes/README.md -------------------------------------------------------------------------------- /python/hexquotes/quotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/hexquotes/quotes.py -------------------------------------------------------------------------------- /python/icycle/icycle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/icycle/icycle.py -------------------------------------------------------------------------------- /python/isbanned/isbanned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/isbanned/isbanned.py -------------------------------------------------------------------------------- /python/msg-notice-redirection/msg-notice-redirection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/msg-notice-redirection/msg-notice-redirection.py -------------------------------------------------------------------------------- /python/nicenicks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/nicenicks/README.md -------------------------------------------------------------------------------- /python/nicenicks/nicenicks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/nicenicks/nicenicks.py -------------------------------------------------------------------------------- /python/nignore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/nignore/README.md -------------------------------------------------------------------------------- /python/nignore/nignore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/nignore/nignore.py -------------------------------------------------------------------------------- /python/onoticeformat/onoticeformat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/onoticeformat/onoticeformat.py -------------------------------------------------------------------------------- /python/passwordmask/passwordmask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/passwordmask/passwordmask.py -------------------------------------------------------------------------------- /python/privacy/privacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/privacy/privacy.py -------------------------------------------------------------------------------- /python/regex_auto-replace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/regex_auto-replace/README.md -------------------------------------------------------------------------------- /python/regex_auto-replace/replace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/regex_auto-replace/replace.py -------------------------------------------------------------------------------- /python/sharedchans/sharedchannels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/sharedchans/sharedchannels.py -------------------------------------------------------------------------------- /python/shorten/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/shorten/LICENCE -------------------------------------------------------------------------------- /python/shorten/shorten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/shorten/shorten.py -------------------------------------------------------------------------------- /python/slap/slap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/slap/slap.py -------------------------------------------------------------------------------- /python/smart_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/smart_filter/README.md -------------------------------------------------------------------------------- /python/smart_filter/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/smart_filter/filter.py -------------------------------------------------------------------------------- /python/sound-alert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/sound-alert/README.md -------------------------------------------------------------------------------- /python/sound-alert/soundalert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/sound-alert/soundalert.py -------------------------------------------------------------------------------- /python/statusmsg/statusmsg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/statusmsg/statusmsg.py -------------------------------------------------------------------------------- /python/teknik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/teknik/README.md -------------------------------------------------------------------------------- /python/teknik/teknik.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/teknik/teknik.py -------------------------------------------------------------------------------- /python/twitch_enhancements/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/twitch_enhancements/readme.md -------------------------------------------------------------------------------- /python/twitch_enhancements/twitch_enhancements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/twitch_enhancements/twitch_enhancements.py -------------------------------------------------------------------------------- /python/urbandictionary/urbandictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/python/urbandictionary/urbandictionary.py -------------------------------------------------------------------------------- /tcl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/README -------------------------------------------------------------------------------- /tcl/aliases/aliases.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/aliases/aliases.tcl -------------------------------------------------------------------------------- /tcl/firstmsg/firstmsg.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/firstmsg/firstmsg.tcl -------------------------------------------------------------------------------- /tcl/kb/kb.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/kb/kb.tcl -------------------------------------------------------------------------------- /tcl/nicksaid/nicksaid.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/nicksaid/nicksaid.tcl -------------------------------------------------------------------------------- /tcl/nickserv/nickserv.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/nickserv/nickserv.tcl -------------------------------------------------------------------------------- /tcl/notice/notice.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/notice/notice.tcl -------------------------------------------------------------------------------- /tcl/oper/oper-v1.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/oper/oper-v1.tcl -------------------------------------------------------------------------------- /tcl/pingme/pingme.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/pingme/pingme.tcl -------------------------------------------------------------------------------- /tcl/sounds/sounds.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/sounds/sounds.tcl -------------------------------------------------------------------------------- /tcl/tclplugin/tclplugin.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/tclplugin/tclplugin.tcl -------------------------------------------------------------------------------- /tcl/telnet/telnet.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/telnet/telnet.tcl -------------------------------------------------------------------------------- /tcl/uptime/uptime.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/uptime/uptime.tcl -------------------------------------------------------------------------------- /tcl/whois/whois-2.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/whois/whois-2.tcl -------------------------------------------------------------------------------- /tcl/whois/whois.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hexchat/hexchat-addons/HEAD/tcl/whois/whois.tcl --------------------------------------------------------------------------------