mirror of
https://github.com/chylex/IntelliJ-Inspection-Lens.git
synced 2024-11-25 16:42:54 +01:00
Compare commits
2 Commits
29cf88cc4b
...
9f395476df
Author | SHA1 | Date | |
---|---|---|---|
9f395476df | |||
182ad049d9 |
@ -8,7 +8,7 @@ plugins {
|
||||
}
|
||||
|
||||
group = "com.chylex.intellij.inspectionlens"
|
||||
version = "1.3.0"
|
||||
version = "1.3.1"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
@ -1,10 +1,12 @@
|
||||
package com.chylex.intellij.inspectionlens
|
||||
|
||||
import com.intellij.openapi.Disposable
|
||||
import com.intellij.openapi.components.Service
|
||||
|
||||
/**
|
||||
* Gets automatically disposed when the plugin is unloaded.
|
||||
*/
|
||||
@Service
|
||||
class InspectionLensPluginDisposableService : Disposable {
|
||||
override fun dispose() {}
|
||||
}
|
||||
|
@ -17,6 +17,10 @@
|
||||
]]></description>
|
||||
|
||||
<change-notes><![CDATA[
|
||||
<b>Version 1.3.1</b>
|
||||
<ul>
|
||||
<li>Updated minimum version to IntelliJ 2023.3 due to breaking API changes.</li>
|
||||
</ul>
|
||||
<b>Version 1.3.0</b>
|
||||
<ul>
|
||||
<li>Added background colors to lines containing inspections. (<a href="https://github.com/chylex/IntelliJ-Inspection-Lens/pull/15">PR #15</a> by <a href="https://github.com/synopss">synopss</a>)</li>
|
||||
@ -50,10 +54,6 @@
|
||||
<depends>com.intellij.modules.platform</depends>
|
||||
<depends optional="true" config-file="compatibility/InspectionLens-Grazie.xml">tanvd.grazi</depends>
|
||||
|
||||
<extensions defaultExtensionNs="com.intellij">
|
||||
<applicationService serviceImplementation="com.chylex.intellij.inspectionlens.InspectionLensPluginDisposableService" />
|
||||
</extensions>
|
||||
|
||||
<applicationListeners>
|
||||
<listener class="com.chylex.intellij.inspectionlens.InspectionLensPluginListener" topic="com.intellij.ide.plugins.DynamicPluginListener" />
|
||||
</applicationListeners>
|
||||
|
Loading…
Reference in New Issue
Block a user