diff --git a/CHANGELOG.md b/CHANGELOG.md index 05771c5..794ae97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ ## [Unreleased] +### Added + +- Support for Serilog reported by @Twinki14 +- Context menu item to toggle formatting in the console + ## [0.3.0] - 2024-08-16 ### Added diff --git a/README.md b/README.md index 431a67b..bcb99a9 100644 --- a/README.md +++ b/README.md @@ -47,11 +47,10 @@ After installation, newly written JSON lines logs in the console will be automat ## Limitations JetBrains IDEs provide different kinds of consoles for different run configurations, but this plugin does not currently -support all consoles due to the lack of extension points in the IDE. The following consoles are known to not work with -the plugin: +support all consoles due to the lack of extension points in the IDE. The console which does have the following context +menu item is not supported. -- Shell scripts run configurations -- Rider's console +![Context menu item with text "Pretty JSON Log"](media/context-menu.png) ## How to see the debug log of the plugin diff --git a/gradle.properties b/gradle.properties index 53b51b1..4349952 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,7 +3,7 @@ pluginGroup=io.github.orangain.prettyjsonlog pluginName=pretty-json-log-plugin pluginRepositoryUrl=https://github.com/orangain/pretty-json-log-plugin # SemVer format -> https://semver.org -pluginVersion=0.3.0 +pluginVersion=0.4.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild=232 pluginUntilBuild=242.* diff --git a/media/context-menu.png b/media/context-menu.png new file mode 100644 index 0000000..59b73fa Binary files /dev/null and b/media/context-menu.png differ