1
0
mirror of https://github.com/deavmi/birchwood synced 2024-09-20 06:23:15 +02:00

New test shows the server name here could be anything so we have a working basic prototype (v0.0.1 onwards)

This commit is contained in:
Tristan B. Velloza Kildaire 2022-11-01 14:08:04 +02:00
parent 9a2f3b17ba
commit a4b2862e81
2 changed files with 7 additions and 2 deletions

View File

@ -13,6 +13,11 @@
<br> <br>
<br> <br>
```
[13:51:00] <zh_> A sane IRC framework for the D language
[13:51:11] <zh_> s/sane/professional
```
## Installation ## Installation
To add birchwood to your project simply run: To add birchwood to your project simply run:
@ -27,7 +32,7 @@ TODO:
## TODO ## TODO
- [ ] Server name saving so it automatically uses it in replies where it needs to (currently hardcoded to freenode for testing reasons) - [ ] Automatic learning of things like server name, caps (if received etc)
- [ ] Request-response support (waiting/promises) - [ ] Request-response support (waiting/promises)
## License ## License

View File

@ -575,7 +575,7 @@ public class Client
import core.thread; import core.thread;
Thread.sleep(dur!("seconds")(2)); Thread.sleep(dur!("seconds")(2));
this.socket.send((cast(ubyte[])"USER doggie doggie irc.freenode.net :Tristan B. Kildaire")~[cast(ubyte)13, cast(ubyte)10]); this.socket.send((cast(ubyte[])"USER doggie doggie irc.frdeenode.net :Tristan B. Kildaire")~[cast(ubyte)13, cast(ubyte)10]);
yes=false; yes=false;
} }