OSDN Git Service

Added a new feature, LoggingObserver, which logs a result of each game.
[shogi-server/shogi-server.git] / changelog
1 2009-11-10 Daigo Moriwaki <daigo at debian dot org>
2
3         * [shogi-server]
4           - The server logs a result of each game to a file named '00LIST',
5             which will be used to generate players.yaml. If the file does
6             not exist, the server will create one automatically.
7             Instruction to use the game result list file:
8             1. Make a list of game results from exisiting CSA files with
9                mk_game_results
10                % ./mk_game_results dir_of_csa_files > 00LIST
11             2. Run the server. It appends a result of each game to
12                '00LIST' when the game finishes.
13             3. From the list of game results, calcurate rating scores of
14                players.
15                % ./mk_rate 00LIST > players.yaml
16
17 2009-11-08 Daigo Moriwaki <daigo at debian dot org>
18
19         * [mk_rate]
20           - Split a pre-process collecting game results from csa files into
21             a new command, mk_game_results. Now, Generating players.yaml
22             requires two steps as follows:
23               % ./mk_game_results dir_of_csa_files > 00LIST
24               % ./mk_rate 00LIST > players.yaml
25               or
26               % ./mk_game_results dir_of_csa_files | ./mk_rate > players.yaml 
27             (Closes: #19454)
28
29 2009-08-06 Daigo Moriwaki <daigo at debian dot org>
30
31         * [shogi-server]
32           - A experimental new feature, codenamed Buoy: it allows players to
33             play a game starting with a specified position. First, a player
34             sets a buoy game with moves to a specific position. Then, two
35             players can play a new game with the game name.
36             New commands:
37             + %%SETBUOY <game_name> <moves> [count]
38               Set a new buoy game.
39               ex. %%SETBUOYGAME buoy_foo-900-0 +7776FU 10
40               ex. %%SETBUOYGAME buoy_foo-1500-0 +7776FU-3334FU
41               - game_name is a valid game name with a prefix "buoy_".
42               ex. buoy_foo-900-0
43               - moves are initial moves from the Hirate position to a
44               spcific position that you want to start with.
45               ex. +7776FU-3334FU+8786FU
46               - count is an optional attribute to tell how many times the
47               game can be played (default 1). The count is decremented
48               when the game finishes. If the count reaches zero, the buoy
49               game is removed automatically by the server.
50               ex. 10
51             + %%DELETEBUOY <game_name>
52               Delete a buoy game. The only owner who set up the game is
53               allowed to delete it.
54               ex. %%DELETEBUOY buoy_foo-900-0
55               - game_name is the buoy game name that was created.
56             + %%GETBUOYCOUNT <game_name>
57               Show a current count of the buoy game or -1 for non-existing
58               games.
59
60
61 2009-07-11 Daigo Moriwaki <daigo at debian dot org>
62
63         * [shogi-server]
64           - shogi_server/command.rb: refactored commands out of player.rb.
65
66 2009-06-18 Daigo Moriwaki <daigo at debian dot org>
67
68         * [shogi-server]
69           - An emtpy floodgate_history.yaml caused a server error. This
70             issue has been fixed. 
71             (Closes: #15124)
72
73 2009-06-17 Daigo Moriwaki <daigo at debian dot org>
74
75         * [shogi-server]
76           - If a new game matched between two players is not started within
77             a certain time (default 120 seconds) (i.e. the agree_waiting or
78             start_waiting state lasts too long), the Server REJECTs the game.
79             (Closes: #14425)
80
81 2009-06-15 Daigo Moriwaki <daigo at debian dot org>
82
83         * [shogi-server]
84           - When a Gote player AGREEd a new game and then a Sente player
85             logged out (LOGOUT), the Gote incorrectly received a LOGOUT message 
86             from the server. Since Gote's state was not AGREEd or STARTed yet,
87             the Gote should be REJECTed. This issue has been fixed. 
88             (Closes: #17335)
89
90 2009-06-14 Daigo Moriwaki <daigo at debian dot org>
91
92         * [shogi-server]
93           - The Board could not recognize a certain pattern of
94             Oute-Sennichite. This issue has been fixed.
95             (Closes: #13966)
96
97 2009-03-22 Daigo Moriwaki <daigo at debian dot org>
98
99         * [utils/correct-bug14635.rb]
100           - Added a new file. This program corrects illegal lines introduced
101             by the #14635 bug.
102
103 2009-03-07 Daigo Moriwaki <daigo at debian dot org>
104
105         * [csa-file-filter]
106           - Improved performance.
107
108 2009-02-15 Daigo Moriwaki <daigo at debian dot org>
109
110         * [shogi-server]
111           - A duplicated comment that is the one of the previous (or older)
112             move might be erroneously recorded in a csa file. This issue has 
113             been fixed. (Closes: #15080)
114
115 2009-02-11 Daigo Moriwaki <daigo at debian dot org>
116
117         * [utils/csa-filter.rb]
118           - Added a new file. This program filters CSA files.
119
120 2009-02-01 Daigo Moriwaki <daigo at debian dot org>
121
122         * [shogi-server]
123           - The shogi-server records csa files of games in an illegal
124             format. This issue has been fixed. (Closes: #14635)
125           - A ##[MONITOR] command for showing a game result such as %TORYO
126             was not correct. This issue has been fixed.  
127
128 2009-01-13 Daigo Moriwaki <daigo at debian dot org>
129
130         * [shogi-server]
131           - It failed to proccess a game result, OuteKaihiMoreWin where a
132             checked king does not escape. This issue has been fixed.
133
134 2009-01-02 Daigo Moriwaki <daigo at debian dot org>
135
136         * [shogi-server]
137           - shogi_server/timeout_queue.rb: the timeout parameter of the
138             constructor was not respected erroneously. This issue
139             has been fixed.
140           - shogi_server/players.rb: When a player was finishing with its
141             write socket broken, there was a chance that the thread of the
142             player in the giant lock had to wait for a long time (about 20
143             seconds), which might cause threads of other players stop and 
144             time out. (Closes: #14469)
145
146 2008-12-30 Daigo Moriwaki <daigo at debian dot org>
147
148         * [mk_html]
149           - Added a new option: --footer filename, which inserts contents of 
150             the filename at the bottom of a genrated page. A text specific to 
151             wdoor should be written by using this option. 
152             (Closes: #14470)
153           - It does no more depend on RDoc. RDoc::usage does not work well
154             (due to RDoc).
155
156 2008-12-28 Daigo Moriwaki <daigo at debian dot org>
157
158         * [mk_rate]
159           - Check kifu files more carefully so that files that contain
160             incomplete records are skipped.
161           - mk_rate might have failed to alloc due to out of memory. Now it
162             consumes less memory (about 200MB instead of 2GB).
163           - File names can be put into STDIN instead of specifying directory
164             names in command line arguments.
165         * [csa-file-filter]
166           - New file. It filters kifu files and is of use for a pre-filter
167             of mk_rate.
168
169 2008-12-13 Daigo Moriwaki <daigo at debian dot org>
170
171         * [shogi-server]
172           - Improved an existance check and etc. of directories specified
173             by command line options, expecially in case of the daemon mode. 
174             (Closes: #14244)
175           - A lotated log file is moved to $topdir/YYYY/MM/DD.
176             (Closes: #14245)
177
178 2008-11-27 Daigo Moriwaki <daigo at debian dot org>
179
180         * [shogi-server]
181           - Added sample/*.sh for command line samples.
182
183 2008-11-24 Daigo Moriwaki <daigo at debian dot org>
184
185         * [shogi-server]
186           - Added a new option --floodgate-history, which allows users to
187             specify a file name that stores the records of games. The
188             records are taken care of when games are matched.
189
190 2008-10-18 Daigo Moriwaki <daigo at debian dot org>
191
192         * [utils/eval_graph.rb]
193           - Display time control graphs as well.
194             Thanks to Nishimura-san for this idea.
195             (Closes: #13678)
196
197 2008-10-08 Daigo Moriwaki <daigo at debian dot org>
198
199         * [shogi-server]
200           - Ruby 1.8.7 (or later) must be used. Ruby 1.8.6 is not supported.
201           - Daemon mode is available.
202           - shogi_server/piece_ky.rb is again merged with
203             shogi_server/piece.rb, then has been removed.  
204           - Added a test case, TC_usi.rb.
205
206 2008-06-30 Daigo Moriwaki <daigo at debian dot org>
207
208         * [shogi-server]
209           - Added a new option --player-log-dir, which allows users to log
210             messages that are received or sent to the wire.
211
212 2008-06-28 Daigo Moriwaki <daigo at debian dot org>
213
214         * [shogi-server]
215           - A rating comment line is now written before the first move in a
216             record file instead of after the last move, which allows other
217             applications watching a game to recognize players in the middle 
218             of the game. (Closes #12821)
219           - If a player, including a monitor, stuck at the time of sending
220             messages to the wire, which means that the giant lock was locked,
221             it might have prevented other players from processing until
222             timeout occurred. This issue has been fixed. (Closes #12555)
223
224 2008-06-27 Daigo Moriwaki <daigo at debian dot org>
225
226         * [shogi-server]
227           -  Pairing players might not have shuffled players because of
228              poor shuffling algorithm. This issue has been fixed.
229              (Closes: #12661)
230
231 2008-06-25 Daigo Moriwaki <daigo at debian dot org>
232
233         * [players_graph.rb]
234           - Check invalid arguments. (Closes: #12856)
235
236 2008-06-23 Daigo Moriwaki <daigo at debian dot org>
237
238         * [mk_rate]
239           - Added a new option: --fixed-rate and --fixed-rate-player
240             whose rate always results in that rate. (Closes: #12800)
241
242 2008-06-06 Daigo Moriwaki <daigo at debian dot org>
243
244         * [shogi-server]
245           - The source has been splited to multiple sub files.
246           - The program now depends on rubygems and activesupport.
247           - The program can reload the source files on the flight, by
248             sending a HUP signal to the server.
249           - The server log will be rotated daily.
250
251 2008-05-18 Daigo Moriwaki <daigo at debian dot org>
252
253         * [shogi-server]
254           - Last game results (win or lose) of x1 players were not
255             available on the next game. This issue has been fixed.
256             Thanks to Tomoyuki Kaneko for debugging.
257           - For draw games, "'rating" line in a .csa file was 
258             wrong (meaningless). This issue has been fixed.
259
260 2008-05-16 Daigo Moriwaki <daigo at debian dot org>
261
262         * [news]
263           - The repository has been converted from CVS to Subversion.
264
265 2008-05-13 Daigo Moriwaki <daigo at debian dot org>
266
267         * [shogi-server]
268           - Floodgate's thread could cause an error when players.yaml was
269             cleared by another program (mk_rate). This issue has been 
270             fixed.
271           - Give default values to BasicPlayer, which fixed undefined 
272             method error in Pairing.
273
274 2008-05-10 Daigo Moriwaki <daigo at debian dot org>
275
276         * [shogi-server]
277           - The server could not recognize uchifuzume as an illegal move.
278             This bug has been fixed.
279           - The server crashed by an undefined method error.
280             This issue has been fixed.
281
282 2008-05-05 Daigo Moriwaki <daigo at debian dot org>
283
284         * [shogi-server]
285           - .csa files will be located in a sub directory such as
286             "2008/05/05/*.csa". Thease days, we have many games in a day. 
287             This change will help users browse a file list.
288
289 2008-05-03 Daigo Moriwaki <daigo at debian dot org>
290
291         * [mk_html]
292           - Show players who have accessed in the last 30 minutes with 
293             different colors.
294
295 2008-04-22 Daigo Moriwaki <daigo at debian dot org>
296
297         * [mk_html]
298           - When YSS was not rated on the wdoor mode, wrong rate24 scores
299             were displayed. This issue has been fixed. Now YSS absence 
300             results in "N/A".
301
302 2008-04-21 Daigo Moriwaki <daigo at debian dot org>
303
304         * [mk_rate]
305           - The half-life period is now configurable.
306             ex $ ./mk_rate --half-life 14 --half-life-ignore 7 <records>
307
308 2008-04-12 Daigo Moriwaki <daigo at debian dot org>
309
310         * [shogi-server]
311           - Renamed variables (@id) since they caused Ruby's warning.
312
313 2008-04-11 Daigo Moriwaki <daigo at debian dot org>
314
315         * [shogi-server]
316           - Improved a way to handle diferred moves (2008-03-24's change),
317             based on Tomoyuki Kaneko's patch.
318
319 2008-04-01 Daigo Moriwaki <daigo at debian dot org>
320
321         * [shogi-server]
322           - An incorrect LOGIN crashed the server. This issue has been
323             fixed.
324
325 2008-03-24 Daigo Moriwaki <daigo at debian dot org>
326
327         * [shogi-server]
328           - Converting characters for comments in moves caused an error. This 
329             issue has been fixed.
330           - If a player moves in the opponent's turn, it is illegal. But the
331             current CSA protocol does not clearly define a way to tell so to 
332             the players. This shogi-server internally keeps such a move in a
333             buffer and replay it when the player of the move gets his/her 
334             turn.
335
336 2008-03-16 Daigo Moriwaki <daigo at debian dot org>
337
338         * [shogi-server]
339           - Erroneously, Board#to_s's current player was always Black.
340             It caused wrong determination of sennichite since it did not
341             care about the current player of a state. This has been fixed.
342             Thanks Takada-san for reporting this bug.
343
344 2008-03-10 Daigo Moriwaki <daigo at debian dot org>
345
346         * [util/players-graph.rb]
347           - Applied Kaneko-san's patch, which also shows expected-rate24
348             rates.
349           - Small PNG gets smaller.
350
351 2008-03-08 Daigo Moriwaki <daigo at debian dot org>
352
353         * [mk_html]
354         - Added an option --wdoor. In this mode, a rate expected at Shogi
355           Club 24 is calculated from YSS's rating (he is 2400 now). 
356
357 2008-03-04 Daigo Moriwaki <daigo at debian dot org>
358
359         * [mk_rate]
360           - If the computed ratings do not stabilize, then mk_rate aborts.
361               $ ./mk_rate dir && ./mk_rate dir > players.yaml 
362             can avoid rewriting the invalid ratings to the file.
363
364 2008-02-23 Daigo Moriwaki <daigo at debian dot org>
365
366         * [shogi-server]
367           - A comment is converted to EUC-JP and then written in a log.
368             Note that this conversion guesses the input encoding. Clients
369             are recommended to send EUC-JP compatible strings to the
370             server.
371
372 2008-02-21 Daigo Moriwaki <daigo at debian dot org>
373
374         * [util/players-graph.rb]
375           - Released. Draw a chart for a player's rating score.
376
377 2008-02-17 Daigo Moriwaki <daigo at debian dot org>
378
379         * [shogi-server]
380           - An illegal teban specified for Floodgate login could crash the
381             server. This issue has been fixed.
382
383 2008-02-16 Daigo Moriwaki <daigo at debian dot org>
384
385         * [shogi-server]
386           - Thread.abort_on_exception is now false, meaning that 
387             a thread's abort does not affect the others. 
388           - The uchifuzume check did not generate promoting moves, which
389             could crash the server with illegal moves. This issue has
390             been fixed.
391
392 2008-02-14 Daigo Moriwaki <daigo at debian dot org>
393
394         * [shogi-server]
395           - Added a new pairing variation, Swiss-like style. Winners at the
396             previous games (his/her point of view, not the server's) are 
397             paired first, and then the others are matched. This is the 
398             default option now.
399           - Pairing classes are located in a separate source file,
400             pairing.rb. The file is 'load'ed each time to be used,
401             meaning that modifying the code will be applied to a running
402             server.
403           - You can specify a single player who will be out of pairing
404             when there are odd players waiting for Floodgate.
405
406 2008-02-13 Daigo Moriwaki <daigo at debian dot org>
407
408         * [shogi-server]
409           - When there are odd players wating for Floodgate, the random
410             pairing deletes the player who has ever played the most games.
411
412 2008-02-08 Daigo Moriwaki <daigo at debian dot org>
413
414         * [ml_html]
415           - For the Not-Yet-Rated group, those who have not connected
416             recently are not listed.
417         * [shogi-server]
418           - Floodgate's thread checks the current time each 10 secs.
419
420 2008-02-05 Daigo Moriwaki <daigo at debian dot org>
421
422         * [mk_rate] [mk_html]
423           - Display not-yet-rated players as well.
424         * [mk_html]
425           - Use Yahoo! UI Library.
426
427 2008-02-04 Daigo Moriwaki <daigo at debian dot org>
428
429         * [shogi-server] [webserver]
430           - In the daemon mode, if the specified directory was a relative
431             path, the server could fail to start with a permission denied
432             error. This issue has been fixed. The path is interpreted as 
433             an absolute path before switching to daemon. 
434           - In the daemon mode, a wrong process id was written in 
435             '--pid-file'. This issue has been fixed. Also, the pid file
436             will be removed when the server shuts down.
437
438 2008-02-03 Daigo Moriwaki <daigo at debian dot org>
439
440         * [shogi-server]
441           - Game names that are recognized as the floodgate mode are now 
442             /^floodgate-\d+-\d+$/.
443           - Floodgate could not schedule the next time when it was the next
444             day. This issue has been fixed.
445
446 2008-02-02 Daigo Moriwaki <daigo at debian dot org>
447
448         * [shogi-server]
449           - Implemented a new feature, Floodgate mode, for covenience with
450             public rating games. Now there is a special game "wdoor-900-0".
451             Matching players for that game is scheduled each 30 minitues.
452
453 2007-11-03 Daigo Moriwaki <daigo at debian dot org>
454
455         * [mk_rate]
456          - Support Ruby 1.8.6 patch level 111 (or higher) and GSL 1.10 (or higher).
457            It may not work with lower verions. 
458
459 2007-09-06 Daigo Moriwaki <daigo at debian dot org>
460
461         * [shogi-server]
462           - The logic to detect Oute-Sennichite was not complete. Both players
463             (checking side and escaping side) may cause Oute-Sennichite. The old
464             logic only cared for the checking player. This issue has been fixed.
465
466 2007-06-16  Daigo Moriwaki <daigo at debian dot org>
467
468         * [webserver]
469           - Initial version. This web server is an interface between HTTP and
470             shogi-server. Shogi-server commands will be available over HTTP. As
471             of now %%LIST and %%WHO commands are supported.
472         * [mk_rate]
473           - Bumped up GAME_LIMIT (from 10) to 15 because the calculation of
474             rates sometimes went wrong (infinite values).
475
476 2007-04-21  Daigo Moriwaki <daigo at debian dot org>
477
478         * [shogi-server]
479           - Implemented `CHALLENGE' command, and the server will respond with
480             `CHALLENGE ACCEPTED'. Note that this command is dummy for this server
481             because it is only available for CSA's official testing server and does
482             not belong to the CSA standard protocol.  Therefor, when clients receive
483             `CHALLENGE ACCEPTED' from this server, they must ignore it.
484           - Show revision in a start up message.
485
486 2007-04-01  Daigo Moriwaki <daigo at debian dot org>
487
488         * [shogi-server]
489           - Implemented one of the keepalive protocol in CSA protocol; If clients
490             send LF, the server sends back LF.
491           - More care for socket errors.
492
493 2007-03-27  Daigo Moriwaki <daigo at debian dot org>
494
495         * [mk_rate] When there were too few games to rate players (i.e. no
496           player to rate), mk_rate caused an error. Now it no longer shows
497           the error.
498
499 2007-03-10  Daigo Moriwaki <daigo at debian dot org>
500
501         * [mk_html] Popup shows additional information.
502
503 2007-03-02  Daigo Moriwaki <daigo at debian dot org>
504
505         * [shogi-server]
506           - Use WEBrick for server framework.
507           - Daemon mode is available.
508
509 2007-02-26  Daigo Moriwaki <daigo at debian dot org>
510
511         * [shogi-server]
512           - Failed to show usage. This issue has been fixed. 
513           - Initial start of the server failed beacause of empty players.yaml.
514             This issues has been fixed.
515
516 2007-02-18  Daigo Moriwaki <daigo at debian dot org>
517
518         * [mk_html]
519           - Show groups in the order specified in players.html.
520           - Players who gamed recently have a background color.
521         * [mk_rate]
522           - Implemented half-life effect. Numbers of win/lose decrease by this effect.
523
524 2006-11-26  Daigo Moriwaki <daigo at debian dot org>
525
526         * [shogi-server] Sente (gote) was able to move gote's (sente's) hand.
527           That move should be illegal. This issue has been fixed.
528
529 2006-11-01  Daigo Moriwaki <daigo at debian dot org>
530
531         * [mk_rate] Skip "abnormal" games, which were finished because of
532           network failure or communication error.  Recently some programs seem
533           to have a lot of tries to connect to the Shogi Server at wdoor for
534           debugging. We should ignore such games for a while to get a meaningful
535           ratings.
536
537 2006-10-30  Daigo Moriwaki <daigo at debian dot org>
538
539         * [mk_rate][mk_html]
540           - Put players into "connected" groups in order to
541             show a correct, meaningful rating. In the group, each player has at
542             least a game with other players.
543           - The format of players.yaml was updated.
544         * [shogi-server] Followed the new format of players.yaml.
545
546 2006-10-08  Daigo Moriwaki <daigo at debian dot org>
547
548         * [mk_rate] Corrected making win_loss_matrix.
549
550 2006-10-02  Daigo Moriwaki <daigo at debian dot org>
551
552         * [mk_rate] players who never win or lose are not rated in order
553           the calculation to complete.
554
555 2006-09-30  Daigo Moriwaki <daigo at debian dot org>
556
557         * [shogi-server] The CSA mode supports the trip in a password.
558
559 2006-09-22  Daigo Moriwaki <daigo at debian dot org>
560
561         * [shogi-server] Refactored the login procedures.
562
563 2006-09-21  Daigo Moriwaki <daigo at debian dot org>
564
565         * [mk_rate] It failed parse draw games. Now this bug has been fixed.
566         * [mk_html] Add CSS to look better.
567
568 2006-09-15  Daigo Moriwaki <daigo at debian dot org>
569
570         * [shogi-server]
571           - Remove the trip in a password. Now the password is hashed.
572         * [mk_rate]
573           - Support @NORATE syntax in a name, which avoids the player is
574             rated.
575
576 2006-09-09  Daigo Moriwaki <daigo at debian dot org>
577
578         * [shogi-server]
579           - Support a new command, %%VERSION. It shows the server's revision#.
580
581 2006-09-07  Daigo Moriwaki <daigo at debian dot org>
582
583         * [shogi-server]
584           - Re-design: trip is now a suffix of the password, not name.
585           - Simplified the output of %%RATING.
586         * [mk_rate]
587           - Support "@" indentificaton in a name; players with same
588             before-@-names are mapped to one.
589
590 2006-09-05  Daigo Moriwaki <daigo at debian dot org>
591
592         * [mk_rate] Fix a bug. It solves the correct rate.
593
594 2006-08-18  Daigo Moriwaki <daigo at debian dot org>
595
596         * [mk_rate] Re-design. 
597           - Correct the equations.
598           - Apply deaccelerated Newton method.
599
600 2006-08-16  Daigo Moriwaki <daigo at debian dot org>
601
602         * [mk_rate]
603           - Fix a bug. Now it can see black/white players in a csa file.
604         * [shogi-server]
605           - Add a space in the output of %%RATING.
606
607 2006-08-14  Daigo Moriwaki <daigo at debian dot org>
608
609         * [mk_rate] Record numbers of win/loss games.
610         * Add mk_html, which generates html from players.yaml
611         * Fix test/test_board.rb. Now it works. 
612         * Add test/TC_ALL.rb to run all test cases.
613         * [shogi-server] Fix a bug. Now it can show %%RATING even if it has no
614           rated player.
615
616 2006-08-11  Daigo Moriwaki <daigo at debian dot org>
617         
618         * Add mk_rate, which calculate rating scores.
619
620 2006-08-10  Daigo Moriwaki <daigo at debian dot org>
621
622         * Change the style of a comment line on the rated game.
623
624 2006-08-07  Daigo Moriwaki <daigo at debian dot org>
625
626         * Change the player id, which is now <name>+<hash_of_the_trip>.
627         * Fix the max length of the login name with a trip.
628         * Add a comment line about the rated game status in the CSA file.
629         * Remove the rating system, which will be calculated by another
630           program.
631
632 2006-08-01  Daigo Moriwaki <daigo at debian dot org>
633
634         * Add a command, %%RATING, to show a ranking sorted by rates.
635
636 2006-07-31  Daigo Moriwaki <daigo at debian dot org>
637
638         * Add a simple rating system.
639
640 2006-07-30  Daigo Moriwaki <daigo at debian dot org>
641
642         * Add a @move_counter in Board class, which is used by Shogi Viewer
643           CGI.
644
645 2006-04-28  Daigo Moriwaki <daigo at debian dot org>
646
647         * Jishogi kachi declaration did not work. This bug has been fixed.
648           Add debug lines to show a jishogi state.
649
650 2006-04-08  Daigo Moriwaki <daigo at debian dot org>
651
652         * Support CSA Protocol Version 1.1.
653         * Change the declaration of Jishogi 1.1.
654
655 2006-03-10  Daigo Moriwaki <daigo at debian dot org>
656
657         * Kifu logs are always written in separate files.
658         * Add a test case, test/TC_functional.rb
659         * Some refactorings.
660