OSDN Git Service

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