OSDN Git Service

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