Skip to content

Commit c3b2fd3

Browse files
committed
feat: update plugin basic info
1 parent 10556e8 commit c3b2fd3

File tree

6 files changed

+74
-58
lines changed

6 files changed

+74
-58
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,12 @@
33
# intellij-platform-git-stats-plugin Changelog
44

55
## [Unreleased]
6+
7+
## [0.0.1] - 2023-05-15
8+
69
### Added
7-
- Initial scaffold created from [IntelliJ Platform Plugin Template](https://github.com/JetBrains/intellij-platform-plugin-template)
10+
- Displays the code statistics table
11+
12+
[Unreleased]: https://github.com/zhensherlock/intellij-platform-git-stats-plugin/compare/v0.0.1...HEAD
13+
[0.0.1]: https://github.com/zhensherlock/intellij-platform-git-stats-plugin/commits/v0.0.1
14+
[//]: #

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,9 @@
1717
- [ ] Click the <kbd>Watch</kbd> button on the top of the [IntelliJ Platform Plugin Template][template] to be notified about releases containing new features and fixes.
1818

1919
<!-- Plugin description -->
20-
This Fancy IntelliJ Platform Plugin is going to be your implementation of the brilliant ideas that you have.
20+
This plugin aims to help users better understand their code writing by counting the modifications of the source code in the project directory opened by the current IDE. It groups and counts the number of added lines of code, deleted lines of code, and modified files within a certain time period, and finally presents the results in a list form, allowing users to have a clear understanding of the overall code writing situation of their projects.
2121

22-
This specific section is a source for the [plugin.xml](/src/main/resources/META-INF/plugin.xml) file which will be extracted by the [Gradle](/build.gradle.kts) during the build process.
23-
24-
To keep everything working, do not remove `<!-- ... -->` sections.
22+
本插件旨在通过统计当前IDE打开的项目目录中的源代码修改情况,帮助用户更好地了解自己的代码编写情况。通过分组统计某个时间段内的添加代码行数、删除代码行数、修改文件数量,最后用列表形式展现,让用户清晰地了解自己项目的整体编写情况。
2523
<!-- Plugin description end -->
2624

2725
## Installation

src/main/resources/META-INF/icon.svg

Lines changed: 20 additions & 0 deletions
Loading

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
<idea-plugin>
33
<id>com.huayi.intellijplatform.gitstats</id>
44
<name>GitStats</name>
5-
<vendor>zhensherlock</vendor>
5+
<vendor>huayi</vendor>
66

77
<depends>com.intellij.modules.platform</depends>
88

99
<resource-bundle>messages.MyBundle</resource-bundle>
1010

1111
<extensions defaultExtensionNs="com.intellij">
12-
<!-- <toolWindow secondary="true" anchor="right" icon="AllIcons.General.Modified" factoryClass="com.huayi.intellijplatform.gitstats.toolWindow.GitStatsWindowFactory" id="GitStats"/>-->
13-
<toolWindow id="GitStats" secondary="true" icon="AllIcons.Toolwindows.WebToolWindow" anchor="right"
12+
<toolWindow id="Git Stats" secondary="true" icon="/META-INF/icon.svg" anchor="bottom"
1413
factoryClass="com.huayi.intellijplatform.gitstats.toolWindow.GitStatsWindowFactory"/>
1514
</extensions>
1615

Lines changed: 21 additions & 33 deletions
Loading
Lines changed: 21 additions & 17 deletions
Loading

0 commit comments

Comments
 (0)