Skip to content

Commit

Permalink
1、忽略.DS_Store文件;支持Module等其他类型Flutter工程;3、提炼工程结构检查代码;4、添加工程配置文件
Browse files Browse the repository at this point in the history
  • Loading branch information
shenyong committed May 6, 2020
1 parent 1eaf67b commit 2f2864f
Show file tree
Hide file tree
Showing 12 changed files with 451 additions and 68 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
.idea/
out/
*.iml
36 changes: 36 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

248 changes: 248 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 13 additions & 0 deletions AssetsRefGenerator.iml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PLUGIN_MODULE" version="4">
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/resources/META-INF/plugin.xml" />
<component name="NewModuleRootManager" inherit-compiler-output="true">
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
17 changes: 14 additions & 3 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,15 @@
]]></description>

<change-notes><![CDATA[
<b>1.0.1</b>
<ul>
<li>
Support Flutter Module, Package and Plugin project.
</li>
<li>
Ignore .DS_Store file on Mac OS X.
</li>
</ul>
<b>1.0.0</b>
<br/>
Implement basic functions.
Expand All @@ -59,9 +68,11 @@

<actions>
<!-- Add your actions here -->
<action id="FlutterAssetsRefGenerator" class="com.shenyong.flutter.AssetsRefGenerator"
text="Generate Flutter Assets Reference" description="Flutter assets ref generator"
icon="/icons/genAssetRef.svg">
<action id="FlutterAssetsRefGenerator"
class="com.shenyong.flutter.AssetsRefGenerator"
text="Generate Flutter Assets Reference"
description="Flutter assets ref generator"
icon="/icons/genAssetRef.svg">
<add-to-group group-id="ToolbarRunGroup" anchor="last"/>
</action>
</actions>
Expand Down
Loading

0 comments on commit 2f2864f

Please sign in to comment.