Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # v1.2.4
  2. - reverting engine constraint back to ^12.0.0
  3. # v1.2.3
  4. - publishing missing fix: point package's main to .cjs file
  5. # v1.2.2
  6. - re-export ./util on the top-level for compatibility with older Node
  7. - point package's main to .cjs file
  8. # v1.2.1
  9. - bump `engines` per `exports` issues in earlier Node versions
  10. # v1.2.0
  11. - keep and handle appropriately CR line endings
  12. # v1.1.6-beta.3
  13. - process CRs as a separate .lineEnd toke
  14. # v1.1.6-beta.2
  15. - ESM/CJS compatibility fixes
  16. # v1.1.6-beta.1
  17. - support native ESM
  18. # v1.1.6-beta.0
  19. - keep original CR line endings
  20. - allow to normalize line endings with `crlf` transform
  21. # v1.1.5
  22. - drop unused variables
  23. - add .editorconfig
  24. # v1.1.4
  25. - `bugfix` fix unsynced lib/
  26. # v1.1.3
  27. - export primitive type on the top level: Markers, Block, Spec, Line, Tokens, Problem
  28. # v1.1.2
  29. - `bugfix` Allow to build nested tags from `name.subname` even if `name` wasn't d
  30. - `bugfix` Preserve indentation when extracting comments
  31. # v1.1.1
  32. - add helpers for rewiring Spec.source <-> Spec.tags.source
  33. # v1.1.0
  34. - split tokenizers into separate modules
  35. - allow multiline {type} definitions - issue #109
  36. - allow using "=>" in [name=default] defaults – issue #112
  37. - allow using "=" in quoted [name=default] defaults – issue #112
  38. - add tokenizers usage example - issue #111
  39. # v1.0.0
  40. - complete rewrite in TS with more flexible API
  41. # v0.7.6
  42. - distinct non-critical errors by providing `err.warning`
  43. # v0.7.5
  44. - name parsing fixes
  45. # v0.7.4
  46. - node 8 backward compatibility fixes
  47. # v0.7.3
  48. - make stringify result more close to the source
  49. # v0.7.2
  50. - make stringify to start each line with * in multiline comments
  51. # v0.7.1
  52. - ensure non-space characters after asterisk are included in source
  53. # v0.7.0
  54. - allow fenced blocks in tag description, see opts.fence
  55. # v0.6.2
  56. - document TypeScript definitions
  57. # v0.6.1
  58. - adjust strigifier indentation
  59. # v0.6.0
  60. - soft-drop node@6 support
  61. - migrate to ES6 syntax
  62. - allow to generate comments out of parsed data
  63. # v0.5.5
  64. - allow loose tag names, e.g. @.tag, @-tag
  65. # v0.5.4
  66. - allow quoted literal names, e.g. `@tag "My Var" description`
  67. # v0.5.3
  68. - corrected TypeScript definitions
  69. # v0.5.2
  70. - added TypeScript definitions
  71. - removed `readable-stream` dependency
  72. # v0.5.1
  73. - Support for tab as separator between tag components.
  74. - Docs: Indicate when `optional` is `true`; `default` property
  75. # v0.5.0
  76. - line wrapping control with `opts.join`
  77. # v0.4.2
  78. - tolerate inconsistent lines alignment within block
  79. # v0.4.1
  80. - refactored parsing, allow to not start lines with "* " inside block
  81. # v0.3.2
  82. - fix RegExp for `description` extraction to allow $ char
  83. # v0.3.1
  84. - use `readable-stream` fro Node 0.8 comatibility
  85. - allow to pass optional parameters to `parse.file(path [,opts], done)`
  86. - allow `parse.stream` to work with Buffers in addition to strings
  87. # v0.3.0
  88. - `feature` allow to use custom parsers
  89. - `feature` always include source, no `raw_value` option needed
  90. - `bugfix` always provide `optional` tag property
  91. - `refactor` clean up tests
  92. # v0.2.3
  93. - `bugfix` Accept `/** one line */` comments
  94. - `refactor` Get rid of `lodash` to avoid unnecessary extra size when bundled
  95. # v0.2.2
  96. - `feature` allow spaces in default values `@my-tag {my.type} [name=John Doe]`
  97. # v0.2.1
  98. - `refactor` make line pasing mechanism more tolerable
  99. # v0.2.0
  100. - `feature` include source line numbers in parsed data
  101. - `feature` optionally prevent dotten names expanding
  102. # v0.1.2
  103. - `bugfix` Allow to build nested tags from `name.subname` even if `name` wasn't d
  104. - `bugfix` Preserve indentation when extracting comments
  105. # v0.1.1
  106. - `improvement` `parse(source)` returns array of all blocks found in source or an empty array
  107. - `bugfix` fixed indented blocks parsing
  108. # v0.1.0
  109. Initial implementation