changes.txt 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. == 2.3.3 ==
  2. * Fixed bug that made all fields declared with the @property tag static. ( issue #262 )
  3. * Minor fix to better handle trailing slash on path to template (from jwmetrocat). (issue #237 )
  4. * Fix for @memberOf when applied to inner members. ( issue #264 )
  5. * Fix for @memberOf when applied to symbols documented with @name. ( issue #260 )
  6. * Applied patch from kunhualqk, fix for bug where @link to borrowed member did not resolve to parent class. ( issue #218 )
  7. * Fix for @requires not linking back to the required class
  8. * Added experimental support for @constructs to have an argument, the class name, when applied to a function assignment.
  9. == 2.3.2 ==
  10. * Minor update to the usage notes and corrected the version number displayed in the output.
  11. == 2.3.1 ==
  12. * Fixed HTML typo in allfiles template. ( issue #228 )
  13. * Modified template to display version information for classes.
  14. * Modified template to better support multiple methods with the same name.
  15. * Fixed bug that caused template to error when backtick characters appeared around class names.
  16. == 2.3.0 ==
  17. * Added option -u, --unique to avoid bug that causes multiple symbols with names that differ only by case to overwrite each others output on case-insensitive filesystems. ( issue #162 )
  18. * Fixed bug where {@links} in @deprecated tags did not resolve. ( issue #220 )
  19. * Fixed bug that caused parens around a function to make it to be unrecognized. ( issue #213 )
  20. * Fixed bug prevented explicit links to named anchors from working (thanks katgao.pku). ( issue #215 )
  21. * Fixed bug that prevented full description from appearing in file overview. ( issue #224 )
  22. == 2.2.1 ==
  23. * Fixed bug with class template, where sorting of methods was accidentally removed (thanks dezfowler).
  24. * Added missing test files for the @exports unit tests.
  25. == 2.2.0 ==
  26. * Fixed bug that caused exception when given a folder containing non-js files, even with the x commandline option set to "js". ( issue #193 )
  27. * Fixed typo in index template [patch submitted by olle]. ( issue #198 )
  28. * Modified @borrows tag experimentally to allow for missing "as ..." clause.
  29. * Added support for the @exports tag, to allow one symbol to be documented as another.
  30. * Added support for the -S option to document code following the Secure Modules pattern.
  31. == 2.1.0 ==
  32. * Added support for the @event tag.
  33. * Fixed bug that prevented the : character from appearing in symbol names.
  34. * Fixed bug that prevented underscored symbols marked with @public being tagged as private. (issue #184 )
  35. * Fixed bug that randomly affected the @memberOf tag when the name of the symbol did not include the parent name.
  36. * Fixed bug that prevented templates that were not in the jsdoc-toolkit folder from being found. ( issue #176 )
  37. * Added ability to check for trailing slash on template path. ( issue #177 )
  38. * Modified classDesc so that it no longer is appended with the constructor desc.
  39. * Fixed call to plugin onDocCommentSrc.
  40. * Added missing support for inline doc comments for function return types. ( issue #189 )
  41. * Added command line option -q, --quiet.
  42. * Added command line option -E, --exclude. ( issue #143 )
  43. * Added 2 more hooks for plugins. ( issue #163 )
  44. * Added support for extending built-ins. ( issue #160 )
  45. * Added "compact" option to JSDOC.JsPlate.prototype.process. ( issue #159 )
  46. * @augments no longer documents static members as inherited. ( issue #138 )
  47. * @link to a class now goes to the page for that class, not the constructor. ( issue #178 )
  48. * Warnings of mismatched curly brace now include filename. ( issue #166 )
  49. * Fixed bug affecting template paths loaded via a configuration file when the trailing slash is missing. ( issue #191 )
  50. * Minor optimizations.
  51. == 2.0.2 ==
  52. * Fixed bug that sometimes caused an example of division in the source code to be interpretted as a regex by the JsDoc Toolkit analyzer. ( issue #158 )
  53. * Fixed a bug that prevented private variables marked as @public from appearing in the documentation. ( issue #161 )
  54. * Fixed bug that prevented variable names with underscored properties from appearing in summaries. ( issue #173 )
  55. == 2.0.1 ==
  56. * Fixed bug that prevented @fileOverview tag from being recognized.
  57. * Added support for @fieldOf as a synonym for @field plus @memberOf.
  58. * Added support for @name tag in a @fileOverview comment to control the displayed name of the file.
  59. * Added support for multiple @example tags. ( issue #152 )
  60. * Modified style sheet of jsdoc template to make more readable. ( issue #151 )
  61. * Fixed bug that prevented @since documentation from displaying correctly when it appeared in a class. ( issue #150 )
  62. * Fixed bug that caused inhertited properties to sometimes not resolve correctly. ( issue #144 )
  63. * Modified so that trailing whitespace in @example is always trimmed. ( issue #153 )
  64. * Added support for elseif to JsPlate. (hat tip to fredck)
  65. * Added support for @location urls in the @overview comment to the jsdoc template.
  66. == Changes From Versions 1.4.0 to 2.0.0 ==
  67. * Upgraded included version of Rhino from 1.6 to 1.7R1.
  68. * Removed circular references in parsed documentation objects.
  69. * Improved inheritance handling, now properties and events can be inherited same as methods.
  70. * Improved handling of cross-file relationships, now having two related objects in separate files is not a problem.
  71. * Improved ability to recognize membership of previously defined objects.
  72. * Added ability to redefine parsing behavior with plugins.
  73. * @methodOf is a synonym for @function and @memberOf.
  74. * Added @default to document default values of members that are objects.
  75. * Added ability to parse and refer to inner functions.
  76. * Fixed bug that appeared when calling a method to set properties of the instance referred to by "this".
  77. * Added ability to automatically create links to other symbols.
  78. * New "jsdoc" template now produces fully W3C valid XHTML.
  79. * Inline parameter type hint comments are now documented.
  80. * Fixed error: Locally scoped variables (declared with var) no longer appear as global.
  81. * It is now possible to run JsDoc Toolkit from any directory.
  82. * Added support for inline {@link ...} tags.
  83. * Added support for the -H command-line option to allow for custom content handlers.
  84. * Tag names @inherits and @scope changed to @borrows and @lends.
  85. ? Combining @constructor in a doclet with @lends now supported.
  86. * Multiple @lend tags now supported.
  87. * Added support for the @constructs tag, used inside a @lends block.
  88. * Added support for the @constant tag.
  89. * Fixed bug that prevented the use of [] as a default value.
  90. * Added support for the @field tag.
  91. * Added support for the @public tag (applied to inner functions).
  92. * @namespace tag can now be applied to functions, not just object literals.
  93. * Added support for the -s command line option to suppress source code output.
  94. * Added new unit test framework.
  95. * Underscored symbols are now treated as if they have a @private tag by default.
  96. * Improved support for anonymous constructors.
  97. * Added support for the nocode meta tag.