Skip to content

Releases: solomonrosemite/TypeScript-Todo

Simple Todo v1.9.0

08 Oct 06:42
Compare
Choose a tag to compare

As requested in #12. Simple todo v1.9.0 now support overriding actions!🥳🥳
These can be configured in the settings.json and would look something like this:

"simpleTodo.overrideActionKeywords": [
    {
      "actionName": "Todo:",
      "severity": "Information"
    },
    {
      "actionName": "Bug:",
      "severity": "Warning"
    },
    {
      "actionName": "Fix:",
      "severity": "Information"
    },
    {
      "actionName": "Note:",
      "severity": "Hint"
    }
]

Note that the actions names and severity levels are not case sensitive.

Simple Todo v1.8.8

28 Sep 20:17
Compare
Choose a tag to compare

Another hotfix for release v1.8.6.

Simple Todo v1.8.7

28 Sep 13:15
Compare
Choose a tag to compare

Hot fix for release v1.8.6.

Simple Todo v1.8.6

28 Sep 09:18
Compare
Choose a tag to compare

Simple Todo v1.7.6 now adds support for multi comment actions.

Simple Todo v1.7.6

26 Sep 17:57
Compare
Choose a tag to compare

Simple Todo v1.7.6 extends the default list of languages when checking for actions.

Simple Todo v1.6.6

25 Sep 14:55
Compare
Choose a tag to compare

As request in this issue: #9 Simple Todo now supports overriding folder and file exclusions!🥳🥳

These can be configured using the settings.json and for example would look something like this:

{
  "simpleTodo.overrideFoldersToIgnore": [
    // Default exclusions
    "Library",
    "node_modules",
    "dist",
    "build",
    ".next",
    // Custom added exclusions
    "prod",
    "vendor"
  ],
"simpleTodo.overrideLanguagesToCheck": [
    // Defaults
    "ts",
    "js",
    "html",
    "bat",
    "c",
    "cpp",
    "cs",
    "go",
    "java",
    "lua",
    "php",
    "yaml",
    "py",
    "swift",
    "dart",
    "ps1",
    // Custom
    "txt" // Added because we use txt files for todos
  ]
}