OSDN Git Service

Implemented CHALLENGE command
[shogi-server/shogi-server.git] / changelog
1 2007-04-21  Daigo Moriwaki <daigo at debian dot org>
2
3         * [shogi-server]
4           - Implemented `CHALLENGE' command, and the server will respond with
5             `CHALLENGE ACCEPTED'. Note that this command is dummy for this server
6             because it is only available for CSA's official testing server and does
7             not belong to the CSA standard protocol.  Therefor, when clients receive
8             `CHALLENGE ACCEPTED' from this server, they must ignore it.
9
10 2007-04-01  Daigo Moriwaki <daigo at debian dot org>
11
12         * [shogi-server]
13           - Implemented one of the keepalive protocol in CSA protocol; If clients
14             send LF, the server sends back LF.
15           - More care for socket errors.
16
17 2007-03-27  Daigo Moriwaki <daigo at debian dot org>
18
19         * [mk_rate] When there were too few games to rate players (i.e. no
20           player to rate), mk_rate caused an error. Now it no longer shows
21           the error.
22
23 2007-03-10  Daigo Moriwaki <daigo at debian dot org>
24
25         * [mk_html] Popup shows additional information.
26
27 2007-03-02  Daigo Moriwaki <daigo at debian dot org>
28
29         * [shogi-server]
30           - Use WEBrick for server framework.
31           - Daemon mode is available.
32
33 2007-02-26  Daigo Moriwaki <daigo at debian dot org>
34
35         * [shogi-server]
36           - Failed to show usage. This issue has been fixed. 
37           - Initial start of the server failed beacause of empty players.yaml.
38             This issues has been fixed.
39
40 2007-02-18  Daigo Moriwaki <daigo at debian dot org>
41
42         * [mk_html]
43           - Show groups in the order specified in players.html.
44           - Players who gamed recently have a background color.
45         * [mk_rate]
46           - Implemented half-life effect. Numbers of win/lose decrease by this effect.
47
48 2006-11-26  Daigo Moriwaki <daigo at debian dot org>
49
50         * [shogi-server] Sente (gote) was able to move gote's (sente's) hand.
51           That move should be illegal. This issue has been fixed.
52
53 2006-11-01  Daigo Moriwaki <daigo at debian dot org>
54
55         * [mk_rate] Skip "abnormal" games, which were finished because of
56           network failure or communication error.  Recently some programs seem
57           to have a lot of tries to connect to the Shogi Server at wdoor for
58           debugging. We should ignore such games for a while to get a meaningful
59           ratings.
60
61 2006-10-30  Daigo Moriwaki <daigo at debian dot org>
62
63         * [mk_rate][mk_html]
64           - Put players into "connected" groups in order to
65             show a correct, meaningful rating. In the group, each player has at
66             least a game with other players.
67           - The format of players.yaml was updated.
68         * [shogi-server] Followed the new format of players.yaml.
69
70 2006-10-08  Daigo Moriwaki <daigo at debian dot org>
71
72         * [mk_rate] Corrected making win_loss_matrix.
73
74 2006-10-02  Daigo Moriwaki <daigo at debian dot org>
75
76         * [mk_rate] players who never win or lose are not rated in order
77           the calculation to complete.
78
79 2006-09-30  Daigo Moriwaki <daigo at debian dot org>
80
81         * [shogi-server] The CSA mode supports the trip in a password.
82
83 2006-09-22  Daigo Moriwaki <daigo at debian dot org>
84
85         * [shogi-server] Refactored the login procedures.
86
87 2006-09-21  Daigo Moriwaki <daigo at debian dot org>
88
89         * [mk_rate] It failed parse draw games. Now this bug has been fixed.
90         * [mk_html] Add CSS to look better.
91
92 2006-09-15  Daigo Moriwaki <daigo at debian dot org>
93
94         * [shogi-server]
95           - Remove the trip in a password. Now the password is hashed.
96         * [mk_rate]
97           - Support @NORATE syntax in a name, which avoids the player is
98             rated.
99
100 2006-09-09  Daigo Moriwaki <daigo at debian dot org>
101
102         * [shogi-server]
103           - Support a new command, %%VERSION. It shows the server's revision#.
104
105 2006-09-07  Daigo Moriwaki <daigo at debian dot org>
106
107         * [shogi-server]
108           - Re-design: trip is now a suffix of the password, not name.
109           - Simplified the output of %%RATING.
110         * [mk_rate]
111           - Support "@" indentificaton in a name; players with same
112             before-@-names are mapped to one.
113
114 2006-09-05  Daigo Moriwaki <daigo at debian dot org>
115
116         * [mk_rate] Fix a bug. It solves the correct rate.
117
118 2006-08-18  Daigo Moriwaki <daigo at debian dot org>
119
120         * [mk_rate] Re-design. 
121           - Correct the equations.
122           - Apply deaccelerated Newton method.
123
124 2006-08-16  Daigo Moriwaki <daigo at debian dot org>
125
126         * [mk_rate]
127           - Fix a bug. Now it can see black/white players in a csa file.
128         * [shogi-server]
129           - Add a space in the output of %%RATING.
130
131 2006-08-14  Daigo Moriwaki <daigo at debian dot org>
132
133         * [mk_rate] Record numbers of win/loss games.
134         * Add mk_html, which generates html from players.yaml
135         * Fix test/test_board.rb. Now it works. 
136         * Add test/TC_ALL.rb to run all test cases.
137         * [shogi-server] Fix a bug. Now it can show %%RATING even if it has no
138           rated player.
139
140 2006-08-11  Daigo Moriwaki <daigo at debian dot org>
141         
142         * Add mk_rate, which calculate rating scores.
143
144 2006-08-10  Daigo Moriwaki <daigo at debian dot org>
145
146         * Change the style of a comment line on the rated game.
147
148 2006-08-07  Daigo Moriwaki <daigo at debian dot org>
149
150         * Change the player id, which is now <name>+<hash_of_the_trip>.
151         * Fix the max length of the login name with a trip.
152         * Add a comment line about the rated game status in the CSA file.
153         * Remove the rating system, which will be calculated by another
154           program.
155
156 2006-08-01  Daigo Moriwaki <daigo at debian dot org>
157
158         * Add a command, %%RATING, to show a ranking sorted by rates.
159
160 2006-07-31  Daigo Moriwaki <daigo at debian dot org>
161
162         * Add a simple rating system.
163
164 2006-07-30  Daigo Moriwaki <daigo at debian dot org>
165
166         * Add a @move_counter in Board class, which is used by Shogi Viewer
167           CGI.
168
169 2006-04-28  Daigo Moriwaki <daigo at debian dot org>
170
171         * Jishogi kachi declaration did not work. This bug has been fixed.
172           Add debug lines to show a jishogi state.
173
174 2006-04-08  Daigo Moriwaki <daigo at debian dot org>
175
176         * Support CSA Protocol Version 1.1.
177         * Change the declaration of Jishogi 1.1.
178
179 2006-03-10  Daigo Moriwaki <daigo at debian dot org>
180
181         * Kifu logs are always written in separate files.
182         * Add a test case, test/TC_functional.rb
183         * Some refactorings.
184