OSDN Git Service

* [utils/eval_graph.rb]
[shogi-server/shogi-server.git] / changelog
1 2008-10-18 Daigo Moriwaki <daigo at debian dot org>
2
3         * [utils/eval_graph.rb]
4           - Display time control graphs as well.
5             Thanks to Nishimura-san for this idea.
6
7 2008-10-08 Daigo Moriwaki <daigo at debian dot org>
8
9         * [shogi-server]
10           - Ruby 1.8.7 (or later) must be used. Ruby 1.8.6 is not supported.
11           - Daemon mode is available.
12           - shogi_server/piece_ky.rb is again merged with
13             shogi_server/piece.rb, then has been removed.  
14           - Added a test case, TC_usi.rb.
15
16 2008-06-30 Daigo Moriwaki <daigo at debian dot org>
17
18         * [shogi-server]
19           - Added a new option --player-log-dir, which allows users to log
20             messages that are received or sent to the wire.
21
22 2008-06-28 Daigo Moriwaki <daigo at debian dot org>
23
24         * [shogi-server]
25           - A rating comment line is now written before the first move in a
26             record file instead of after the last move, which allows other
27             applications watching a game to recognize players in the middle 
28             of the game. (Closes #12821)
29           - If a player, including a monitor, stuck at the time of sending
30             messages to the wire, which means that the giant lock was locked,
31             it might have prevented other players from processing until
32             timeout occurred. This issue has been fixed. (Closes #12555)
33
34 2008-06-27 Daigo Moriwaki <daigo at debian dot org>
35
36         * [shogi-server]
37           -  Pairing players might not have shuffled players because of
38              poor shuffling algorithm. This issue has been fixed.
39              (Closes: #12661)
40
41 2008-06-25 Daigo Moriwaki <daigo at debian dot org>
42
43         * [players_graph.rb]
44           - Check invalid arguments. (Closes: #12856)
45
46 2008-06-23 Daigo Moriwaki <daigo at debian dot org>
47
48         * [mk_rate]
49           - Added a new option: --fixed-rate and --fixed-rate-player
50             whose rate always results in that rate. (Closes: #12800)
51
52 2008-06-06 Daigo Moriwaki <daigo at debian dot org>
53
54         * [shogi-server]
55           - The source has been splited to multiple sub files.
56           - The program now depends on rubygems and activesupport.
57           - The program can reload the source files on the flight, by
58             sending a HUP signal to the server.
59           - The server log will be rotated daily.
60
61 2008-05-18 Daigo Moriwaki <daigo at debian dot org>
62
63         * [shogi-server]
64           - Last game results (win or lose) of x1 players were not
65             available on the next game. This issue has been fixed.
66             Thanks to Tomoyuki Kaneko for debugging.
67           - For draw games, "'rating" line in a .csa file was 
68             wrong (meaningless). This issue has been fixed.
69
70 2008-05-16 Daigo Moriwaki <daigo at debian dot org>
71
72         * [news]
73           - The repository has been converted from CVS to Subversion.
74
75 2008-05-13 Daigo Moriwaki <daigo at debian dot org>
76
77         * [shogi-server]
78           - Floodgate's thread could cause an error when players.yaml was
79             cleared by another program (mk_rate). This issue has been 
80             fixed.
81           - Give default values to BasicPlayer, which fixed undefined 
82             method error in Pairing.
83
84 2008-05-10 Daigo Moriwaki <daigo at debian dot org>
85
86         * [shogi-server]
87           - The server could not recognize uchifuzume as an illegal move.
88             This bug has been fixed.
89           - The server crashed by an undefined method error.
90             This issue has been fixed.
91
92 2008-05-05 Daigo Moriwaki <daigo at debian dot org>
93
94         * [shogi-server]
95           - .csa files will be located in a sub directory such as
96             "2008/05/05/*.csa". Thease days, we have many games in a day. 
97             This change will help users browse a file list.
98
99 2008-05-03 Daigo Moriwaki <daigo at debian dot org>
100
101         * [mk_html]
102           - Show players who have accessed in the last 30 minutes with 
103             different colors.
104
105 2008-04-22 Daigo Moriwaki <daigo at debian dot org>
106
107         * [mk_html]
108           - When YSS was not rated on the wdoor mode, wrong rate24 scores
109             were displayed. This issue has been fixed. Now YSS absence 
110             results in "N/A".
111
112 2008-04-21 Daigo Moriwaki <daigo at debian dot org>
113
114         * [mk_rate]
115           - The half-life period is now configurable.
116             ex $ ./mk_rate --half-life 14 --half-life-ignore 7 <records>
117
118 2008-04-12 Daigo Moriwaki <daigo at debian dot org>
119
120         * [shogi-server]
121           - Renamed variables (@id) since they caused Ruby's warning.
122
123 2008-04-11 Daigo Moriwaki <daigo at debian dot org>
124
125         * [shogi-server]
126           - Improved a way to handle diferred moves (2008-03-24's change),
127             based on Tomoyuki Kaneko's patch.
128
129 2008-04-01 Daigo Moriwaki <daigo at debian dot org>
130
131         * [shogi-server]
132           - An incorrect LOGIN crashed the server. This issue has been
133             fixed.
134
135 2008-03-24 Daigo Moriwaki <daigo at debian dot org>
136
137         * [shogi-server]
138           - Converting characters for comments in moves caused an error. This 
139             issue has been fixed.
140           - If a player moves in the opponent's turn, it is illegal. But the
141             current CSA protocol does not clearly define a way to tell so to 
142             the players. This shogi-server internally keeps such a move in a
143             buffer and replay it when the player of the move gets his/her 
144             turn.
145
146 2008-03-16 Daigo Moriwaki <daigo at debian dot org>
147
148         * [shogi-server]
149           - Erroneously, Board#to_s's current player was always Black.
150             It caused wrong determination of sennichite since it did not
151             care about the current player of a state. This has been fixed.
152             Thanks Takada-san for reporting this bug.
153
154 2008-03-10 Daigo Moriwaki <daigo at debian dot org>
155
156         * [util/players-graph.rb]
157           - Applied Kaneko-san's patch, which also shows expected-rate24
158             rates.
159           - Small PNG gets smaller.
160
161 2008-03-08 Daigo Moriwaki <daigo at debian dot org>
162
163         * [mk_html]
164         - Added an option --wdoor. In this mode, a rate expected at Shogi
165           Club 24 is calculated from YSS's rating (he is 2400 now). 
166
167 2008-03-04 Daigo Moriwaki <daigo at debian dot org>
168
169         * [mk_rate]
170           - If the computed ratings do not stabilize, then mk_rate aborts.
171               $ ./mk_rate dir && ./mk_rate dir > players.yaml 
172             can avoid rewriting the invalid ratings to the file.
173
174 2008-02-23 Daigo Moriwaki <daigo at debian dot org>
175
176         * [shogi-server]
177           - A comment is converted to EUC-JP and then written in a log.
178             Note that this conversion guesses the input encoding. Clients
179             are recommended to send EUC-JP compatible strings to the
180             server.
181
182 2008-02-21 Daigo Moriwaki <daigo at debian dot org>
183
184         * [util/players-graph.rb]
185           - Released. Draw a chart for a player's rating score.
186
187 2008-02-17 Daigo Moriwaki <daigo at debian dot org>
188
189         * [shogi-server]
190           - An illegal teban specified for Floodgate login could crash the
191             server. This issue has been fixed.
192
193 2008-02-16 Daigo Moriwaki <daigo at debian dot org>
194
195         * [shogi-server]
196           - Thread.abort_on_exception is now false, meaning that 
197             a thread's abort does not affect the others. 
198           - The uchifuzume check did not generate promoting moves, which
199             could crash the server with illegal moves. This issue has
200             been fixed.
201
202 2008-02-14 Daigo Moriwaki <daigo at debian dot org>
203
204         * [shogi-server]
205           - Added a new pairing variation, Swiss-like style. Winners at the
206             previous games (his/her point of view, not the server's) are 
207             paired first, and then the others are matched. This is the 
208             default option now.
209           - Pairing classes are located in a separate source file,
210             pairing.rb. The file is 'load'ed each time to be used,
211             meaning that modifying the code will be applied to a running
212             server.
213           - You can specify a single player who will be out of pairing
214             when there are odd players waiting for Floodgate.
215
216 2008-02-13 Daigo Moriwaki <daigo at debian dot org>
217
218         * [shogi-server]
219           - When there are odd players wating for Floodgate, the random
220             pairing deletes the player who has ever played the most games.
221
222 2008-02-08 Daigo Moriwaki <daigo at debian dot org>
223
224         * [ml_html]
225           - For the Not-Yet-Rated group, those who have not connected
226             recently are not listed.
227         * [shogi-server]
228           - Floodgate's thread checks the current time each 10 secs.
229
230 2008-02-05 Daigo Moriwaki <daigo at debian dot org>
231
232         * [mk_rate] [mk_html]
233           - Display not-yet-rated players as well.
234         * [mk_html]
235           - Use Yahoo! UI Library.
236
237 2008-02-04 Daigo Moriwaki <daigo at debian dot org>
238
239         * [shogi-server] [webserver]
240           - In the daemon mode, if the specified directory was a relative
241             path, the server could fail to start with a permission denied
242             error. This issue has been fixed. The path is interpreted as 
243             an absolute path before switching to daemon. 
244           - In the daemon mode, a wrong process id was written in 
245             '--pid-file'. This issue has been fixed. Also, the pid file
246             will be removed when the server shuts down.
247
248 2008-02-03 Daigo Moriwaki <daigo at debian dot org>
249
250         * [shogi-server]
251           - Game names that are recognized as the floodgate mode are now 
252             /^floodgate-\d+-\d+$/.
253           - Floodgate could not schedule the next time when it was the next
254             day. This issue has been fixed.
255
256 2008-02-02 Daigo Moriwaki <daigo at debian dot org>
257
258         * [shogi-server]
259           - Implemented a new feature, Floodgate mode, for covenience with
260             public rating games. Now there is a special game "wdoor-900-0".
261             Matching players for that game is scheduled each 30 minitues.
262
263 2007-11-03 Daigo Moriwaki <daigo at debian dot org>
264
265         * [mk_rate]
266          - Support Ruby 1.8.6 patch level 111 (or higher) and GSL 1.10 (or higher).
267            It may not work with lower verions. 
268
269 2007-09-06 Daigo Moriwaki <daigo at debian dot org>
270
271         * [shogi-server]
272           - The logic to detect Oute-Sennichite was not complete. Both players
273             (checking side and escaping side) may cause Oute-Sennichite. The old
274             logic only cared for the checking player. This issue has been fixed.
275
276 2007-06-16  Daigo Moriwaki <daigo at debian dot org>
277
278         * [webserver]
279           - Initial version. This web server is an interface between HTTP and
280             shogi-server. Shogi-server commands will be available over HTTP. As
281             of now %%LIST and %%WHO commands are supported.
282         * [mk_rate]
283           - Bumped up GAME_LIMIT (from 10) to 15 because the calculation of
284             rates sometimes went wrong (infinite values).
285
286 2007-04-21  Daigo Moriwaki <daigo at debian dot org>
287
288         * [shogi-server]
289           - Implemented `CHALLENGE' command, and the server will respond with
290             `CHALLENGE ACCEPTED'. Note that this command is dummy for this server
291             because it is only available for CSA's official testing server and does
292             not belong to the CSA standard protocol.  Therefor, when clients receive
293             `CHALLENGE ACCEPTED' from this server, they must ignore it.
294           - Show revision in a start up message.
295
296 2007-04-01  Daigo Moriwaki <daigo at debian dot org>
297
298         * [shogi-server]
299           - Implemented one of the keepalive protocol in CSA protocol; If clients
300             send LF, the server sends back LF.
301           - More care for socket errors.
302
303 2007-03-27  Daigo Moriwaki <daigo at debian dot org>
304
305         * [mk_rate] When there were too few games to rate players (i.e. no
306           player to rate), mk_rate caused an error. Now it no longer shows
307           the error.
308
309 2007-03-10  Daigo Moriwaki <daigo at debian dot org>
310
311         * [mk_html] Popup shows additional information.
312
313 2007-03-02  Daigo Moriwaki <daigo at debian dot org>
314
315         * [shogi-server]
316           - Use WEBrick for server framework.
317           - Daemon mode is available.
318
319 2007-02-26  Daigo Moriwaki <daigo at debian dot org>
320
321         * [shogi-server]
322           - Failed to show usage. This issue has been fixed. 
323           - Initial start of the server failed beacause of empty players.yaml.
324             This issues has been fixed.
325
326 2007-02-18  Daigo Moriwaki <daigo at debian dot org>
327
328         * [mk_html]
329           - Show groups in the order specified in players.html.
330           - Players who gamed recently have a background color.
331         * [mk_rate]
332           - Implemented half-life effect. Numbers of win/lose decrease by this effect.
333
334 2006-11-26  Daigo Moriwaki <daigo at debian dot org>
335
336         * [shogi-server] Sente (gote) was able to move gote's (sente's) hand.
337           That move should be illegal. This issue has been fixed.
338
339 2006-11-01  Daigo Moriwaki <daigo at debian dot org>
340
341         * [mk_rate] Skip "abnormal" games, which were finished because of
342           network failure or communication error.  Recently some programs seem
343           to have a lot of tries to connect to the Shogi Server at wdoor for
344           debugging. We should ignore such games for a while to get a meaningful
345           ratings.
346
347 2006-10-30  Daigo Moriwaki <daigo at debian dot org>
348
349         * [mk_rate][mk_html]
350           - Put players into "connected" groups in order to
351             show a correct, meaningful rating. In the group, each player has at
352             least a game with other players.
353           - The format of players.yaml was updated.
354         * [shogi-server] Followed the new format of players.yaml.
355
356 2006-10-08  Daigo Moriwaki <daigo at debian dot org>
357
358         * [mk_rate] Corrected making win_loss_matrix.
359
360 2006-10-02  Daigo Moriwaki <daigo at debian dot org>
361
362         * [mk_rate] players who never win or lose are not rated in order
363           the calculation to complete.
364
365 2006-09-30  Daigo Moriwaki <daigo at debian dot org>
366
367         * [shogi-server] The CSA mode supports the trip in a password.
368
369 2006-09-22  Daigo Moriwaki <daigo at debian dot org>
370
371         * [shogi-server] Refactored the login procedures.
372
373 2006-09-21  Daigo Moriwaki <daigo at debian dot org>
374
375         * [mk_rate] It failed parse draw games. Now this bug has been fixed.
376         * [mk_html] Add CSS to look better.
377
378 2006-09-15  Daigo Moriwaki <daigo at debian dot org>
379
380         * [shogi-server]
381           - Remove the trip in a password. Now the password is hashed.
382         * [mk_rate]
383           - Support @NORATE syntax in a name, which avoids the player is
384             rated.
385
386 2006-09-09  Daigo Moriwaki <daigo at debian dot org>
387
388         * [shogi-server]
389           - Support a new command, %%VERSION. It shows the server's revision#.
390
391 2006-09-07  Daigo Moriwaki <daigo at debian dot org>
392
393         * [shogi-server]
394           - Re-design: trip is now a suffix of the password, not name.
395           - Simplified the output of %%RATING.
396         * [mk_rate]
397           - Support "@" indentificaton in a name; players with same
398             before-@-names are mapped to one.
399
400 2006-09-05  Daigo Moriwaki <daigo at debian dot org>
401
402         * [mk_rate] Fix a bug. It solves the correct rate.
403
404 2006-08-18  Daigo Moriwaki <daigo at debian dot org>
405
406         * [mk_rate] Re-design. 
407           - Correct the equations.
408           - Apply deaccelerated Newton method.
409
410 2006-08-16  Daigo Moriwaki <daigo at debian dot org>
411
412         * [mk_rate]
413           - Fix a bug. Now it can see black/white players in a csa file.
414         * [shogi-server]
415           - Add a space in the output of %%RATING.
416
417 2006-08-14  Daigo Moriwaki <daigo at debian dot org>
418
419         * [mk_rate] Record numbers of win/loss games.
420         * Add mk_html, which generates html from players.yaml
421         * Fix test/test_board.rb. Now it works. 
422         * Add test/TC_ALL.rb to run all test cases.
423         * [shogi-server] Fix a bug. Now it can show %%RATING even if it has no
424           rated player.
425
426 2006-08-11  Daigo Moriwaki <daigo at debian dot org>
427         
428         * Add mk_rate, which calculate rating scores.
429
430 2006-08-10  Daigo Moriwaki <daigo at debian dot org>
431
432         * Change the style of a comment line on the rated game.
433
434 2006-08-07  Daigo Moriwaki <daigo at debian dot org>
435
436         * Change the player id, which is now <name>+<hash_of_the_trip>.
437         * Fix the max length of the login name with a trip.
438         * Add a comment line about the rated game status in the CSA file.
439         * Remove the rating system, which will be calculated by another
440           program.
441
442 2006-08-01  Daigo Moriwaki <daigo at debian dot org>
443
444         * Add a command, %%RATING, to show a ranking sorted by rates.
445
446 2006-07-31  Daigo Moriwaki <daigo at debian dot org>
447
448         * Add a simple rating system.
449
450 2006-07-30  Daigo Moriwaki <daigo at debian dot org>
451
452         * Add a @move_counter in Board class, which is used by Shogi Viewer
453           CGI.
454
455 2006-04-28  Daigo Moriwaki <daigo at debian dot org>
456
457         * Jishogi kachi declaration did not work. This bug has been fixed.
458           Add debug lines to show a jishogi state.
459
460 2006-04-08  Daigo Moriwaki <daigo at debian dot org>
461
462         * Support CSA Protocol Version 1.1.
463         * Change the declaration of Jishogi 1.1.
464
465 2006-03-10  Daigo Moriwaki <daigo at debian dot org>
466
467         * Kifu logs are always written in separate files.
468         * Add a test case, test/TC_functional.rb
469         * Some refactorings.
470