Skip to content

Releases: Dexalot/vscode-solidity-comments

v1.1.2 Release

03 Oct 20:35

Choose a tag to compare

  • still learning VS Code Marketplace, added changelog
  • fixed typos

v1.1.1 Release

03 Oct 20:12

Choose a tag to compare

Updated the README with Marketplace info and bumped version.

v1.1.0 Release

03 Oct 19:45

Choose a tag to compare

First public release

v1.0.4 Release Candidate 5

01 Oct 17:36

Choose a tag to compare

Pre-release

refactored duplicated code

v1.0.3 Release Candidate 4

16 Sep 19:13
0130361

Choose a tag to compare

Pre-release
  • fixed bug with payable keyword in the argument list

v1.0.2 Release Candidate 3

08 Sep 20:45

Choose a tag to compare

Pre-release

Implemented exact matching of keywords with regular expressions so a parameter as _contract or interface1 etc. still generate correct tags.

v1.0.1 Release Candidate 2

08 Sep 19:47

Choose a tag to compare

Pre-release
  • updated metadata
  • improved ReadMe

v1.0.0 Release Candidate 1

08 Sep 16:09

Choose a tag to compare

Pre-release

This is the first (pre-)release of VS Code Solidity documentation helper.

It recognizes contract, interface, library, function and modifier keywords on the current line and adds NatSpec doc comments above the line.

For contract, interface and library keywords the extension adds a header as follows:

/**
 * @author  .
 * @title   .
 * @dev     .
 * @notice  .
 */

For function and modifier keywords the extension adds comments as follows:

/**
 * @notice  .
 * @dev     .
 * @param   _address  .
 * @return  bool  .
 */