OSDN Git Service

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