OSDN Git Service

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