OSDN Git Service

61140dc4ad30d07bf713c855fa5c1226a1db1163
[shogi-server/shogi-server.git] / changelog
1 2009-12-20 Daigo Moriwaki <daigo at debian dot org>
2
3         * [shogi-server]
4           - shogi_server/player.rb: Added new methods: is_human? and
5             is_computer?. 
6             A human player is recommened to use a name ending with '_human'.  
7             ex. 'hoge_human', 'hoge_human@p1'
8           - shogi_server/pairing.rb: Added a new class:
9             StartGameWithoutHumans, which tries to make pairs trying to
10             avoid a human-human match. This is now enabled instread of the
11             previous class: StartGame.
12
13 2009-12-04 Daigo Moriwaki <daigo at debian dot org>
14
15         * [shogi-server]
16           - The HUP signal is not supported by Ruby on Windows.
17
18 2009-11-11 Daigo Moriwaki <daigo at debian dot org>
19
20         * [mk_rate]
21           - Added a new command line option: --base-date. You can specify a
22             base date to calculate rating scores. Games in the `future' are
23             ignored for the calculation.
24
25 2009-11-10 Daigo Moriwaki <daigo at debian dot org>
26
27         * [shogi-server]
28           - The server logs a result of each game to a file named '00LIST',
29             which will be used to generate players.yaml. If the file does
30             not exist, the server will create one automatically.
31             Instruction to use the game result list file:
32             1. Make a list of game results from exisiting CSA files with
33                mk_game_results
34                % ./mk_game_results dir_of_csa_files > 00LIST
35             2. Run the server. It appends a result of each game to
36                '00LIST' when the game finishes.
37             3. From the list of game results, calculate rating scores of
38                players.
39                % ./mk_rate 00LIST > players.yaml
40
41 2009-11-08 Daigo Moriwaki <daigo at debian dot org>
42
43         * [mk_rate]
44           - Split a pre-process collecting game results from csa files into
45             a new command, mk_game_results. Now, Generating players.yaml
46             requires two steps as follows:
47               % ./mk_game_results dir_of_csa_files > 00LIST
48               % ./mk_rate 00LIST > players.yaml
49               or
50               % ./mk_game_results dir_of_csa_files | ./mk_rate > players.yaml 
51             (Closes: #19454)
52
53 2009-08-06 Daigo Moriwaki <daigo at debian dot org>
54
55         * [shogi-server]
56           - A experimental new feature, codenamed Buoy: it allows players to
57             play a game starting with a specified position. First, a player
58             sets a buoy game with moves to a specific position. Then, two
59             players can play a new game with the game name.
60             New commands:
61             + %%SETBUOY <game_name> <moves> [count]
62               Set a new buoy game.
63               ex. %%SETBUOYGAME buoy_foo-900-0 +7776FU 10
64               ex. %%SETBUOYGAME buoy_foo-1500-0 +7776FU-3334FU
65               - game_name is a valid game name with a prefix "buoy_".
66               ex. buoy_foo-900-0
67               - moves are initial moves from the Hirate position to a
68               spcific position that you want to start with.
69               ex. +7776FU-3334FU+8786FU
70               - count is an optional attribute to tell how many times the
71               game can be played (default 1). The count is decremented
72               when the game finishes. If the count reaches zero, the buoy
73               game is removed automatically by the server.
74               ex. 10
75             + %%DELETEBUOY <game_name>
76               Delete a buoy game. The only owner who set up the game is
77               allowed to delete it.
78               ex. %%DELETEBUOY buoy_foo-900-0
79               - game_name is the buoy game name that was created.
80             + %%GETBUOYCOUNT <game_name>
81               Show a current count of the buoy game or -1 for non-existing
82               games.
83
84
85 2009-07-11 Daigo Moriwaki <daigo at debian dot org>
86
87         * [shogi-server]
88           - shogi_server/command.rb: refactored commands out of player.rb.
89
90 2009-06-18 Daigo Moriwaki <daigo at debian dot org>
91
92         * [shogi-server]
93           - An emtpy floodgate_history.yaml caused a server error. This
94             issue has been fixed. 
95             (Closes: #15124)
96
97 2009-06-17 Daigo Moriwaki <daigo at debian dot org>
98
99         * [shogi-server]
100           - If a new game matched between two players is not started within
101             a certain time (default 120 seconds) (i.e. the agree_waiting or
102             start_waiting state lasts too long), the Server REJECTs the game.
103             (Closes: #14425)
104
105 2009-06-15 Daigo Moriwaki <daigo at debian dot org>
106
107         * [shogi-server]
108           - When a Gote player AGREEd a new game and then a Sente player
109             logged out (LOGOUT), the Gote incorrectly received a LOGOUT message 
110             from the server. Since Gote's state was not AGREEd or STARTed yet,
111             the Gote should be REJECTed. This issue has been fixed. 
112             (Closes: #17335)
113
114 2009-06-14 Daigo Moriwaki <daigo at debian dot org>
115
116         * [shogi-server]
117           - The Board could not recognize a certain pattern of
118             Oute-Sennichite. This issue has been fixed.
119             (Closes: #13966)
120
121 2009-03-22 Daigo Moriwaki <daigo at debian dot org>
122
123         * [utils/correct-bug14635.rb]
124           - Added a new file. This program corrects illegal lines introduced
125             by the #14635 bug.
126
127 2009-03-07 Daigo Moriwaki <daigo at debian dot org>
128
129         * [csa-file-filter]
130           - Improved performance.
131
132 2009-02-15 Daigo Moriwaki <daigo at debian dot org>
133
134         * [shogi-server]
135           - A duplicated comment that is the one of the previous (or older)
136             move might be erroneously recorded in a csa file. This issue has 
137             been fixed. (Closes: #15080)
138
139 2009-02-11 Daigo Moriwaki <daigo at debian dot org>
140
141         * [utils/csa-filter.rb]
142           - Added a new file. This program filters CSA files.
143
144 2009-02-01 Daigo Moriwaki <daigo at debian dot org>
145
146         * [shogi-server]
147           - The shogi-server records csa files of games in an illegal
148             format. This issue has been fixed. (Closes: #14635)
149           - A ##[MONITOR] command for showing a game result such as %TORYO
150             was not correct. This issue has been fixed.  
151
152 2009-01-13 Daigo Moriwaki <daigo at debian dot org>
153
154         * [shogi-server]
155           - It failed to proccess a game result, OuteKaihiMoreWin where a
156             checked king does not escape. This issue has been fixed.
157
158 2009-01-02 Daigo Moriwaki <daigo at debian dot org>
159
160         * [shogi-server]
161           - shogi_server/timeout_queue.rb: the timeout parameter of the
162             constructor was not respected erroneously. This issue
163             has been fixed.
164           - shogi_server/players.rb: When a player was finishing with its
165             write socket broken, there was a chance that the thread of the
166             player in the giant lock had to wait for a long time (about 20
167             seconds), which might cause threads of other players stop and 
168             time out. (Closes: #14469)
169
170 2008-12-30 Daigo Moriwaki <daigo at debian dot org>
171
172         * [mk_html]
173           - Added a new option: --footer filename, which inserts contents of 
174             the filename at the bottom of a genrated page. A text specific to 
175             wdoor should be written by using this option. 
176             (Closes: #14470)
177           - It does no more depend on RDoc. RDoc::usage does not work well
178             (due to RDoc).
179
180 2008-12-28 Daigo Moriwaki <daigo at debian dot org>
181
182         * [mk_rate]
183           - Check kifu files more carefully so that files that contain
184             incomplete records are skipped.
185           - mk_rate might have failed to alloc due to out of memory. Now it
186             consumes less memory (about 200MB instead of 2GB).
187           - File names can be put into STDIN instead of specifying directory
188             names in command line arguments.
189         * [csa-file-filter]
190           - New file. It filters kifu files and is of use for a pre-filter
191             of mk_rate.
192
193 2008-12-13 Daigo Moriwaki <daigo at debian dot org>
194
195         * [shogi-server]
196           - Improved an existance check and etc. of directories specified
197             by command line options, expecially in case of the daemon mode. 
198             (Closes: #14244)
199           - A lotated log file is moved to $topdir/YYYY/MM/DD.
200             (Closes: #14245)
201
202 2008-11-27 Daigo Moriwaki <daigo at debian dot org>
203
204         * [shogi-server]
205           - Added sample/*.sh for command line samples.
206
207 2008-11-24 Daigo Moriwaki <daigo at debian dot org>
208
209         * [shogi-server]
210           - Added a new option --floodgate-history, which allows users to
211             specify a file name that stores the records of games. The
212             records are taken care of when games are matched.
213
214 2008-10-18 Daigo Moriwaki <daigo at debian dot org>
215
216         * [utils/eval_graph.rb]
217           - Display time control graphs as well.
218             Thanks to Nishimura-san for this idea.
219             (Closes: #13678)
220
221 2008-10-08 Daigo Moriwaki <daigo at debian dot org>
222
223         * [shogi-server]
224           - Ruby 1.8.7 (or later) must be used. Ruby 1.8.6 is not supported.
225           - Daemon mode is available.
226           - shogi_server/piece_ky.rb is again merged with
227             shogi_server/piece.rb, then has been removed.  
228           - Added a test case, TC_usi.rb.
229
230 2008-06-30 Daigo Moriwaki <daigo at debian dot org>
231
232         * [shogi-server]
233           - Added a new option --player-log-dir, which allows users to log
234             messages that are received or sent to the wire.
235
236 2008-06-28 Daigo Moriwaki <daigo at debian dot org>
237
238         * [shogi-server]
239           - A rating comment line is now written before the first move in a
240             record file instead of after the last move, which allows other
241             applications watching a game to recognize players in the middle 
242             of the game. (Closes #12821)
243           - If a player, including a monitor, stuck at the time of sending
244             messages to the wire, which means that the giant lock was locked,
245             it might have prevented other players from processing until
246             timeout occurred. This issue has been fixed. (Closes #12555)
247
248 2008-06-27 Daigo Moriwaki <daigo at debian dot org>
249
250         * [shogi-server]
251           -  Pairing players might not have shuffled players because of
252              poor shuffling algorithm. This issue has been fixed.
253              (Closes: #12661)
254
255 2008-06-25 Daigo Moriwaki <daigo at debian dot org>
256
257         * [players_graph.rb]
258           - Check invalid arguments. (Closes: #12856)
259
260 2008-06-23 Daigo Moriwaki <daigo at debian dot org>
261
262         * [mk_rate]
263           - Added a new option: --fixed-rate and --fixed-rate-player
264             whose rate always results in that rate. (Closes: #12800)
265
266 2008-06-06 Daigo Moriwaki <daigo at debian dot org>
267
268         * [shogi-server]
269           - The source has been splited to multiple sub files.
270           - The program now depends on rubygems and activesupport.
271           - The program can reload the source files on the flight, by
272             sending a HUP signal to the server.
273           - The server log will be rotated daily.
274
275 2008-05-18 Daigo Moriwaki <daigo at debian dot org>
276
277         * [shogi-server]
278           - Last game results (win or lose) of x1 players were not
279             available on the next game. This issue has been fixed.
280             Thanks to Tomoyuki Kaneko for debugging.
281           - For draw games, "'rating" line in a .csa file was 
282             wrong (meaningless). This issue has been fixed.
283
284 2008-05-16 Daigo Moriwaki <daigo at debian dot org>
285
286         * [news]
287           - The repository has been converted from CVS to Subversion.
288
289 2008-05-13 Daigo Moriwaki <daigo at debian dot org>
290
291         * [shogi-server]
292           - Floodgate's thread could cause an error when players.yaml was
293             cleared by another program (mk_rate). This issue has been 
294             fixed.
295           - Give default values to BasicPlayer, which fixed undefined 
296             method error in Pairing.
297
298 2008-05-10 Daigo Moriwaki <daigo at debian dot org>
299
300         * [shogi-server]
301           - The server could not recognize uchifuzume as an illegal move.
302             This bug has been fixed.
303           - The server crashed by an undefined method error.
304             This issue has been fixed.
305
306 2008-05-05 Daigo Moriwaki <daigo at debian dot org>
307
308         * [shogi-server]
309           - .csa files will be located in a sub directory such as
310             "2008/05/05/*.csa". Thease days, we have many games in a day. 
311             This change will help users browse a file list.
312
313 2008-05-03 Daigo Moriwaki <daigo at debian dot org>
314
315         * [mk_html]
316           - Show players who have accessed in the last 30 minutes with 
317             different colors.
318
319 2008-04-22 Daigo Moriwaki <daigo at debian dot org>
320
321         * [mk_html]
322           - When YSS was not rated on the wdoor mode, wrong rate24 scores
323             were displayed. This issue has been fixed. Now YSS absence 
324             results in "N/A".
325
326 2008-04-21 Daigo Moriwaki <daigo at debian dot org>
327
328         * [mk_rate]
329           - The half-life period is now configurable.
330             ex $ ./mk_rate --half-life 14 --half-life-ignore 7 <records>
331
332 2008-04-12 Daigo Moriwaki <daigo at debian dot org>
333
334         * [shogi-server]
335           - Renamed variables (@id) since they caused Ruby's warning.
336
337 2008-04-11 Daigo Moriwaki <daigo at debian dot org>
338
339         * [shogi-server]
340           - Improved a way to handle diferred moves (2008-03-24's change),
341             based on Tomoyuki Kaneko's patch.
342
343 2008-04-01 Daigo Moriwaki <daigo at debian dot org>
344
345         * [shogi-server]
346           - An incorrect LOGIN crashed the server. This issue has been
347             fixed.
348
349 2008-03-24 Daigo Moriwaki <daigo at debian dot org>
350
351         * [shogi-server]
352           - Converting characters for comments in moves caused an error. This 
353             issue has been fixed.
354           - If a player moves in the opponent's turn, it is illegal. But the
355             current CSA protocol does not clearly define a way to tell so to 
356             the players. This shogi-server internally keeps such a move in a
357             buffer and replay it when the player of the move gets his/her 
358             turn.
359
360 2008-03-16 Daigo Moriwaki <daigo at debian dot org>
361
362         * [shogi-server]
363           - Erroneously, Board#to_s's current player was always Black.
364             It caused wrong determination of sennichite since it did not
365             care about the current player of a state. This has been fixed.
366             Thanks Takada-san for reporting this bug.
367
368 2008-03-10 Daigo Moriwaki <daigo at debian dot org>
369
370         * [util/players-graph.rb]
371           - Applied Kaneko-san's patch, which also shows expected-rate24
372             rates.
373           - Small PNG gets smaller.
374
375 2008-03-08 Daigo Moriwaki <daigo at debian dot org>
376
377         * [mk_html]
378         - Added an option --wdoor. In this mode, a rate expected at Shogi
379           Club 24 is calculated from YSS's rating (he is 2400 now). 
380
381 2008-03-04 Daigo Moriwaki <daigo at debian dot org>
382
383         * [mk_rate]
384           - If the computed ratings do not stabilize, then mk_rate aborts.
385               $ ./mk_rate dir && ./mk_rate dir > players.yaml 
386             can avoid rewriting the invalid ratings to the file.
387
388 2008-02-23 Daigo Moriwaki <daigo at debian dot org>
389
390         * [shogi-server]
391           - A comment is converted to EUC-JP and then written in a log.
392             Note that this conversion guesses the input encoding. Clients
393             are recommended to send EUC-JP compatible strings to the
394             server.
395
396 2008-02-21 Daigo Moriwaki <daigo at debian dot org>
397
398         * [util/players-graph.rb]
399           - Released. Draw a chart for a player's rating score.
400
401 2008-02-17 Daigo Moriwaki <daigo at debian dot org>
402
403         * [shogi-server]
404           - An illegal teban specified for Floodgate login could crash the
405             server. This issue has been fixed.
406
407 2008-02-16 Daigo Moriwaki <daigo at debian dot org>
408
409         * [shogi-server]
410           - Thread.abort_on_exception is now false, meaning that 
411             a thread's abort does not affect the others. 
412           - The uchifuzume check did not generate promoting moves, which
413             could crash the server with illegal moves. This issue has
414             been fixed.
415
416 2008-02-14 Daigo Moriwaki <daigo at debian dot org>
417
418         * [shogi-server]
419           - Added a new pairing variation, Swiss-like style. Winners at the
420             previous games (his/her point of view, not the server's) are 
421             paired first, and then the others are matched. This is the 
422             default option now.
423           - Pairing classes are located in a separate source file,
424             pairing.rb. The file is 'load'ed each time to be used,
425             meaning that modifying the code will be applied to a running
426             server.
427           - You can specify a single player who will be out of pairing
428             when there are odd players waiting for Floodgate.
429
430 2008-02-13 Daigo Moriwaki <daigo at debian dot org>
431
432         * [shogi-server]
433           - When there are odd players wating for Floodgate, the random
434             pairing deletes the player who has ever played the most games.
435
436 2008-02-08 Daigo Moriwaki <daigo at debian dot org>
437
438         * [ml_html]
439           - For the Not-Yet-Rated group, those who have not connected
440             recently are not listed.
441         * [shogi-server]
442           - Floodgate's thread checks the current time each 10 secs.
443
444 2008-02-05 Daigo Moriwaki <daigo at debian dot org>
445
446         * [mk_rate] [mk_html]
447           - Display not-yet-rated players as well.
448         * [mk_html]
449           - Use Yahoo! UI Library.
450
451 2008-02-04 Daigo Moriwaki <daigo at debian dot org>
452
453         * [shogi-server] [webserver]
454           - In the daemon mode, if the specified directory was a relative
455             path, the server could fail to start with a permission denied
456             error. This issue has been fixed. The path is interpreted as 
457             an absolute path before switching to daemon. 
458           - In the daemon mode, a wrong process id was written in 
459             '--pid-file'. This issue has been fixed. Also, the pid file
460             will be removed when the server shuts down.
461
462 2008-02-03 Daigo Moriwaki <daigo at debian dot org>
463
464         * [shogi-server]
465           - Game names that are recognized as the floodgate mode are now 
466             /^floodgate-\d+-\d+$/.
467           - Floodgate could not schedule the next time when it was the next
468             day. This issue has been fixed.
469
470 2008-02-02 Daigo Moriwaki <daigo at debian dot org>
471
472         * [shogi-server]
473           - Implemented a new feature, Floodgate mode, for covenience with
474             public rating games. Now there is a special game "wdoor-900-0".
475             Matching players for that game is scheduled each 30 minitues.
476
477 2007-11-03 Daigo Moriwaki <daigo at debian dot org>
478
479         * [mk_rate]
480          - Support Ruby 1.8.6 patch level 111 (or higher) and GSL 1.10 (or higher).
481            It may not work with lower verions. 
482
483 2007-09-06 Daigo Moriwaki <daigo at debian dot org>
484
485         * [shogi-server]
486           - The logic to detect Oute-Sennichite was not complete. Both players
487             (checking side and escaping side) may cause Oute-Sennichite. The old
488             logic only cared for the checking player. This issue has been fixed.
489
490 2007-06-16  Daigo Moriwaki <daigo at debian dot org>
491
492         * [webserver]
493           - Initial version. This web server is an interface between HTTP and
494             shogi-server. Shogi-server commands will be available over HTTP. As
495             of now %%LIST and %%WHO commands are supported.
496         * [mk_rate]
497           - Bumped up GAME_LIMIT (from 10) to 15 because the calculation of
498             rates sometimes went wrong (infinite values).
499
500 2007-04-21  Daigo Moriwaki <daigo at debian dot org>
501
502         * [shogi-server]
503           - Implemented `CHALLENGE' command, and the server will respond with
504             `CHALLENGE ACCEPTED'. Note that this command is dummy for this server
505             because it is only available for CSA's official testing server and does
506             not belong to the CSA standard protocol.  Therefor, when clients receive
507             `CHALLENGE ACCEPTED' from this server, they must ignore it.
508           - Show revision in a start up message.
509
510 2007-04-01  Daigo Moriwaki <daigo at debian dot org>
511
512         * [shogi-server]
513           - Implemented one of the keepalive protocol in CSA protocol; If clients
514             send LF, the server sends back LF.
515           - More care for socket errors.
516
517 2007-03-27  Daigo Moriwaki <daigo at debian dot org>
518
519         * [mk_rate] When there were too few games to rate players (i.e. no
520           player to rate), mk_rate caused an error. Now it no longer shows
521           the error.
522
523 2007-03-10  Daigo Moriwaki <daigo at debian dot org>
524
525         * [mk_html] Popup shows additional information.
526
527 2007-03-02  Daigo Moriwaki <daigo at debian dot org>
528
529         * [shogi-server]
530           - Use WEBrick for server framework.
531           - Daemon mode is available.
532
533 2007-02-26  Daigo Moriwaki <daigo at debian dot org>
534
535         * [shogi-server]
536           - Failed to show usage. This issue has been fixed. 
537           - Initial start of the server failed beacause of empty players.yaml.
538             This issues has been fixed.
539
540 2007-02-18  Daigo Moriwaki <daigo at debian dot org>
541
542         * [mk_html]
543           - Show groups in the order specified in players.html.
544           - Players who gamed recently have a background color.
545         * [mk_rate]
546           - Implemented half-life effect. Numbers of win/lose decrease by this effect.
547
548 2006-11-26  Daigo Moriwaki <daigo at debian dot org>
549
550         * [shogi-server] Sente (gote) was able to move gote's (sente's) hand.
551           That move should be illegal. This issue has been fixed.
552
553 2006-11-01  Daigo Moriwaki <daigo at debian dot org>
554
555         * [mk_rate] Skip "abnormal" games, which were finished because of
556           network failure or communication error.  Recently some programs seem
557           to have a lot of tries to connect to the Shogi Server at wdoor for
558           debugging. We should ignore such games for a while to get a meaningful
559           ratings.
560
561 2006-10-30  Daigo Moriwaki <daigo at debian dot org>
562
563         * [mk_rate][mk_html]
564           - Put players into "connected" groups in order to
565             show a correct, meaningful rating. In the group, each player has at
566             least a game with other players.
567           - The format of players.yaml was updated.
568         * [shogi-server] Followed the new format of players.yaml.
569
570 2006-10-08  Daigo Moriwaki <daigo at debian dot org>
571
572         * [mk_rate] Corrected making win_loss_matrix.
573
574 2006-10-02  Daigo Moriwaki <daigo at debian dot org>
575
576         * [mk_rate] players who never win or lose are not rated in order
577           the calculation to complete.
578
579 2006-09-30  Daigo Moriwaki <daigo at debian dot org>
580
581         * [shogi-server] The CSA mode supports the trip in a password.
582
583 2006-09-22  Daigo Moriwaki <daigo at debian dot org>
584
585         * [shogi-server] Refactored the login procedures.
586
587 2006-09-21  Daigo Moriwaki <daigo at debian dot org>
588
589         * [mk_rate] It failed parse draw games. Now this bug has been fixed.
590         * [mk_html] Add CSS to look better.
591
592 2006-09-15  Daigo Moriwaki <daigo at debian dot org>
593
594         * [shogi-server]
595           - Remove the trip in a password. Now the password is hashed.
596         * [mk_rate]
597           - Support @NORATE syntax in a name, which avoids the player is
598             rated.
599
600 2006-09-09  Daigo Moriwaki <daigo at debian dot org>
601
602         * [shogi-server]
603           - Support a new command, %%VERSION. It shows the server's revision#.
604
605 2006-09-07  Daigo Moriwaki <daigo at debian dot org>
606
607         * [shogi-server]
608           - Re-design: trip is now a suffix of the password, not name.
609           - Simplified the output of %%RATING.
610         * [mk_rate]
611           - Support "@" indentificaton in a name; players with same
612             before-@-names are mapped to one.
613
614 2006-09-05  Daigo Moriwaki <daigo at debian dot org>
615
616         * [mk_rate] Fix a bug. It solves the correct rate.
617
618 2006-08-18  Daigo Moriwaki <daigo at debian dot org>
619
620         * [mk_rate] Re-design. 
621           - Correct the equations.
622           - Apply deaccelerated Newton method.
623
624 2006-08-16  Daigo Moriwaki <daigo at debian dot org>
625
626         * [mk_rate]
627           - Fix a bug. Now it can see black/white players in a csa file.
628         * [shogi-server]
629           - Add a space in the output of %%RATING.
630
631 2006-08-14  Daigo Moriwaki <daigo at debian dot org>
632
633         * [mk_rate] Record numbers of win/loss games.
634         * Add mk_html, which generates html from players.yaml
635         * Fix test/test_board.rb. Now it works. 
636         * Add test/TC_ALL.rb to run all test cases.
637         * [shogi-server] Fix a bug. Now it can show %%RATING even if it has no
638           rated player.
639
640 2006-08-11  Daigo Moriwaki <daigo at debian dot org>
641         
642         * Add mk_rate, which calculate rating scores.
643
644 2006-08-10  Daigo Moriwaki <daigo at debian dot org>
645
646         * Change the style of a comment line on the rated game.
647
648 2006-08-07  Daigo Moriwaki <daigo at debian dot org>
649
650         * Change the player id, which is now <name>+<hash_of_the_trip>.
651         * Fix the max length of the login name with a trip.
652         * Add a comment line about the rated game status in the CSA file.
653         * Remove the rating system, which will be calculated by another
654           program.
655
656 2006-08-01  Daigo Moriwaki <daigo at debian dot org>
657
658         * Add a command, %%RATING, to show a ranking sorted by rates.
659
660 2006-07-31  Daigo Moriwaki <daigo at debian dot org>
661
662         * Add a simple rating system.
663
664 2006-07-30  Daigo Moriwaki <daigo at debian dot org>
665
666         * Add a @move_counter in Board class, which is used by Shogi Viewer
667           CGI.
668
669 2006-04-28  Daigo Moriwaki <daigo at debian dot org>
670
671         * Jishogi kachi declaration did not work. This bug has been fixed.
672           Add debug lines to show a jishogi state.
673
674 2006-04-08  Daigo Moriwaki <daigo at debian dot org>
675
676         * Support CSA Protocol Version 1.1.
677         * Change the declaration of Jishogi 1.1.
678
679 2006-03-10  Daigo Moriwaki <daigo at debian dot org>
680
681         * Kifu logs are always written in separate files.
682         * Add a test case, test/TC_functional.rb
683         * Some refactorings.
684