Skip to content

Commit 112208f

Browse files
committed
Update plugin description
1 parent 04945d8 commit 112208f

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Downloads](https://img.shields.io/jetbrains/plugin/d/25039-pixellens.svg)](https://plugins.jetbrains.com/plugin/25039-pixellens)
77

88
<!-- Plugin description -->
9-
[PixelLens](https://plugins.jetbrains.com/plugin/25039-pixellens) is a free and [fully open source](https://github.com/srwi/PyCharm-PixelLens) PyCharm plugin designed to enhance the image visualization capabilities while debugging NumPy, OpenCV, PyTorch, TensorFlow or Pillow (PIL) image data.
9+
[PixelLens](https://plugins.jetbrains.com/plugin/25039-pixellens) is a free and [fully open source](https://github.com/srwi/PyCharm-PixelLens) PyCharm plugin designed to enhance the image visualization capabilities while debugging NumPy, OpenCV, PyTorch, TensorFlow, JAX or Pillow (PIL) image data.
1010

1111
PixelLens is capable of displaying 1D, 2D, 3D or 4D data by right clicking any supported variable in the debugger and selecting <kbd>View as Image</kbd>.
1212

build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,10 @@ intellijPlatform {
6868
if (!containsAll(listOf(start, end))) {
6969
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
7070
}
71-
subList(indexOf(start) + 1, indexOf(end)).joinToString("\n").let(::markdownToHTML)
71+
val shortDescription = "Free PyCharm image viewer plugin for visualizing and debugging NumPy, OpenCV, PyTorch, TensorFlow, JAX and PIL data."
72+
val longDescription = subList(indexOf(start) + 1, indexOf(end)).joinToString("\n")
73+
val fullDescription = "$shortDescription\n\n --- \n\n# PixelLens for PyCharm\n\n$longDescription"
74+
fullDescription.let(::markdownToHTML)
7275
}
7376
}
7477

0 commit comments

Comments
 (0)