1. 13 1月, 2018 1 次提交
  2. 06 3月, 2017 1 次提交
  3. 06 12月, 2016 1 次提交
  4. 16 1月, 2016 2 次提交
  5. 06 10月, 2015 1 次提交
  6. 22 2月, 2015 1 次提交
  7. 15 2月, 2015 1 次提交
  8. 01 2月, 2015 1 次提交
    • A
      Add Interrupt() function to termbox · c259b353
      Andrew Dunham 提交于
      This function can be used to interrupt an ongoing PollEvent() call,
      causing that call to return an Event with type `EventInterrupt`.
      
      Also added a demonstration of how this could work.
      c259b353
  9. 20 12月, 2014 1 次提交
  10. 02 12月, 2014 1 次提交
  11. 01 12月, 2014 1 次提交
    • N
      Fix typo in send_attr. · 34a71356
      nsf 提交于
      As noted by the initial committer it seems like a bug.
      34a71356
  12. 30 11月, 2014 1 次提交
  13. 30 5月, 2014 1 次提交
  14. 26 2月, 2014 1 次提交
  15. 17 12月, 2013 3 次提交
  16. 16 12月, 2013 1 次提交
  17. 15 12月, 2013 1 次提交
  18. 14 12月, 2013 2 次提交
  19. 13 10月, 2012 2 次提交
    • G
      go fmt · 0c012bd9
      Georg Reinke 提交于
      0c012bd9
    • G
      Actually close fds in Close() · c6ecc385
      Georg Reinke 提交于
      With signal-driven IO, it is possible to create a channel that signals available
      input. By combining this with non-blocking IO and another channel, the problem
      on Darwin _should_ be circumvented. I have not tested this on Darwin yet, but
      it works on Linux.
      c6ecc385
  20. 10 10月, 2012 1 次提交
  21. 01 8月, 2012 1 次提交
    • N
      Backwards incompatible change, see full commit message for details. · 02b9e592
      nsf 提交于
      Somehow I missed the point, where there were input and output errors. It was
      more or less handled in the C version, but all of the errors are totally ignored
      in the Go version. This commit adds error. The only incompatible change is
      PollEvent function, you'll have to handle or ignore its second return value.
      
      I think an ability to handle these errors is important, not very important when
      running a termbox application locally, but it is important when running through
      ssh on a remote host. Hopefully now it's the very last incompatible API change.
      02b9e592
  22. 22 3月, 2012 1 次提交
    • N
      Make ColorDefault == 0, add AttrReverse. · 7eb798fd
      nsf 提交于
      AttrReverse makes sense mostly with ColorDefault, but since now ColorDefault is
      0, you can simply use AttrReverse as an only argument.
      
      	termbox.SetCell(x, y, ch, termbox.AttrReverse, termbox.AttrReverse)
      
      AttrReverse is a global attribute, it will be applied if foreground has it or
      background has it or both.
      7eb798fd
  23. 19 3月, 2012 1 次提交
  24. 17 3月, 2012 2 次提交
  25. 16 3月, 2012 1 次提交
  26. 15 3月, 2012 2 次提交
  27. 14 3月, 2012 2 次提交
  28. 11 2月, 2012 1 次提交
  29. 13 1月, 2012 2 次提交