OSDN Git Service

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