1. 26 5月, 2017 6 次提交
  2. 25 5月, 2017 2 次提交
  3. 24 5月, 2017 6 次提交
  4. 23 5月, 2017 5 次提交
  5. 22 5月, 2017 2 次提交
  6. 21 5月, 2017 1 次提交
  7. 20 5月, 2017 6 次提交
  8. 19 5月, 2017 9 次提交
  9. 18 5月, 2017 3 次提交
    • A
      fix #11353 · 5bbc05b4
      adrs2002 提交于
      Dealing with global pollution
      5bbc05b4
    • Z
      Update Group.html · 1981c02f
      zezar98 提交于
      Missing semicolon
      1981c02f
    • S
      SVGRenderer: let configure precision for SVG coordinates · 3422cb05
      Sergey Linev 提交于
      While SVG is text format, 10-digits for each coordinate is overkill. In
      many cases on can use precion=1 or even precision=0. For instance,
      instead of 
      path
      d="M95.67875432291896,61.48774395485388L99.22967055503229,-179.38931463976644"
      
      one gets (with precision 1)
      
      path d="M95.7,61.5L99.2,-179.4"
      
      This significantly (factor 2) reduces size of SVG when stored into the
      file. 
      3422cb05