Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Plugin coordinates surfaced to JetBrains Marketplace when we eventually publish.
pluginGroup = com.xphp.lsp
pluginName = xphp
pluginVersion = 0.2.1
pluginVersion = 0.3.0

# Plugin compatibility window.
#
Expand Down Expand Up @@ -31,15 +31,15 @@ platformVersion = 2026.1.2
# REQUIRED: the build FAILS if this is unset or empty, by design -- a plugin
# jar must never ship without an embedded LSP. Uncomment and set it to the
# phar download URL (e.g. a GitHub release asset):
xphpLspPharUrl = https://github.com/xphp-lang/language-server/releases/download/v0.2.5/xphp-lsp.phar
xphpLspPharUrl = https://github.com/xphp-lang/language-server/releases/download/v0.3.1/xphp-lsp.phar

# OPTIONAL: expected sha256 of the bytes at xphpLspPharUrl. When set, the
# downloadLspPhar task verifies the download against it (failing the build on
# mismatch) AND tracks it as a build input -- so if a release is RE-PUBLISHED
# at the same URL (same version, new bytes), bumping this value forces a
# re-download that the URL alone would not trigger. Update it whenever
# xphpLspPharUrl changes: `sha256sum build/lsp/xphp-lsp.phar` after a fetch.
xphpLspPharSha256 = 6deca5541f25ffcceb5e82dff01cf6c33cbfcf5610dbaacf1394ae43e19ec9fc
xphpLspPharSha256 = 36f06bfbcd74a360bc8a7ca175d065d04c393789388bab2e79ec92097a636352

# Bundled IDE plugin we depend on so PhpStorm's PHP language plumbing is on
# the classpath at compile time and at runtime in the sandbox.
Expand Down
6 changes: 6 additions & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
]]></description>

<change-notes><![CDATA[
<h3>0.3.0</h3>
<ul>
<li>Bundle xphp language server v0.3.1: faster hover and go-to-definition
(fixes multi-second delays that stopped hover popups from appearing on
projects using PHP native/stdlib symbols).</li>
</ul>
<h3>0.2.1</h3>
<ul>
<li>Bundle xphp language server v0.2.5.</li>
Expand Down
Loading