Ein Projekt das es ermöglicht Beerpong über das Internet von zwei unabhängigen positionen aus zu spielen. Entstehung im Rahmen einer Praktikumsaufgabe im Fach Interaktion.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

History.md 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. 2.0.0 / 2014-09-01
  2. ==================
  3. * package: update "browserify" to v5.11.0
  4. * node: use stderr rather than stdout for logging (#29, @stephenmathieson)
  5. 1.0.4 / 2014-07-15
  6. ==================
  7. * dist: recompile
  8. * example: remove `console.info()` log usage
  9. * example: add "Content-Type" UTF-8 header to browser example
  10. * browser: place %c marker after the space character
  11. * browser: reset the "content" color via `color: inherit`
  12. * browser: add colors support for Firefox >= v31
  13. * debug: prefer an instance `log()` function over the global one (#119)
  14. * Readme: update documentation about styled console logs for FF v31 (#116, @wryk)
  15. 1.0.3 / 2014-07-09
  16. ==================
  17. * Add support for multiple wildcards in namespaces (#122, @seegno)
  18. * browser: fix lint
  19. 1.0.2 / 2014-06-10
  20. ==================
  21. * browser: update color palette (#113, @gscottolson)
  22. * common: make console logging function configurable (#108, @timoxley)
  23. * node: fix %o colors on old node <= 0.8.x
  24. * Makefile: find node path using shell/which (#109, @timoxley)
  25. 1.0.1 / 2014-06-06
  26. ==================
  27. * browser: use `removeItem()` to clear localStorage
  28. * browser, node: don't set DEBUG if namespaces is undefined (#107, @leedm777)
  29. * package: add "contributors" section
  30. * node: fix comment typo
  31. * README: list authors
  32. 1.0.0 / 2014-06-04
  33. ==================
  34. * make ms diff be global, not be scope
  35. * debug: ignore empty strings in enable()
  36. * node: make DEBUG_COLORS able to disable coloring
  37. * *: export the `colors` array
  38. * npmignore: don't publish the `dist` dir
  39. * Makefile: refactor to use browserify
  40. * package: add "browserify" as a dev dependency
  41. * Readme: add Web Inspector Colors section
  42. * node: reset terminal color for the debug content
  43. * node: map "%o" to `util.inspect()`
  44. * browser: map "%j" to `JSON.stringify()`
  45. * debug: add custom "formatters"
  46. * debug: use "ms" module for humanizing the diff
  47. * Readme: add "bash" syntax highlighting
  48. * browser: add Firebug color support
  49. * browser: add colors for WebKit browsers
  50. * node: apply log to `console`
  51. * rewrite: abstract common logic for Node & browsers
  52. * add .jshintrc file
  53. 0.8.1 / 2014-04-14
  54. ==================
  55. * package: re-add the "component" section
  56. 0.8.0 / 2014-03-30
  57. ==================
  58. * add `enable()` method for nodejs. Closes #27
  59. * change from stderr to stdout
  60. * remove unnecessary index.js file
  61. 0.7.4 / 2013-11-13
  62. ==================
  63. * remove "browserify" key from package.json (fixes something in browserify)
  64. 0.7.3 / 2013-10-30
  65. ==================
  66. * fix: catch localStorage security error when cookies are blocked (Chrome)
  67. * add debug(err) support. Closes #46
  68. * add .browser prop to package.json. Closes #42
  69. 0.7.2 / 2013-02-06
  70. ==================
  71. * fix package.json
  72. * fix: Mobile Safari (private mode) is broken with debug
  73. * fix: Use unicode to send escape character to shell instead of octal to work with strict mode javascript
  74. 0.7.1 / 2013-02-05
  75. ==================
  76. * add repository URL to package.json
  77. * add DEBUG_COLORED to force colored output
  78. * add browserify support
  79. * fix component. Closes #24
  80. 0.7.0 / 2012-05-04
  81. ==================
  82. * Added .component to package.json
  83. * Added debug.component.js build
  84. 0.6.0 / 2012-03-16
  85. ==================
  86. * Added support for "-" prefix in DEBUG [Vinay Pulim]
  87. * Added `.enabled` flag to the node version [TooTallNate]
  88. 0.5.0 / 2012-02-02
  89. ==================
  90. * Added: humanize diffs. Closes #8
  91. * Added `debug.disable()` to the CS variant
  92. * Removed padding. Closes #10
  93. * Fixed: persist client-side variant again. Closes #9
  94. 0.4.0 / 2012-02-01
  95. ==================
  96. * Added browser variant support for older browsers [TooTallNate]
  97. * Added `debug.enable('project:*')` to browser variant [TooTallNate]
  98. * Added padding to diff (moved it to the right)
  99. 0.3.0 / 2012-01-26
  100. ==================
  101. * Added millisecond diff when isatty, otherwise UTC string
  102. 0.2.0 / 2012-01-22
  103. ==================
  104. * Added wildcard support
  105. 0.1.0 / 2011-12-02
  106. ==================
  107. * Added: remove colors unless stderr isatty [TooTallNate]
  108. 0.0.1 / 2010-01-03
  109. ==================
  110. * Initial release