diff --git a/CHANGELOG.md b/CHANGELOG.md index b9418f5..edd608e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -62,4 +62,8 @@ - Fixed a bug with LOOP/REPEAT recognition and spacing (no issue) - Fixed a bug with formatting for comment lines (#110) - Added new indentComment setting to control comment indentation (#111) -- Added new customFunctionPath setting to allow users to contribute custom functions/subroutines for IntelliSense and linting (#113) \ No newline at end of file +- Added new customFunctionPath setting to allow users to contribute custom functions/subroutines for IntelliSense and linting (#113) + +### 2.0.10 + +- Fixed bug with customFunctionPath \ No newline at end of file diff --git a/client/package-lock.json b/client/package-lock.json index db6f3a5..cfe7e13 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -1,6 +1,6 @@ { "name": "mvbasic", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/client/package.json b/client/package.json index 6226856..b32cb27 100644 --- a/client/package.json +++ b/client/package.json @@ -2,7 +2,7 @@ "name": "mvbasic", "displayName": "MV Basic", "description": "MV Basic", - "version": "2.0.9", + "version": "2.0.10", "publisher": "mvextensions", "license": "MIT", "icon": "../images/mvbasic-logo.png", diff --git a/package-lock.json b/package-lock.json index 1c870ac..4b3914b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "mvbasic", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e8c3e47..66aea2c 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "mvbasic", "displayName": "MV Basic", "description": "MV Basic", - "version": "2.0.9", + "version": "2.0.10", "publisher": "mvextensions", "license": "MIT", "icon": "images/mvbasic-logo.png", diff --git a/server/package-lock.json b/server/package-lock.json index f223386..8648729 100644 --- a/server/package-lock.json +++ b/server/package-lock.json @@ -1,6 +1,6 @@ { "name": "mvbasic", - "version": "2.0.9", + "version": "2.0.10", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/server/package.json b/server/package.json index cf8fed2..a3d4e5c 100644 --- a/server/package.json +++ b/server/package.json @@ -2,7 +2,7 @@ "name": "mvbasic", "displayName": "MV Basic", "description": "MV Basic", - "version": "2.0.9", + "version": "2.0.10", "publisher": "mvextensions", "license": "MIT", "icon": "../images/mvbasic-logo.png", diff --git a/server/src/server.ts b/server/src/server.ts index b5a29fa..5a8d93a 100644 --- a/server/src/server.ts +++ b/server/src/server.ts @@ -628,6 +628,7 @@ connection.onDidChangeConfiguration(change => { ignoreGotoScope = settings.MVBasic.ignoreGotoScope; customWordList = settings.MVBasic.customWords; customWordPath = settings.MVBasic.customWordPath; + customFunctionPath = settings.MVBasic.customFunctionPath; languageType = settings.MVBasic.languageType; const _logLevel = (settings.MVBasic.trace && settings.MVBasic.trace.server) || 'off'; switch (_logLevel) {