OSDN Git Service

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