OSDN Git Service

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