Skip to content

Commit

Permalink
Update plugin description
Browse files Browse the repository at this point in the history
  • Loading branch information
srwi committed Sep 23, 2024
1 parent 04945d8 commit 112208f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Downloads](https://img.shields.io/jetbrains/plugin/d/25039-pixellens.svg)](https://plugins.jetbrains.com/plugin/25039-pixellens)

<!-- Plugin description -->
[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.
[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.

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>.

Expand Down
5 changes: 4 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,10 @@ intellijPlatform {
if (!containsAll(listOf(start, end))) {
throw GradleException("Plugin description section not found in README.md:\n$start ... $end")
}
subList(indexOf(start) + 1, indexOf(end)).joinToString("\n").let(::markdownToHTML)
val shortDescription = "Free PyCharm image viewer plugin for visualizing and debugging NumPy, OpenCV, PyTorch, TensorFlow, JAX and PIL data."
val longDescription = subList(indexOf(start) + 1, indexOf(end)).joinToString("\n")
val fullDescription = "$shortDescription\n\n --- \n\n# PixelLens for PyCharm\n\n$longDescription"
fullDescription.let(::markdownToHTML)
}
}

Expand Down

0 comments on commit 112208f

Please sign in to comment.