1. 14 Feb, 2016 3 commits
  2. 13 Feb, 2016 5 commits
  3. 12 Feb, 2016 1 commit
  4. 11 Feb, 2016 11 commits
  5. 10 Feb, 2016 2 commits
  6. 03 Feb, 2016 2 commits
  7. 02 Feb, 2016 9 commits
  8. 31 Jan, 2016 3 commits
  9. 21 Jan, 2016 3 commits
    • Hisham Muhammad's avatar
      Merge pull request #351 from Explorer09/graph-height · dcfcae1e
      Hisham Muhammad authored
      GRAPH_HEIGHT macro and 'dot' variable
      dcfcae1e
    • Explorer09's avatar
      Change variable 'dot' to avoid division by reciprocal. · 040613db
      Explorer09 authored
      (Cherry-picked from d56bcd8e, the
      experimental graph coloring branch)
      
      The variable 'dot' in GraphMeterMode_draw now means "maximum number of
      dots per value (column) in graph". The old meaning was "amount of value
      that is to be represented by a dot" and was always a fraction. Due to
      a limitation in floating point computing, if GRAPH_HEIGHT were not a
      power of 2, then rounding errors will occur on numbers like (1.0/3).
      (Currently GRAPH_HEIGHT is 4 and so no precision loss.) 'dot' was used
      as a divisor, and it's "division by a reciprocal". We change that to
      simple multiplication.
      040613db
    • Explorer09's avatar
      New macro GRAPH_HEIGHT for Graph Meter height · d54ab24d
      Explorer09 authored
      (Cherry-picked from e93028d7, the
      experimental graph coloring branch)
      
      Currently GRAPH_HEIGHT=4 . This prevents hard-coding the height of the graph
      meters, and allows user to change it at compile-time.
      d54ab24d
  10. 20 Jan, 2016 1 commit