From 6dc9aadd8544e17ff293c06097d4db3cc65ce7d6 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Jadda <17564080+pavankjadda@users.noreply.github.com> Date: Fri, 5 Jul 2024 15:43:27 -0400 Subject: [PATCH 1/2] fix(core): changes active author name and links --- .github/FUNDING.yml | 4 ++-- CHANGELOG.md | 20 +++++++++++++++++--- README.md | 21 +++++++++++++-------- gradle.properties | 2 +- settings.gradle.kts | 2 +- src/main/resources/META-INF/plugin.xml | 2 +- 6 files changed, 35 insertions(+), 16 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 5eadb33..15f70f5 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,4 +1,4 @@ # These are supported funding model platforms -github: hsz -custom: "https://www.paypal.me/hsz" +github: pavankjadda +custom: "https://www.paypal.me/pavankjadda" diff --git a/CHANGELOG.md b/CHANGELOG.md index ae9dd1b..401b247 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,42 +5,50 @@ ## [Unreleased] This is an EAP release. -Please report any issues or ideas via [GitHub Issues](https://github.com/hsz/intellij-foldable-project-view/issues). +Please report any issues or ideas +via [GitHub Issues](https://github.com/pavankjadda/intellij-foldable-project-view/issues). Thanks! -@hsz +@pavankjadda ### Added + - Support for multiple rules/groups in the Project View - Possibility for specifying the background/foreground of the rule ### Changed + - Use a separated storage file within the `.idea` directory: `FoldableProjectView.xml` ## [1.1.4] - 2022-11-13 ### Added + - Support 231.* IDE releases ## [1.1.1] ### Fixed + - Fixed incorrect `projectConfigurable` name ## [1.1.0] ### Added + - Hide files or folders that are ignored or excluded (@Recks11) ## [1.0.2] ### Added + - Dark/light icons - Support for 2021.3 ## [1.0.0] ### Added + - Fold matching root elements of the project modules in the Project View - Enable/disable folding via Preferences or Project View options menu - Optionally fold directories @@ -48,11 +56,17 @@ Thanks! - Hide all groups - Case-insensitive matching - Live ProjectView preview -- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template) +- Initial scaffold created + from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template) [Unreleased]: https://github.com/hsz/intellij-foldable-projectview/compare/v1.1.4...HEAD + [1.1.4]: https://github.com/hsz/intellij-foldable-projectview/compare/v1.1.1...v1.1.4 + [1.1.1]: https://github.com/hsz/intellij-foldable-projectview/compare/v1.1.0...v1.1.1 + [1.1.0]: https://github.com/hsz/intellij-foldable-projectview/compare/v1.0.2...v1.1.0 + [1.0.2]: https://github.com/hsz/intellij-foldable-projectview/compare/v1.0.0...v1.0.2 + [1.0.0]: https://github.com/hsz/intellij-foldable-projectview/commits/v1.0.0 diff --git a/README.md b/README.md index 21e1ce4..5f8961a 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,16 @@ # Foldable Project View -![Build](https://github.com/hsz/intellij-foldable-projectview/workflows/Build/badge.svg) +![Build](https://github.com/pavankjadda/intellij-foldable-projectview/workflows/Build/badge.svg) [![Version](https://img.shields.io/jetbrains/plugin/v/17288.svg)](https://plugins.jetbrains.com/plugin/17288) [![Downloads](https://img.shields.io/jetbrains/plugin/d/17288.svg)](https://plugins.jetbrains.com/plugin/17288) -The Foldable Project View is a plugin for the IntelliJ-based IDEs that lets you fold files located in the root of your project. +The Foldable Project View is a plugin for the IntelliJ-based IDEs that lets you fold files located in the root of your +project. Available features: + - Fold matching root elements of the project modules in the Project View - Enable/disable folding via Preferences or Project View options menu - Optionally fold directories @@ -19,31 +21,34 @@ Available features: ## Demo -Foldable Project View Demo +Foldable Project View Demo ## Screenshots ### Project View + ![Project View](.github/readme/project-view.png) ### Preferences + ![Preferences](.github/readme/preferences.png) ## Installation - Using IDE built-in plugin system: - - Settings/Preferences > Plugins > Marketplace > Search for "Foldable Project View" > + + Settings/Preferences > Plugins > Marketplace > Search for "Foldable Project + View" > Install Plugin - + - Manually: - Download the [latest release](https://github.com/hsz/intellij-foldable-projectview/releases/latest) and install it manually using + Download the [latest release](https://github.com/pavankjadda/intellij-foldable-projectview/releases/latest) and + install it manually using Settings/Preferences > Plugins > ⚙️ > Install plugin from disk... - --- Plugin based on the [IntelliJ Platform Plugin Template][template]. diff --git a/gradle.properties b/gradle.properties index 9b33c43..dbff045 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html pluginGroup=ski.chrzanow.foldableprojectview pluginName=Foldable Project View -pluginRepositoryUrl=https://github.com/hsz/intellij-foldable-projectview +pluginRepositoryUrl=https://github.com/pavankjadda/intellij-foldable-projectview # SemVer format -> https://semver.org pluginVersion=3.0.0 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html diff --git a/settings.gradle.kts b/settings.gradle.kts index b6afe26..79967f4 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -1,2 +1,2 @@ rootProject.name = "Foldable Project View" -//includeBuild("/Users/hsz/Projects/JetBrains/gradle-intellij-plugin") +//includeBuild("/Users/pavankjadda/Projects/JetBrains/gradle-intellij-plugin") diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 21b54b2..0d7cbf5 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,7 +1,7 @@ ski.chrzanow.foldableprojectview Foldable Project View - hsz + pavankjadda com.intellij.modules.platform From a0622351f17906f7315411a578d5506eb6efad42 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Jadda <17564080+pavankjadda@users.noreply.github.com> Date: Fri, 5 Jul 2024 15:45:24 -0400 Subject: [PATCH 2/2] fix(core): changes active author name and links --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4be18ab..1b3e2f2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Validate wrapper - name: Gradle Wrapper Validation @@ -42,14 +42,14 @@ jobs: # Set up Java environment for the next steps - name: Setup Java - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: zulu java-version: 17 # Setup Gradle - name: Setup Gradle - uses: gradle/gradle-build-action@v2 + uses: gradle/actions/setup-gradle@v3 with: gradle-home-cache-cleanup: true