OSDN Git Service

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