Skip to content

Commit

Permalink
1.12.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bmewburn committed Aug 8, 2024
1 parent 2508fc3 commit 5ea7ebb
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## [1.12.1 - 2024-08-08]

#### Fixed
- Added missing code lens settings.

## [1.12.0 - 2024-08-08]

See 1.11.x Pre-Release
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 32 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"sponsor": {
"url": "https://intelephense.com"
},
"version": "1.12.0",
"version": "1.12.1",
"publisher": "bmewburn",
"engines": {
"vscode": "^1.82.0"
Expand Down Expand Up @@ -832,6 +832,36 @@
"default": "off",
"description": "Traces the communication between VSCode and the intelephense language server.",
"scope": "window"
},
"intelephense.codeLens.references.enable" : {
"type": "boolean",
"default": false,
"description": "Enable a code lens that shows a reference count and command to peek locations.",
"scope": "window"
},
"intelephense.codeLens.implementations.enable" : {
"type": "boolean",
"default": false,
"description": "Enable a code lens that shows an abstract and interface implementations count and command to peek locations.",
"scope": "window"
},
"intelephense.codeLens.usages.enable" : {
"type": "boolean",
"default": false,
"description": "Enable a code lens that shows a trait usages count and command to peek locations.",
"scope": "window"
},
"intelephense.codeLens.overrides.enable" : {
"type": "boolean",
"default": false,
"description": "Enable a code lens that shows method override count and command to peek locations.",
"scope": "window"
},
"intelephense.codeLens.parent.enable" : {
"type": "boolean",
"default": false,
"description": "Enable a code lens that indicates if a method has a parent implementation and command to peek location.",
"scope": "window"
}
}
}
Expand All @@ -856,7 +886,7 @@
},
"dependencies": {
"fs-extra": "~11.2.0",
"intelephense": "1.12.0",
"intelephense": "1.12.1",
"semver": "~7.6.2",
"vscode-languageclient": "9.0.1"
},
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import { createMiddleware, IntelephenseMiddleware } from './middleware';
import * as fs from 'fs-extra';

const PHP_LANGUAGE_ID = 'php';
const VERSION = '1.12.0';
const VERSION = '1.12.1';
const INDEXING_STARTED_NOTIFICATION = new NotificationType('indexingStarted');
const INDEXING_ENDED_NOTIFICATION = new NotificationType('indexingEnded');
const CANCEL_INDEXING_REQUEST = new RequestType('cancelIndexing');
Expand Down

0 comments on commit 5ea7ebb

Please sign in to comment.