OSDN Git Service

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