diff --git a/CHANGELOG.md b/CHANGELOG.md index a4f4d3b..222beb2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.6] - 2021-03-19 + +### Fixed +- Make valid project names case insensitive + + ## [2.0.5] - 2020-03-19 -### Fixes +### Fixed - Handle paths with spaces better diff --git a/package.json b/package.json index dab1ab2..39066ab 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "processing-vscode", "displayName": "Processing VSCode", "description": "Processing Language Support for VSCode", - "version": "2.0.5", + "version": "2.0.6", "publisher": "Luke-zhang-04", "engines": { "vscode": "^1.48.0" diff --git a/rollup.config.js b/rollup.config.js index a2f155b..2825636 100644 --- a/rollup.config.js +++ b/rollup.config.js @@ -6,7 +6,7 @@ import typescript from "@rollup/plugin-typescript" const banner = `/** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang * @preserve */ diff --git a/src/commands/run.ts b/src/commands/run.ts index 95085e1..5eb37df 100644 --- a/src/commands/run.ts +++ b/src/commands/run.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/diagnostics.ts b/src/diagnostics.ts index 0da5670..480c327 100644 --- a/src/diagnostics.ts +++ b/src/diagnostics.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/documentation.ts b/src/documentation.ts index 1288c76..0adc463 100644 --- a/src/documentation.ts +++ b/src/documentation.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/getConfig.ts b/src/getConfig.ts index 1e45f84..d45f140 100644 --- a/src/getConfig.ts +++ b/src/getConfig.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/index.ts b/src/index.ts index 606c387..f5ca8b3 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/search.ts b/src/search.ts index 7fe0d15..8a45720 100644 --- a/src/search.ts +++ b/src/search.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ diff --git a/src/utils.ts b/src/utils.ts index afd04e7..dae96e0 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,8 +1,8 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ export const isValidProcessingProject = (path?: string): boolean => - path !== undefined && /^[\/_$a-z][\/\w$]*$/.test(path) + path !== undefined && /^[\/_$a-z][\/\w$]*$/iu.test(path) diff --git a/src/validateCommand.ts b/src/validateCommand.ts index aed8b1c..315d726 100644 --- a/src/validateCommand.ts +++ b/src/validateCommand.ts @@ -1,6 +1,6 @@ /** * processing-vscode - Processing Language Support for VSCode - * @version 2.0.5 + * @version 2.0.6 * @copyright (C) 2016 - 2020 Tobiah Zarlez, 2021 Luke Zhang */ import childProcess from "child_process"