• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

shogi-server source


Commit MetaInfo

Revision7845c4a03df15f57dc4a185765d45119245a2529 (tree)
Time2015-01-17 22:13:20
AuthorDaigo Moriwaki <daigo@debi...>
CommiterDaigo Moriwaki

Log Message

Merge branch 'wdoor-stable'

Conflicts:
changelog

Change Summary

Incremental Difference

--- a/changelog
+++ b/changelog
@@ -34,6 +34,12 @@
3434 has now been fixed.
3535 Thanks to Hiraoka-san for debugging.
3636
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+
3743 2014-11-30 Daigo Moriwaki <daigo at debian dot org>
3844
3945 * [mk_html]
--- a/utils/eval_graph.rb
+++ b/utils/eval_graph.rb
@@ -224,8 +224,8 @@ def plot(csa_file, title, black, white, a_play_time)
224224 plot.size "0.9,0.9"
225225 plot.key "left"
226226
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\""
229229
230230 plot.data << Gnuplot::DataSet.new( black.eval_values ) do |ds|
231231 ds.with = "lines ls 1"
@@ -238,8 +238,8 @@ def plot(csa_file, title, black, white, a_play_time)
238238 end
239239
240240 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\""
243243 plot.style "fill solid 0.25 noborder"
244244
245245 plot.data << Gnuplot::DataSet.new( black.time_values(3000, a_play_time) ) do |ds|