Skip to content

Commit fe540a8

Browse files
z8dnclaude
andcommitted
Update plugin name from 'Advanced Android Project View' to 'Advanced Android Project Tree'
Updated all references to match the A2PT acronym consistently across: - Plugin display name in plugin.xml and gradle.properties - Settings page title and descriptions - Documentation (README.md, CONTRIBUTING.md) - Project configuration files 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 09618e4 commit fe540a8

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

.idea/.name

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Contributing to Advanced Android Project View
1+
# Contributing to Advanced Android Project Tree
22

3-
Thank you for your interest in contributing to Advanced Android Project View! We welcome contributions from the community and are grateful for your support.
3+
Thank you for your interest in contributing to Advanced Android Project Tree! We welcome contributions from the community and are grateful for your support.
44

55
## Table of Contents
66

@@ -347,4 +347,4 @@ If you have questions about contributing:
347347

348348
---
349349

350-
Thank you for contributing to Advanced Android Project View! 🎉
350+
Thank you for contributing to Advanced Android Project Tree! 🎉

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1 align="center">Advanced Android Project View (A2PT)</h1></br>
1+
<h1 align="center">Advanced Android Project Tree (A2PT)</h1></br>
22

33
<p align="center">
44
<a href="https://opensource.org/licenses/Apache-2.0"><img alt="License" src="https://img.shields.io/badge/License-Apache%202.0-blue.svg"/></a>
@@ -7,7 +7,7 @@
77
</p>
88

99
<!-- Plugin description -->
10-
<p><strong>Advanced Android Project View</strong> enhances the Android Studio project view by providing quick access to commonly used directories and files that are normally hidden or difficult to navigate to.</p>
10+
<p><strong>Advanced Android Project Tree</strong> enhances the Android Studio project view by providing quick access to commonly used directories and files that are normally hidden or difficult to navigate to.</p>
1111

1212
<h3>Features</h3>
1313
<ul>
@@ -33,7 +33,7 @@ Have a suggestion? Feel free to open an [issue](https://github.com/z8dn/advanced
3333
### From JetBrains Marketplace (Recommended)
3434
1. Open Android Studio/IntelliJ IDEA
3535
2. Go to **Settings/Preferences** (⌘, on Mac or Ctrl+Alt+S on Windows/Linux) → **Plugins****Marketplace**
36-
3. Search for "Advanced Android Project View"
36+
3. Search for "Advanced Android Project Tree"
3737
4. Click **Install** and restart Android Studio/IntelliJ IDEA
3838
![img/plugin-marketplace-installation.png](img/plugin-marketplace-installation.png)
3939

@@ -55,7 +55,7 @@ Have a suggestion? Feel free to open an [issue](https://github.com/z8dn/advanced
5555
Alternatively, right-click in the Project View toolbar and select appearance options.
5656

5757
### Configure Project File Groups
58-
1. Go to **Settings/Preferences****Tools****Advanced Android Project View**
58+
1. Go to **Settings/Preferences****Tools****Advanced Android Project Tree**
5959
2. Click **Add** to create a new file group
6060
3. Enter a group name (e.g., "Documentation", "AI Rules")
6161
![img/settings-custom-file-groups.png](img/settings-custom-file-groups.png)

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# IntelliJ Platform Artifacts Repositories -> https://plugins.jetbrains.com/docs/intellij/intellij-artifacts.html
22

33
pluginGroup = com.z8dn.a2pt
4-
pluginName = Advanced Android Project View
4+
pluginName = Advanced Android Project Tree
55
pluginRepositoryUrl = https://github.com/z8dn/advanced-android-project-view
66
# SemVer format -> https://semver.org
77
pluginVersion = 0.0.6

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name = "Advanced Android Project View"
1+
rootProject.name = "Advanced Android Project Tree"
22

33
plugins {
44
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"

src/main/kotlin/com/z8dn/plugins/a2pt/settings/AndroidViewSettingsConfigurable.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import javax.swing.*
1717
import javax.swing.table.AbstractTableModel
1818

1919
/**
20-
* Settings page for Advanced Android Project View.
20+
* Settings page for Advanced Android Project Tree.
2121
*/
2222
class AndroidViewSettingsConfigurable : SearchableConfigurable {
2323

src/main/resources/META-INF/plugin.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<idea-plugin>
22
<id>com.z8dn.plugins.a2pt</id>
3-
<name>Advanced Android Project View</name>
3+
<name>Advanced Android Project Tree</name>
44
<vendor url="https://z8dn.github.io/">Zayden</vendor>
55

66
<depends>com.intellij.modules.platform</depends>
@@ -52,7 +52,7 @@
5252
<action id="CustomizeAndroidTreeViewAction"
5353
class="com.z8dn.plugins.a2pt.actions.CustomizeAndroidTreeViewAction"
5454
text="Customize Android Tree View..."
55-
description="Open Advanced Android Project View settings"/>
55+
description="Open Advanced Android Project Tree settings"/>
5656
</group>
5757
</actions>
5858
</idea-plugin>

src/main/resources/messages/AndroidViewBundle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
action.ProjectView.ShowBuildDirectoryAction.text=Display Build Directory
33
action.ProjectView.ShowProjectFilesInModuleAction.text=Display Project Files in Modules
44
action.ProjectView.CustomizeAndroidTreeViewAction.text=Customize Android Tree View...
5-
action.ProjectView.CustomizeAndroidTreeViewAction.description=Open Advanced Android Project View settings
5+
action.ProjectView.CustomizeAndroidTreeViewAction.description=Open Advanced Android Project Tree settings
66

77
# Settings
8-
settings.DisplayName.text=Advanced Android Project View
8+
settings.DisplayName.text=Advanced Android Project Tree
99
settings.ShowBuildDirectory.text=Show build directory
1010
settings.ShowBuildDirectory.description=Show the build directory in Android modules
1111
settings.CustomFileGroups.text=Custom File Groups

0 commit comments

Comments
 (0)