forked from henrich/nadoka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1542 lines (729 loc) · 36.2 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# ChangeLog of Nadoka($Rev: 256 $)
# $Id: ChangeLog 256 2011-09-28 13:15:00Z znz $
2011-09-28 Kazuhiro NISHIYAMA <[email protected]>
* plugins/translatebot.nb: merge patch from ko1_ndk.
support Bing Translator.
2011-09-15 Kazuhiro NISHIYAMA <[email protected]>
* plugins/opensearchbot.nb: split class and enabled to run on
command line for tests.
2011-08-16 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: bot return uri only, because cannot fetch
results from Google code search.
2011-08-15 Kazuhiro NISHIYAMA <[email protected]>
* plugins/opensearchbot.nb: add new bot.
2011-06-02 Kazuhiro NISHIYAMA <[email protected]>
* rice/irc.rb (RICE::Message::PATTERN::NICKNAME): nickname starts
with DIGIT may occur in split mode.
2010-12-14 Kazuhiro NISHIYAMA <[email protected]>
* plugins/tenkibot.nb: use same_bot? and clean up trailing spaces.
2010-12-14 Kazuhiro NISHIYAMA <[email protected]>
* plugins/tenkibot.nb (TenkiBot#tenki): cut after "...".
(TenkiBot#bot_initialize): use bot_init_utils.
2010-12-14 Kazuhiro NISHIYAMA <[email protected]>
* ndk/bot.rb (Nadoka::NDK_Bot#bot_init_utils): add new methods.
* plugins/googlebot.nb (GoogleBot#bot_initialize): use bot_init_utils.
2010-10-21 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: add ch_kcode. merge patch from ko1_ndk.
2010-10-21 Kazuhiro NISHIYAMA <[email protected]>
* ndk/server.rb (Nadoka::NDK_Server#server_main_proc): do not use
nick_succ when channel and retry join.
2010-10-21 Kazuhiro NISHIYAMA <[email protected]>
* plugins/translatebot.nb: added (contributed from SASADA Koichi)
2010-09-29 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc, plugins/autoawaybot.nb, plugins/autodumpbot.nb,
plugins/backlogbot.nb, plugins/dictbot.nb, plugins/modemanager.nb,
plugins/pastebot.nb, plugins/roulettebot.nb,
plugins/timestampbot.nb, plugins/xibot.nb, rice/irc.rb: CRLF -> LF.
2010-09-29 Kazuhiro NISHIYAMA <[email protected]>
* 0.7.5: released
* ndk/version.rb: 0.7.6
2010-09-28 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: add gime and gimed.
* plugins/googlebot.nb: use shortest match.
2010-09-13 Kazuhiro NISHIYAMA <[email protected]>
* plugins/dictbot.nb: use shortest match.
2010-09-06 NARUSE, Yui <[email protected]>
* plugins/twitterbot.nb: added.
* plugins/xibot.nb: added.
* plugins/backlogbot.nb: send message which matches pattern.
2010-08-18 Kazuhiro NISHIYAMA <[email protected]>
* rice/irc.rb: applied nurse's patch.
Update regexp of IPv6 address based on RFC3986.
2010-07-21 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc: update IPv6 Sample in Servers.
see http://www.ircnet.ne.jp/
2010-02-15 Kazuhiro NISHIYAMA <[email protected]>
* plugins/rss_checkbot.nb (RSS_CheckBot#send_notice): all
#send_notice should support Array in @ch.
* rice/irc.rb (RICE::Message#to_s): add recursive #to_s to avoid
"can't convert Array into String (TypeError)" in `<<'.
2010-01-28 Kazuhiro NISHIYAMA <[email protected]>
* ndk/server.rb (Nadoka::NDK_Server#set_signal_trap): merge patch
from n0kada. http://www.atdot.net/sp/view/dswxwk
2010-01-25 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc: update Servers.
see http://www.wide.ad.jp/news/press/20100125-IRC-server-close-j.html
and http://www.ircnet.ne.jp/ .
2010-01-01 Koichi Sasada <[email protected]>
* plugins/googlebot.nb: support new searcher calc and code.
* plugins/googlebot.nb: support abbreviated syntax (ex: g> ).
2009-11-30 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc: update Servers.
see http://twitter.com/ircnet_fujisawa/status/6185537849 for irc6.fujisawa.wide.ad.jp,
and http://en.wikipedia.org/wiki/IRCd says most often used port for SSL is 6697.
2009-11-08 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc: update Servers.
see http://slashdot.jp/it/article.pl?sid=09/11/06/0747210
2009-10-23 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: fallback to json gem.
2009-09-22 Kazuhiro NISHIYAMA <[email protected]>
* ndk/server.rb (Nadoka::NDK_Server#server_main_proc): support
RPL_ISUPPORT.
2009-09-22 Kazuhiro NISHIYAMA <[email protected]>
* ndk/error.rb: add Nadoka::NDK_InvalidMessage.
* ndk/server.rb (Nadoka::NDK_Server#send_to_server): check [\r\n].
2009-09-21 Kazuhiro NISHIYAMA <[email protected]>
* rice/irc.rb: remove magic comment. ruby 1.9.2 works without it.
2009-09-21 Kazuhiro NISHIYAMA <[email protected]>
* 0.7.2: released
* ndk/version.rb: bumped version to 0.7.5.
2009-09-17 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: use hl because lr used by web searcher only.
2009-09-17 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: support more searcher of Google AJAX
Search API.
2009-09-17 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: use Google AJAX Search API.
see http://code.google.com/intl/ja/apis/ajaxsearch/ for detail.
2009-09-14 Kazuhiro NISHIYAMA <[email protected]>
* plugins/googlebot.nb: Google SOAP Search API (No Longer Available).
see http://code.google.com/intl/ja/apis/soapsearch/ and
http://googlecode.blogspot.com/2009/08/well-earned-retirement-for-soap-search.html
2009-08-21 Kazuhiro NISHIYAMA <[email protected]>
* nadoka.rb, ndk/server.rb: revert previous change, and use ?\x1
instead.
2009-08-21 Kazuhiro NISHIYAMA <[email protected]>
* nadoka.rb, ndk/server.rb: handle ctcp on ruby 1.9.
2009-08-18 Kazuhiro NISHIYAMA <[email protected]>
* nadoka.rb, ndk/config.rb, rice/irc.rb: ruby 1.9 support (not
completed yet). apply patch from unak.
2009-08-17 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc, ndk/config.rb, ndk/server.rb: no listen when
Client_server_port is nil.
2009-08-17 Kazuhiro NISHIYAMA <[email protected]>
* plugins/tenkibot.nb: omit empty min celsius.
2009-07-29 Kazuhiro NISHIYAMA <[email protected]>
* lib/rss_check.rb: update lirs_uri.
2009-07-29 Kazuhiro NISHIYAMA <[email protected]>
* 0.7.1 : released
* ndk/version.rb : 0.7.2
2009-07-27 Kazuhiro NISHIYAMA <[email protected]>
* nadoka.rb: add --daemon option. (apply patch from unak)
2009-07-04 Kazuhiro NISHIYAMA <[email protected]>
* plugins/dictbot.nb: avoid nkf bug.
add waei as w, ruigo as r.
new yahoo dict URI. (apply patch from ko1_ndk)
* plugins/googlebot.nb: quote splited words. (apply patch from ko1_ndk)
2009-07-01 Kazuhiro NISHIYAMA <[email protected]>
* rice/irc.rb: @conn[0] may be nil.
2009-05-25 Kazuhiro NISHIYAMA <[email protected]>
* ndk/config.rb, ndk/server.rb: add Primitive_Filter
to filter any commands. (apply patch from unak)
2009-05-20 Kazuhiro NISHIYAMA <[email protected]>
* plugins/identifynickserv.nb: added.
2009-05-20 Kazuhiro NISHIYAMA <[email protected]>
* ndk/bot.rb, ndk/server.rb: add on_server_connected.
2009-04-16 Kazuhiro NISHIYAMA <[email protected]>
* nadokarc, ndk/config.rb, ndk/server.rb, rice/irc.rb: support SSL.
Wed Mar 19 19:46:52 2008 Kazuhiro NISHIYAMA <[email protected]>
* ndk/logger.rb : pass ch to msgobj from clog.
* ndk/config.rb : unify safe channel log filename.
Mon Jul 23 01:07:08 2007 Kazuhiro NISHIAYMA <[email protected]>
* lib/rss_check.rb : bug fix when dc_date is nil.
* ndk/config.rb : fix bug when non-Hash in BotConfig array.
Mon Jul 02 19:01:04 2007 Koichi Sasada <[email protected]>
* plugins/tenkibot.nb : fix output format detail.
* plugins/googlebot.nb : fix to retry 5 times if error is
occurred while google search.
* plugins/dictbot.nb : fix to show short summary.
2007-07-02(Mon) 18:01:58 +0900 Kazuhiro NISHIAYMA <[email protected]>
* rice/irc.rb : allow trailing "." in HOSTNAME (for NickServ
on Freenode)
2007-02-20(Tue) 23:35:41 +0900 Kazuhiro NISHIAYMA <[email protected]>
* **/*.rb, plugins/*.nb : fix typos
2006-10-28(Sat) 22:08:11 +0900 Kazuhiro NISHIAYMA <[email protected]>
* ndk/server_state.rb : fix bug on_mode after server split
2006-10-20(Fri) 22:22:07 +0900 Kazuhiro NISHIAYMA <[email protected]>
* ndk/bot.rb : new method ccn2rcn
2006-10-07(Sat) 03:52:11 +0900 Koichi Sasada <[email protected]>
* plugin/tenkibot.nb : added
2006-10-02(Mon) 21:58:40 +0900 Koichi Sasada <[email protected]>
* 0.7.0 : released
* ndk/version.rb : 0.7.1
2006-10-02(Mon) 21:41:24 +0900 Koichi Sasada <[email protected]>
* plugins/weatherbot.nb : removed
* plugins/sendpingbot.nb : added
* ndk/client.rb : modified for pingbot
* ndk/server.rb : ditto
2006-09-01(Fri) 02:04:15 +0900 Kazuhiro NISHIAYMA <[email protected]>
* ndk/bot.rb : support send to a safe channel
* nadokarc : fix misalignment
2006-08-31(Thu) 01:40:39 +0900 Kazuhiro NISHIAYMA <[email protected]>
* ndk/bot.rb : fix typos
2006-08-11(Fri) 14:45:01 +0900 Koichi Sasada <[email protected]>
* plugins/gonzuibot.nb : add a comma
* plugins/pastebot.nb : add nick to paste page name
* plugins/googlebot.nb : fix show_char_code_and_erace_tag
2006-05-16(Tue) 16:16:30 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : handle TERM signal
2006-03-27(Mon) 19:50:27 +0900 Koichi Sasada <[email protected]>
* plugins/dictbot.nb : fix dict index
* plugins/roulettebot.nb : added
* rice/irc.rb : loosen nick regexp
* ndk/server.rb : randomize server if serching next server
2005-09-30(Fri) 00:05:19 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix bugs
* plugins/dictbot.nb : support
* plugins/gonzuibot.nb : added
* ndk/config.rb : fix bugs
2005-06-25(Sat) 19:02:24 +0900 Koichi Sasada <[email protected]>
* nadoka.rb : output error information to file
'nadoka_fatal_error' when unhandled error is occure (bug)
2005-06-14(Tue) 21:26:07 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : change reloaded message output method to slog
2005-06-13(Mon) 18:25:33 +0900 Koichi Sasada <[email protected]>
* nadokarc, ndk/logger.rb, ndk/config.rb : support
:channel_name_in_file_name option for logging
2005-06-13(Mon) 00:11:39 +0900 Koichi Sasada <[email protected]>
* ndk/server_state.rb : fix typo
* ndk/config.rb : see ENV['LANG'] to decide filename encoding
* ndk/version.rb : fix version format
* ndk/bot.rb : fix comment
2005-06-10(Fri) 04:38:25 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : fix logic operation
2005-06-09(Thu) 17:22:25 +0900 Koichi Sasada <[email protected]>
* ndk/logger.rb : synchronize IOLogWriter output
2005-06-09(Thu) 17:18:21 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb : set default file encoding to EUC
2005-06-09(Thu) 05:11:58 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb : fix to get FilenameEncoding
* ndk/server.rb : stop away message until server connection
2005-06-08(Wed) 07:56:17 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb : clear if channel setting is not hash
2005-06-08(Wed) 07:42:17 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix to use count default language
2005-06-08(Wed) 06:21:25 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : trap IOError and change error output
* ndk/config.rb : support {prefix:(nick|user|host)} specifier
* ndk/logger.rb : {user} -> {nick}
* nadokarc : apply above changes
* rice/irc.rb : output unless port is closed
* plugins/backlogbot.nb : change spell (@store -> @stores)
2005-06-05(Sun) 22:47:15 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : PONG MISS message dlog -> slog
2005-05-31(Tue) 14:08:26 +0900 Koichi Sasada <[email protected]>
* nadokarc : change log setting of "#nadoka_check"
2005-05-29(Sun) 14:01:02 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb, ndk/server_state.rb, ndk/logger.rb :
NICK and QUIT logging from server_state
* nadokarc, ndk/config.rb : change default PART, QUIT message format
2005-05-29(Sun) 12:53:48 +0900 Koichi Sasada <[email protected]>
* plugins/weba.nb : set default password on
* ndk/logger.rb : fix nick logging
2005-05-29(Sun) 07:06:55 +0900 Koichi Sasada <[email protected]>
* plugins/weba.nb : use logger's message store
* ndk/logger.rb, ndk/config.rb : some changes for weba
* nadokarc : add vim pragma and FilenameEncoding setting
* ndk/client.rb, ndk/server.rb : fix logger relaod process
* ndk/server_state.rb : add channel_raw_names
2005-05-29(Sun) 03:35:28 +0900 Koichi Sasada <[email protected]>
* nadokarc : add BackLogBot as default bot
2005-05-29(Sun) 03:31:07 +0900 Koichi Sasada <[email protected]>
* ndk/server.rb : add @rc read accessor
* nadokarc, ndk/config.rb : support default setting_name
as rc file name
2005-05-29(Sun) 03:04:53 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb : support filename encoding(utf-8)
2005-05-29(Sun) 02:49:12 +0900 Koichi Sasada <[email protected]>
* ndk/server_state.rb, ndk/config.rb, ndk/logger.rb :
new logging scheme is added
* nadokarc : add indent and log detail setting
* plugins/backlogbot.nb : use logger's message store
2005-05-27(Fri) 21:32:35 +0900 Koichi Sasada <[email protected]>
* nadokarc : comment out Quit_Message and change
Default_log, Log_TimeFormat setting
* ndk/client.rb : fix welcome message
* ndk/config.rb : change Default_log, System_log path,
Log_TimeFormat and add Log_MessageFormat.
2005-05-26(Thu) 22:11:48 +0900 Koichi Sasada <[email protected]>
* plugins/autodumpbot.nb, plugins/sixamobot.nb :
change copyright year
2005-05-26(Thu) 22:07:15 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb : fix a bug
2005-05-26(Thu) 21:51:10 +0900 Koichi Sasada <[email protected]>
* nadokarc : change default quit message
2005-05-26(Thu) 21:45:49 +0900 Koichi Sasada <[email protected]>
* nadokarc : fix ACL comment
2005-05-26(Thu) 21:42:29 +0900 Koichi Sasada <[email protected]>
* plugins/backlogbot.nb : fix configuration example
2005-05-26(Thu) 21:24:50 +0900 Koichi Sasada <[email protected]>
* log/.deleteme : remove
2005-05-26(Thu) 21:23:03 +0900 Koichi Sasada <[email protected]>
* plugins/weatherbot.nb : add parentheses
* plugins/rss_checkbot.nb : add configuration :over_message
2005-05-26(Thu) 21:03:24 +0900 Koichi Sasada <[email protected]>
* some files : change copyright year
2005-05-26(Thu) 20:52:32 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix plural support bug
2005-05-26(Thu) 20:27:16 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix configuration example
and support plural
* plugins/rss_checkbot.nb : change bot_state format and
separate rss check function
* lib/rss_check.rb : return failed information if
exception is raised
2005-05-26(Thu) 11:21:31 +0900 Koichi Sasada <[email protected]>
* ndk/bot.rb : some refactoring
2005-05-26(Thu) 10:53:40 +0900 Koichi Sasada <[email protected]>
* plugins/autoawaybot.nb : add configuration example
and some refactoring
2005-05-26(Thu) 10:44:33 +0900 Koichi Sasada <[email protected]>
* plugins/timestampbot.nb : add :client configuration
(if true, output timestamp to clients. default: false)
2005-05-26(Thu) 10:37:29 +0900 Koichi Sasada <[email protected]>
* plugins/timestampbot.nb : fix configuration example
2005-05-26(Thu) 10:29:16 +0900 Koichi Sasada <[email protected]>
* plugins/message.nb => plugins/messagebot.nb
* plugins/autoaway.nb => plugins/autoawaybot.nb
* plugins/autodump.nb => plugins/autodumpbot.nb
* plugins/sixamo.nb => plugins/sixamobot.nb
* plugins/mailcheck.nb => plugins/mailcheckbot.nb
* plugins/sixamobot.nb : fix configuration example
2005-05-26(Thu) 10:18:18 +0900 Koichi Sasada <[email protected]>
* plugins/rss_check.nb => plugins/rss_checkbot.nb,
* plugins/cron.nb => plugins/cronbot.nb
* plugins/mailcheck.nb, plugins/modemanager.nb, plugins/weba.nb,
plugins/drbot.nb, plugins/rss_checkbot.nb : fix configuration example
2005-05-26(Thu) 02:35:09 +0900 Koichi Sasada <[email protected]>
* ndk/version.rb : 0.7.0
2005-05-25(Wed) 14:22:32 +0900 Koichi Sasada <[email protected]>
* ndk/config.rb, nadokarc : change bot configuration format
(BotConfig format)
* ndk/config.rb : Nadoka::require is supported
(if reload configuration, required files by Nadoka::require are cleared)
* ndk/bot.rb : BotClass (Array) => BotClasses (Hash (name => body))
* plugins/googlebot.nb : fix setting description
and fix google_key file path search logic
* plugins/dict_bot.nb => plugins/dictbot.nb
* plugins/backlogbot.nb : fix setting description
2005-05-22(Sun) 23:40:28 +0900 Koichi Sasada <[email protected]>
* plugins/dict_bot.nb : /dic(.)>.../ => /\Adic(.)>.../
* plugins/googlebot.nb : remove words in results
* plugins/pastebot.nb : support fpaste
2005-05-22(Sun) 23:28:53 +0900 Koichi Sasada <[email protected]>
* ndk/logger.rb : support directory auto generation
2005-05-22(Sun) 01:53:38 +0900 Koichi Sasada <[email protected]>
* nadoka/ : mkdir
* lib/ : mkdir
* ndk_*.rb : move to nadoka/ and change require path
* tagparts.rb, rss_check.rb : move to lib/ and change require path
* ndk_manager.rb (NDK_Manager) : move to ndk/server.rb and rename NDK_Server
* ndk_err.rb : move to ndk/error.rb
2005-03-15(Tue) 17:30:25 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : re-fix state management
2005-03-04(Fri) 16:28:18 +0900 Koichi Sasada <[email protected]>
* 0.6.4 released
* ndk_version.rb : 0.6.5
2005-03-04(Fri) 13:23:37 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : fix server message pattern
2005-01-20(Thu) 23:15:33 +0900 Koichi Sasada <[email protected]>
* nadokarc : fix typo
2004-12-20(Mon) 20:15:03 +0900 Koichi Sasada <[email protected]>
* plugins/weatherbot.nb : change unkown region error message
and ignore region's case
2004-12-20(Mon) 20:04:53 +0900 Koichi Sasada <[email protected]>
* plugins/weatherbot.nb : strip region name
2004-12-20(Mon) 19:53:18 +0900 Koichi Sasada <[email protected]>
* plugins/dict_bot.nb, plugins/pastebot.nb, plugins/weatherbot.nb
added (test version)
2004-12-03(Fri) 14:45:19 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : fix again (patched by U.Nakamura)
2004-12-03(Fri) 13:59:48 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : fix bug about mode change by server
* plugins/modemanager.rb : fix bug to detect mode
2004-11-24(Wed) 13:20:17 +0900 Koichi Sasada <[email protected]>
* plugins/autodump.nb : fix bug (apply patch from shugo)
2004-08-25(Wed) 15:00:49 +0900 Koichi Sasada <[email protected]>
* nadokarc : fix bug(add ',')
2004-08-20(Fri) 18:48:36 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix googlec prompt
2004-08-19(Thu) 01:17:13 +0900 Koichi Sasada <[email protected]>
* nadokarc : add '#nadoka' channel setting
2004-08-19(Thu) 01:12:03 +0900 Koichi Sasada <[email protected]>
* plugins/autoaway.nb : fix bug(add condition at on_timer)
2004-08-16(Mon) 13:07:15 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb, ndk_manager.rb : fix kick bug([nadoka:271])
2004-08-14(Sat) 21:24:28 +0900 Koichi Sasada <[email protected]>
* plugins/modemanager.nb : fix mode check routine(match -> include?)
2004-08-13(Fri) 11:04:36 +0900 Koichi Sasada <[email protected]>
* 0.6.3 released
* ndk_version.rb : 0.6.4
2004-08-13(Fri) 10:18:03 +0900 Koichi Sasada <[email protected]>
* plugins/modemanager.nb : fix bug
* plugins/autodump.nb : added
* plugins/*.nb : fix hash access([] to fetch(key, default)).
2004-08-13(Fri) 10:04:26 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : fix enbug
* nadokarc : change default channel and fix typo
* plugins/drbot.nb : fix configuration example's bug
* plugins/sixamo.nb : fix typo
2004-08-05(Thu) 08:25:48 +0900 Koichi Sasada <[email protected]>
* ndk_state.rb : fix some bugs
2004-08-02(Mon) 07:51:51 +0900 Koichi Sasada <[email protected]>
* ndk_client.rb : fix pong message field
* ndk_state.rb : fix on_quit process
* plugins/modemanager.nb : don't set mode if already set
2004-07-28(Wed) 05:07:00 +0900 Koichi Sasada <[email protected]>
* plugins/google.nb : support gooo*gle
2004-07-27(Tue) 11:16:05 +0900 Koichi Sasada <[email protected]>
* plugins/ndk_client.rb : fix typo
2004-07-26(Mon) 02:13:58 +0900 Koichi Sasada <[email protected]>
* plugins/backlogbot.nb : fixed a bug
* plugins/modemanager.nb : applied unak's patch
(support delaied distribution, and so on)
* ndk_client.rb : fix exception handling
2004-07-24(Sat) 21:26:30 +0900 Koichi Sasada <[email protected]>
* plugins/modemanager.nb : added
2004-07-24(Sat) 07:30:10 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : fix server login process(reconnect
if server replies error)
* ndk_manager.rb, ndk_state.rb : support 'KICK' state
* ndk_manager.rb, ndk_staet.rb : support safe channel
* plugins/backlogbot.nb : fix around safe channel bugs
* plugins/googlebot.nb(googlec) : fix charcode problem
2004-07-21(Wed) 19:17:13 +0900 Koichi Sasada <[email protected]>
* ndk_bot.rb(canonical_channel_name) : added
and this alias 'ccn' is added
* ndk_state.rb : rename channel_member to channel_users
and channel_member_mode to channel_user_mode
2004-07-21(Wed) 00:57:44 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : part only from own nick when server
disconnect
2004-07-20(Tue) 11:33:46 +0900 Koichi Sasada <[email protected]>
* 0.6.2 release
* ndk_version.rb : 0.6.3
2004-07-20(Tue) 04:06:17 +0900 Koichi Sasada <[email protected]>
* ndk_client.rb : use NdkCommandDescription to list
items
* ndk_config.rb(identical_channel_name) : add euc-jp option to regexp
2004-07-20(Tue) 02:23:35 +0900 Koichi Sasada <[email protected]>
* plugins/sixamo.nb : change talk ratio algorithm
2004-07-20(Tue) 02:23:35 +0900 Koichi Sasada <[email protected]>
* plugins/sixamo.nb : fix talk ratio algorithm
2004-07-20(Tue) 02:18:01 +0900 Koichi Sasada <[email protected]>
* plugins/sixamo.nb : down talk rate and memorize his
talk
2004-07-20(Tue) 02:00:45 +0900 Koichi Sasada <[email protected]>
* ndk_logger.rb : synchronize IO object output
2004-07-20(Tue) 01:48:45 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : fix invoke time event timing
2004-07-20(Tue) 00:37:02 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : add @pong_fail_count and MAX_PONG_FAIL
to check server response
* ndk_client.rb : fix usage 100% problem(remove Thread.pass
and ignore message when server connection is closed)
2004-07-19(Mon) 22:10:05 +0900 Koichi Sasada <[email protected]>
* 0.6.1 releaseds
* ndk_version.rb : 0.6.2
2004-07-19(Mon) 21:52:27 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : TimerIntervalSec to 60
2004-07-19(Mon) 21:40:17 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : fix time thread timing
* ndk_manager.rb : fix SIGINT hook
* ndk_version.rb : remove debug code
2004-07-19(Mon) 21:00:21 +0900 Koichi Sasada <[email protected]>
* 0.6.0 released
* ndk_version.rb : 0.6.1
2004-07-19(Mon) 20:59:11 +0900 Koichi Sasada <[email protected]>
* plugins/mailcheck.nb : updated from
http://cvs.sourceforge.jp/cgi-bin/viewcvs.cgi/ruexli/nadoka-plugins/
2004-07-19(Mon) 19:50:40 +0900 Koichi Sasada <[email protected]>
* rice/irc.rb : support long nick
* ndk_manager.rb : fix time event invoke timing
* ndk_logger.rb(slog, clog, write_log) : add nostamp option
* plugins/timestampbot.nb
2004-07-17(Sat) 00:06:54 +0900 Koichi Sasada <[email protected]>
* plugins/googlebot.nb : fix char code bugs
* ndk_manager.rb : trap SIGINT to quit program
* ndk_client.rb : add exception hook to protect unexpected
disconnect
2004-07-14(Wed) 04:29:47 +0900 Koichi Sasada <[email protected]>
* ToDo : removed
* README : fix url
2004-07-14(Wed) 04:27:53 +0900 Koichi Sasada <[email protected]>
* ndk_manager.rb : fix exception handling
2004-07-14(Wed) 04:03:27 +0900 Koichi Sasada <[email protected]>
* ndk_config.rb : add DefaultBotFiles
* ndk_config.rb : ch_config(ch, key) is added
* ndk_config.rb(make_bot_instance) : logging message to bot_state
* ndk_manager.rb : fix error recovery process(set @connected to false)
* plugins/backlogbot.nb : fix some bugs
(user to user messages and so on)
* plugins/weba.nb : fix configuration example's bug
2004-07-12(Mon) 16:51:24 +0900 Koichi Sasada <[email protected]>
* ndk_version.rb : add rev to version string if this in trunk
2004-07-12(Mon) 16:39:59 +0900 Koichi Sasada <[email protected]>
* ChangeLog : add rev keyword
2004-07-11(Sun) 11:37:14 +0900 Koichi Sasada <[email protected]>
* plugins/backlogbot.nb : fix schemes
2004-07-10(Sat) 22:48:35 +0900 Koichi Sasada <[email protected]>