OSDN Git Service

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