Dieses Repository beinhaltet HTML- und Javascript Code zur einer NotizenWebApp auf Basis von Web Storage. Zudem sind Mocha/Chai Tests im Browser enthalten. https://meinenotizen.netlify.app/
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.

CHANGELOG.md 3.3KB

4 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. 1.0.10 / 2018-02-15
  2. ------------------
  3. - Use .concat instead of + for arrays, #122.
  4. 1.0.9 / 2016-09-29
  5. ------------------
  6. - Rerelease after 1.0.8 - deps cleanup.
  7. 1.0.8 / 2016-09-29
  8. ------------------
  9. - Maintenance (deps bump, fix node 6.5+ tests, coverage report).
  10. 1.0.7 / 2016-03-17
  11. ------------------
  12. - Teach `addArgument` to accept string arg names. #97, @tomxtobin.
  13. 1.0.6 / 2016-02-06
  14. ------------------
  15. - Maintenance: moved to eslint & updated CS.
  16. 1.0.5 / 2016-02-05
  17. ------------------
  18. - Removed lodash dependency to significantly reduce install size.
  19. Thanks to @mourner.
  20. 1.0.4 / 2016-01-17
  21. ------------------
  22. - Maintenance: lodash update to 4.0.0.
  23. 1.0.3 / 2015-10-27
  24. ------------------
  25. - Fix parse `=` in args: `--examplepath="C:\myfolder\env=x64"`. #84, @CatWithApple.
  26. 1.0.2 / 2015-03-22
  27. ------------------
  28. - Relaxed lodash version dependency.
  29. 1.0.1 / 2015-02-20
  30. ------------------
  31. - Changed dependencies to be compatible with ancient nodejs.
  32. 1.0.0 / 2015-02-19
  33. ------------------
  34. - Maintenance release.
  35. - Replaced `underscore` with `lodash`.
  36. - Bumped version to 1.0.0 to better reflect semver meaning.
  37. - HISTORY.md -> CHANGELOG.md
  38. 0.1.16 / 2013-12-01
  39. -------------------
  40. - Maintenance release. Updated dependencies and docs.
  41. 0.1.15 / 2013-05-13
  42. -------------------
  43. - Fixed #55, @trebor89
  44. 0.1.14 / 2013-05-12
  45. -------------------
  46. - Fixed #62, @maxtaco
  47. 0.1.13 / 2013-04-08
  48. -------------------
  49. - Added `.npmignore` to reduce package size
  50. 0.1.12 / 2013-02-10
  51. -------------------
  52. - Fixed conflictHandler (#46), @hpaulj
  53. 0.1.11 / 2013-02-07
  54. -------------------
  55. - Multiple bugfixes, @hpaulj
  56. - Added 70+ tests (ported from python), @hpaulj
  57. - Added conflictHandler, @applepicke
  58. - Added fromfilePrefixChar, @hpaulj
  59. 0.1.10 / 2012-12-30
  60. -------------------
  61. - Added [mutual exclusion](http://docs.python.org/dev/library/argparse.html#mutual-exclusion)
  62. support, thanks to @hpaulj
  63. - Fixed options check for `storeConst` & `appendConst` actions, thanks to @hpaulj
  64. 0.1.9 / 2012-12-27
  65. ------------------
  66. - Fixed option dest interferens with other options (issue #23), thanks to @hpaulj
  67. - Fixed default value behavior with `*` positionals, thanks to @hpaulj
  68. - Improve `getDefault()` behavior, thanks to @hpaulj
  69. - Imrove negative argument parsing, thanks to @hpaulj
  70. 0.1.8 / 2012-12-01
  71. ------------------
  72. - Fixed parser parents (issue #19), thanks to @hpaulj
  73. - Fixed negative argument parse (issue #20), thanks to @hpaulj
  74. 0.1.7 / 2012-10-14
  75. ------------------
  76. - Fixed 'choices' argument parse (issue #16)
  77. - Fixed stderr output (issue #15)
  78. 0.1.6 / 2012-09-09
  79. ------------------
  80. - Fixed check for conflict of options (thanks to @tomxtobin)
  81. 0.1.5 / 2012-09-03
  82. ------------------
  83. - Fix parser #setDefaults method (thanks to @tomxtobin)
  84. 0.1.4 / 2012-07-30
  85. ------------------
  86. - Fixed pseudo-argument support (thanks to @CGamesPlay)
  87. - Fixed addHelp default (should be true), if not set (thanks to @benblank)
  88. 0.1.3 / 2012-06-27
  89. ------------------
  90. - Fixed formatter api name: Formatter -> HelpFormatter
  91. 0.1.2 / 2012-05-29
  92. ------------------
  93. - Added basic tests
  94. - Removed excess whitespace in help
  95. - Fixed error reporting, when parcer with subcommands
  96. called with empty arguments
  97. 0.1.1 / 2012-05-23
  98. ------------------
  99. - Fixed line wrapping in help formatter
  100. - Added better error reporting on invalid arguments
  101. 0.1.0 / 2012-05-16
  102. ------------------
  103. - First release.