OSDN Git Service

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