-
Notifications
You must be signed in to change notification settings - Fork 24
使用官方插件模板重构项目结构 #34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zzqo
wants to merge
3
commits into
netnexus:master
Choose a base branch
from
zzqo:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
使用官方插件模板重构项目结构 #34
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,115 @@ | ||
| .DS_Store | ||
| .idea | ||
| out | ||
|
|
||
| # macOS.gitignore | ||
|
|
||
| # General | ||
| *.DS_Store | ||
| .AppleDouble | ||
| .LSOverride | ||
|
|
||
| # Icon must end with two \r | ||
| Icon | ||
|
|
||
|
|
||
| # Thumbnails | ||
| ._* | ||
|
|
||
| # Files that might appear in the root of a volume | ||
| .DocumentRevisions-V100 | ||
| .fseventsd | ||
| .Spotlight-V100 | ||
| .TemporaryItems | ||
| .Trashes | ||
| .VolumeIcon.icns | ||
| .com.apple.timemachine.donotpresent | ||
|
|
||
| # Directories potentially created on remote AFP share | ||
| .AppleDB | ||
| .AppleDesktop | ||
| Network Trash Folder | ||
| Temporary Items | ||
| .apdisk | ||
|
|
||
|
|
||
| # JetBrains.gitignore | ||
|
|
||
| # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm | ||
| # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 | ||
|
|
||
| # User-specific stuff: | ||
| .idea/**/workspace.xml | ||
| .idea/**/tasks.xml | ||
| .idea/dictionaries | ||
|
|
||
| # Sensitive or high-churn files: | ||
| .idea/**/dataSources/ | ||
| .idea/**/dataSources.ids | ||
| .idea/**/dataSources.xml | ||
| .idea/**/dataSources.local.xml | ||
| .idea/**/sqlDataSources.xml | ||
| .idea/**/dynamic.xml | ||
| .idea/**/uiDesigner.xml | ||
|
|
||
| # Gradle: | ||
| .idea/**/gradle.xml | ||
| .idea/**/libraries | ||
|
|
||
| # CMake | ||
| cmake-build-debug/ | ||
|
|
||
| # Mongo Explorer plugin: | ||
| .idea/**/mongoSettings.xml | ||
|
|
||
| ## File-based project format: | ||
| *.iws | ||
|
|
||
| ## Plugin-specific files: | ||
|
|
||
| # IntelliJ | ||
| /out/ | ||
|
|
||
| # mpeltonen/sbt-idea plugin | ||
| .idea_modules/ | ||
|
|
||
| # JIRA plugin | ||
| atlassian-ide-plugin.xml | ||
|
|
||
| # Cursive Clojure plugin | ||
| .idea/replstate.xml | ||
|
|
||
| # Crashlytics plugin (for Android Studio and IntelliJ) | ||
| com_crashlytics_export_strings.xml | ||
| crashlytics.properties | ||
| crashlytics-build.properties | ||
| fabric.properties | ||
|
|
||
|
|
||
|
|
||
| # Java.gitignore | ||
|
|
||
| # Compiled class file | ||
| *.class | ||
|
|
||
| # Log file | ||
| *.log | ||
|
|
||
| # BlueJ files | ||
| *.ctxt | ||
|
|
||
| # Mobile Tools for Java (J2ME) | ||
| .mtj.tmp/ | ||
|
|
||
| # Package Files # | ||
| *.jar | ||
| *.war | ||
| *.ear | ||
| *.zip | ||
| *.tar.gz | ||
| *.rar | ||
|
|
||
| # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
| hs_err_pid* | ||
|
|
||
| # codestyles, markdown | ||
| /.idea/codeStyles/codeStyleConfig.xml | ||
| /.idea/markdown-navigator/profiles_settings.xml | ||
| /.idea/markdown-navigator.xml |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <component name="ProjectRunConfigurationManager"> | ||
| <configuration default="false" name="Run Plugin" type="GradleRunConfiguration" factoryName="Gradle"> | ||
| <log_file alias="IDE logs" path="$PROJECT_DIR$/build/idea-sandbox/*/log/idea.log" show_all="true" /> | ||
| <ExternalSystemSettings> | ||
| <option name="executionName" /> | ||
| <option name="externalProjectPath" value="$PROJECT_DIR$" /> | ||
| <option name="externalSystemIdString" value="GRADLE" /> | ||
| <option name="scriptParameters" value="" /> | ||
| <option name="taskDescriptions"> | ||
| <list /> | ||
| </option> | ||
| <option name="taskNames"> | ||
| <list> | ||
| <option value="runIde" /> | ||
| </list> | ||
| </option> | ||
| <option name="vmOptions" value="" /> | ||
| </ExternalSystemSettings> | ||
| <ExternalSystemDebugServerProcess>false</ExternalSystemDebugServerProcess> | ||
| <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess> | ||
| <DebugAllEnabled>false</DebugAllEnabled> | ||
| <RunAsTest>false</RunAsTest> | ||
| <method v="2" /> | ||
| </configuration> | ||
| </component> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <component name="ProjectRunConfigurationManager"> | ||
| <configuration default="false" name="Run Tests" type="GradleRunConfiguration" factoryName="Gradle"> | ||
| <log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" /> | ||
| <ExternalSystemSettings> | ||
| <option name="executionName" /> | ||
| <option name="externalProjectPath" value="$PROJECT_DIR$" /> | ||
| <option name="externalSystemIdString" value="GRADLE" /> | ||
| <option name="scriptParameters" value="" /> | ||
| <option name="taskDescriptions"> | ||
| <list /> | ||
| </option> | ||
| <option name="taskNames"> | ||
| <list> | ||
| <option value="check" /> | ||
| </list> | ||
| </option> | ||
| <option name="vmOptions" value="" /> | ||
| </ExternalSystemSettings> | ||
| <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess> | ||
| <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess> | ||
| <DebugAllEnabled>false</DebugAllEnabled> | ||
| <RunAsTest>true</RunAsTest> | ||
| <method v="2" /> | ||
| </configuration> | ||
| </component> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| <component name="ProjectRunConfigurationManager"> | ||
| <configuration default="false" name="Run Verifications" type="GradleRunConfiguration" factoryName="Gradle"> | ||
| <log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" /> | ||
| <ExternalSystemSettings> | ||
| <option name="executionName" /> | ||
| <option name="externalProjectPath" value="$PROJECT_DIR$" /> | ||
| <option name="externalSystemIdString" value="GRADLE" /> | ||
| <option name="scriptParameters" value="" /> | ||
| <option name="taskDescriptions"> | ||
| <list /> | ||
| </option> | ||
| <option name="taskNames"> | ||
| <list> | ||
| <option value="verifyPlugin" /> | ||
| </list> | ||
| </option> | ||
| <option name="vmOptions" value="" /> | ||
| </ExternalSystemSettings> | ||
| <ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess> | ||
| <ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess> | ||
| <DebugAllEnabled>false</DebugAllEnabled> | ||
| <RunAsTest>false</RunAsTest> | ||
| <method v="2" /> | ||
| </configuration> | ||
| </component> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,66 +1,70 @@ | ||
| # Camel Case Plugin | ||
| <!-- Keep a Changelog guide -> https://keepachangelog.com --> | ||
|
|
||
| ## Changelog | ||
| # Camel Case Changelog | ||
|
|
||
| ### Release 3.0.12: | ||
| * Bugfix: use standard config if com.intellij.openapi.project.Project is null | ||
| ## [3.0.13] - 2026-03-06 | ||
|
|
||
| ### Release 3.0.11: | ||
| * Bugfix: if only camelCase and snake_case is selected in the options | ||
| - Fixed bug with multiple careats | ||
|
|
||
| ### Release 3.0.10: | ||
| * Single word bugfix (Foo => FOO => foo) | ||
| * Pascal Case with space bugfix (foo foo => Foo Foo) | ||
| ## [3.0.12] | ||
| - Bugfix: use standard config if com.intellij.openapi.project.Project is null | ||
|
|
||
| ### Release 3.0.9: | ||
| * New Conversion added (Camel Case) | ||
| ## [3.0.11] | ||
| - Bugfix: if only camelCase and snake_case is selected in the options | ||
|
|
||
| ### Release 3.0.7: | ||
| * Support any text field and editor | ||
| ## [3.0.10] | ||
| - Single word bugfix (Foo => FOO => foo) | ||
| - Pascal Case with space bugfix (foo foo => Foo Foo) | ||
|
|
||
| ### Release 3.0.6: | ||
| * Fixed snake case bug | ||
| * Need IntelliJ Platform version higher than 191.4212.41 | ||
| ## [3.0.9] | ||
| - New Conversion added (Camel Case) | ||
|
|
||
| ### Release 3.0.5: | ||
| * Fix for string in lower case | ||
| ## [3.0.7] | ||
| - Support any text field and editor | ||
|
|
||
| ### Release 3.0.4: | ||
| * Select whole string with dashes | ||
| ## [3.0.6] | ||
| - Fixed snake case bug | ||
| - Need IntelliJ Platform version higher than 191.4212.41 | ||
|
|
||
| ### Release 3.0.3: | ||
| * Fixed conversion with special char | ||
| ## [3.0.5] | ||
| - Fix for string in lower case | ||
|
|
||
| ### Release 3.0.2: | ||
| * Fixed deprecated function | ||
| ## [3.0.4] | ||
| - Select whole string with dashes | ||
|
|
||
| ### Release 3.0.1: | ||
| * Restore multiple caret mode (see #2) | ||
| ## [3.0.3] | ||
| - Fixed conversion with special char | ||
|
|
||
| ### Release 3.0: | ||
| * Allow to use plugin in dialogs (like refactor/rename) | ||
| ## [3.0.2] | ||
| - Fixed deprecated function | ||
|
|
||
| ### Release 2.1: | ||
| * Introduce "space case" and allow to change conversion order in configuration. | ||
| ## [3.0.1] | ||
| - Restore multiple caret mode (see #2) | ||
|
|
||
| ### Release 2.0: | ||
| * Introduce config panel to switch off certain transformations (Preferences / Editor / Camel Case) | ||
| ## [3.0.0] | ||
| - Allow to use plugin in dialogs (like refactor/rename) | ||
|
|
||
| ### Release 1.6: | ||
| * Bugfix: double underscore (thanks to John) | ||
| ## [2.1.0] | ||
| - Introduce "space case" and allow to change conversion order in configuration. | ||
|
|
||
| ### Release 1.5: | ||
| * added hyphen-separated-notation | ||
| ## [2.0.0] | ||
| - Introduce config panel to switch off certain transformations (Preferences / Editor / Camel Case) | ||
|
|
||
| ### Release 1.4: | ||
| * optimized multiple caret support | ||
| * idea 14.1 is now required, please use release 1.2 for older IDEs | ||
| ## [1.6.0] | ||
| - Bugfix: double underscore (thanks to John) | ||
|
|
||
| ### Release 1.3: | ||
| * multiple selections support | ||
| ## [1.5.0] | ||
| - added hyphen-separated-notation | ||
|
|
||
| ### Release 1.2: | ||
| * Compiled for J2SE 6.0 | ||
| ## [1.4.0] | ||
| - optimized multiple caret support | ||
| - idea 14.1 is now required, please use release 1.2 for older IDEs | ||
|
|
||
| ### Release 1.1: | ||
| * Added undo functionality | ||
| ## [1.3.0] | ||
| - multiple selections support | ||
|
|
||
| ## [1.2.0] | ||
| - Compiled for J2SE 6.0 | ||
|
|
||
| ## [1.1.0] | ||
| - Added undo functionality | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Corrected spelling of 'careats' to 'carets'.