OSDN Git Service

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