OSDN Git Service

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