OSDN Git Service

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