shogi-server source
Revisão | 7845c4a03df15f57dc4a185765d45119245a2529 (tree) |
---|---|
Hora | 2015-01-17 22:13:20 |
Autor | Daigo Moriwaki <daigo@debi...> |
Commiter | Daigo Moriwaki |
Merge branch 'wdoor-stable'
Conflicts:
changelog
@@ -34,6 +34,12 @@ | ||
34 | 34 | has now been fixed. |
35 | 35 | Thanks to Hiraoka-san for debugging. |
36 | 36 | |
37 | +2014-12-18 Daigo Moriwaki <daigo at debian dot org> | |
38 | + | |
39 | + * utils/eval_graph.rb: | |
40 | + - Gnuplot 4.6.6 drew evaluation-value lines with a dashed style. | |
41 | + This issue has now been addressed so that solid lines are used. | |
42 | + | |
37 | 43 | 2014-11-30 Daigo Moriwaki <daigo at debian dot org> |
38 | 44 | |
39 | 45 | * [mk_html] |
@@ -224,8 +224,8 @@ def plot(csa_file, title, black, white, a_play_time) | ||
224 | 224 | plot.size "0.9,0.9" |
225 | 225 | plot.key "left" |
226 | 226 | |
227 | - plot.style "line 1 linewidth 5 linetype 0 linecolor rgbcolor \"red\"" | |
228 | - plot.style "line 2 linewidth 4 linetype 0 linecolor rgbcolor \"dark-green\"" | |
227 | + plot.style "line 1 linewidth 5 linetype -1 linecolor rgbcolor \"red\"" | |
228 | + plot.style "line 2 linewidth 4 linetype -1 linecolor rgbcolor \"dark-green\"" | |
229 | 229 | |
230 | 230 | plot.data << Gnuplot::DataSet.new( black.eval_values ) do |ds| |
231 | 231 | ds.with = "lines ls 1" |
@@ -238,8 +238,8 @@ def plot(csa_file, title, black, white, a_play_time) | ||
238 | 238 | end |
239 | 239 | |
240 | 240 | if a_play_time > 0 |
241 | - plot.style "line 5 linewidth 1 linetype 0 linecolor rgbcolor \"red\"" | |
242 | - plot.style "line 6 linewidth 1 linetype 0 linecolor rgbcolor \"green\"" | |
241 | + plot.style "line 5 linewidth 1 linetype -1 linecolor rgbcolor \"red\"" | |
242 | + plot.style "line 6 linewidth 1 linetype -1 linecolor rgbcolor \"green\"" | |
243 | 243 | plot.style "fill solid 0.25 noborder" |
244 | 244 | |
245 | 245 | plot.data << Gnuplot::DataSet.new( black.time_values(3000, a_play_time) ) do |ds| |