Skip to content
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

1.fix login warn 2.fix favorite icon #54

Merged
merged 1 commit into from
Aug 28, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<idea-plugin>
<id>leetcode-editor</id>
<name>leetcode editor</name>
<version>5.0</version>
<version>5.1</version>
<vendor email="[email protected]" url="https://github.com/shuzijun/idea-leetcode-plugin">shuzijun</vendor>

<description><![CDATA[
Expand Down Expand Up @@ -113,6 +113,14 @@

<change-notes><![CDATA[
<ul>
<li>v5.1<br>
1.修复登陆提示<br>
2.修复favorite图标<br>
</li>
<li>v5.1<br>
1.fix login warn<br>
2.fix favorite icon<br>
</li>
<li>v5.0<br>
1.增加代码自定义生成(<a href="https://github.com/shuzijun/leetcode-editor/blob/master/CustomCode_ZH.md">详细介绍</a>)(<a href="https://github.com/shuzijun/leetcode-question">示例</a>)<br>
2.增加查看题目描述(依赖 Markdown)<br>
Expand Down Expand Up @@ -354,7 +362,7 @@
<reference id="leetcode.TestcaseAction"/>
<separator/>
<group id="leetcode.FavoriteGroup" class="com.shuzijun.leetcode.plugin.actions.FavoriteActionGroup"
popup="true" text="Favorite" description="Favorite" icon="AllIcons.General.OpenDiskHover">
popup="true" text="Favorite" description="Favorite" icon="AllIcons.Actions.Menu_open">
</group>
<reference id="leetcode.ClearOneAction"/>
</group>
Expand Down
2 changes: 1 addition & 1 deletion src/com/shuzijun/leetcode/plugin/actions/LoginAction.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void perform(AnActionEvent anActionEvent, Config config) {
}
}

if (StringUtils.isBlank(config.getLoginName()) || StringUtils.isBlank(config.getLoginName())) {
if (StringUtils.isBlank(config.getLoginName()) || StringUtils.isBlank(PersistentConfig.getInstance().getPassword())) {
MessageUtils.showWarnMsg("info", PropertiesUtils.getInfo("config.user"));
return;
}
Expand Down