OSDN Git Service

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