aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-10-25Update Perl 6 reference to RakurakuizePatrick Spek1-4/+4
This only updates the references in the code right now. Documentation should be updated at a later moment.
2019-04-12Merge pull request #62 from taboege/irc-addressed-false-positivesAleks-Daniel Jakimenko-Aleksejev1-3/+1
Fix irc-addressed false positives
2019-04-12Merge pull request #61 from Tyil/reply-no-prefixAleks-Daniel Jakimenko-Aleksejev4-4/+26
Add an option to not automatically prefix replies with a user's nick
2019-04-12Fix irc-addressed false positivesTobias Boege1-3/+1
Commit 3e585499 replaced a `subst-mutate` with a `.= subst` as a result of a v6.d deprecation. The surrounding code relied on the return value being falsy when no substitution took place. This was true for `subst-mutate` but isn't for `subst` which always returns the resulting string. In this case, this caused every PRIVMSG to fire an `irc-addressed` event. This is fixed by using s///, which mutates but returns the Match (or Nil).
2019-02-08Changes badgeJJ Merelo1-1/+1
2018-12-17Make auto-prefixing nicks optionalPatrick Spek2-4/+13
This patch adds the :autoprefix option, which is True by default. When set to False, the .reply method should no longer prefix the message with the triggering user's nick.
2018-12-17Add tyil to CONTRIBUTORSPatrick Spek1-0/+1
2018-12-17Add .editorconfigPatrick Spek1-0/+12
2018-12-15Update META6.jsonZoffix Znet1-1/+1
2018-12-15Merge pull request #60 from Tyil/connection-failed-reasonZoffix Znet1-1/+1
Add the reason for why the connection failed when :debug is True
2018-12-15Add the reason for why the connection failed when :debug is TruePatrick Spek1-1/+1
2018-10-13s/subst<(\-mutate//Zoffix Znet1-1/+1
2018-08-30Update META6.jsonZoffix Znet1-1/+1
2018-08-30Speed up arg quoting and search for all whitespaceZoffix Znet1-1/+5
2018-08-30send-cmd should prepend last arg with : only if /\s/ (#58)Summertime1-1/+1
* send-cmd should prepend last arg with : only if /\s/ ideally according to the IRC specifications, `:` is optional if the last argument to a command has no whitespace This is to help alleviate some difficulties in zoffixznet/perl6-banbot#2 I am not completely sure all servers agree with the IRC specification on `:` however! Hopefully this is safe enough change to make * send-cmd should prepend : if last arg has ^':' * changing last-arg of send-cmd handling to support RFC situations where a colon `:` needs to proceed the last argument: * the last argument is the empty string `''` * the last argument has a space `' '` in it * the last argument begins with a colon `:` Otherwise, other than PRIVMSG | NOTICE, some servers expect there to not be a colon to denote the last argument in some commands
2018-08-03Update META6.jsonZoffix Znet1-1/+1
2018-08-03Allow | in nicksZoffix Znet1-1/+1
2018-08-02Update Client.pm6Zoffix Znet1-1/+2
2018-07-04Add IRC::Client::Plugin to list of providablesZoffix Znet1-1/+2
2018-06-23Bump versionZoffix Znet1-1/+1
2018-06-23Merge pull request #57 from taboege/masterZoffix Znet1-2/+2
IRC::Client.send: use correct server in loop
2018-06-23IRC::Client.send: use correct server in loopTobias Boege1-2/+2
2018-02-06Update META6.jsonZoffix Znet1-1/+1
2018-02-06Ensure we don't try to serialize an Exception in $!Zoffix Znet1-0/+1
2018-01-17Update META6.jsonZoffix Znet1-1/+1
2018-01-17Update Server.pm6Zoffix Znet1-1/+1
2017-10-20Fix grammar bugZoffix Znet2-3/+3
Fixes #51 Fixes #53
2017-09-12Merge pull request #49 from Tyil/fix-spelling-mistakeZoffix Znet1-10/+10
Fix spelling mistake
2017-09-07Apply generic fixes to make it nicer to readPatrick Spek1-9/+9
2017-09-07Correct spelling mistake in 'singnals'Patrick Spek1-1/+1
2017-08-28Fix #48 for realzZoffix Znet2-2/+2
2017-08-28Fix crash when SSL option is not providedZoffix Znet3-3/+3
Fixes #48
2017-08-13Update META6.jsonZoffix Znet1-1/+1
2017-08-13Merge pull request #46 from the-eater/add-ssl-supportZoffix Znet3-2/+18
Add SSL support
2017-08-13Add SSL supporteater3-2/+18
2017-05-30Update .travis.ymlZoffix Znet1-2/+2
2017-05-30Fix colorizationZoffix Znet2-12/+4
2017-04-26Merge pull request #44 from samcv/SPDX-licenseZoffix Znet1-0/+1
Use SPDX identifier in license field of META6.json
2017-04-26Use SPDX identifier in license field of META6.jsonSamantha McVey1-0/+1
Use the standardized identifier for the license field. For more details see https://design.perl6.org/S22.html#license
2017-03-09Update META6.jsonZoffix Znet1-1/+1
2017-03-09Add tagsZoffix Znet1-0/+1
2016-12-16Remove download linkZoffix Znet1-1/+1
Since you're not meant to download it from GitHub
2016-12-15Merge pull request #34 from faraco/patch-2Zoffix Znet1-1/+1
hot fix
2016-12-15hot fixfaraco1-1/+1
I can't believe I missed the simplest missing SVG url to this repo. Fixed it.
2016-12-14Merge pull request #33 from faraco/patch-1Zoffix Znet1-1/+1
Update README.md
2016-12-14fix wrong urlfaraco1-1/+1
2016-12-14Update README.mdfaraco1-1/+1
2016-10-15Bump version3.006003Zoffix Znet2-2/+4
2016-10-15Fix numeric events being unsubscrabable due to incorrect identifiersZoffix Znet3-10/+45
Fixes #31
2016-09-04Suggest .args useZoffix Znet1-2/+6
Fixes #25