Skip to content

Commit

Permalink
release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamling committed May 14, 2018
1 parent 553b7e2 commit 2be85d5
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ Intellij IDEA上的插件请移步这里: https://github.com/Jamling/SmartQQ4Int
| 文本消息 | Y | Y | Y |
| 聊天记录 | Y | Y | Y |
| 消息提醒 | N | Y | O |
| 接收表情 | O | Y | X |
| 接收表情 | O | Y | X |
| 图灵机器人       | Y       |         Y | X |
| 发送文件       | Y       |         Y | Y |
| 消息群发       | Y       |         Y | Y|
| 代码评审       | X       |         Y | Y|
| 消息群发       | Y       |         Y | Y |
| 代码评审       | X       |         Y | Y |

## 安装

Expand Down
2 changes: 1 addition & 1 deletion cn.ieclipse.smartqq.feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="cn.ieclipse.smartqq.feature"
label="SmartQQ"
version="3.1.4.qualifier"
version="3.2.0.qualifier"
provider-name="ieclipse.cn"
plugin="cn.ieclipse.smartqq">

Expand Down
2 changes: 1 addition & 1 deletion cn.ieclipse.smartqq/META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: SmartQQ
Bundle-SymbolicName: cn.ieclipse.smartqq;singleton:=true
Bundle-Version: 3.1.4.qualifier
Bundle-Version: 3.2.0.qualifier
Bundle-Activator: cn.ieclipse.smartim.IMPlugin
Bundle-Vendor: ieclipse.cn
Require-Bundle: org.eclipse.ui,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ public TabComposite(Composite parent) {
setLayout(gridLayout);

toolBar = new ToolBar(this, SWT.FLAT | SWT.VERTICAL);
toolBar.setBackground(SWTResourceManager
.getColor(SWT.COLOR_WIDGET_BACKGROUND));
toolBar.setBackground(
SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
toolBar.setLayoutData(
new GridData(SWT.CENTER, SWT.FILL, false, false, 1, 1));

Expand Down Expand Up @@ -102,8 +102,8 @@ public void controlMoved(ControlEvent e) {
sashForm.setWeights(new int[] { 100, 1 });
sashForm.pack();
sashForm.layout();
// sashForm.setBackground(
// SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
// sashForm.setBackground(
// SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
setBackground(SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));

text.addKeyListener(inputListener);
Expand Down Expand Up @@ -332,9 +332,10 @@ public void appendHistory(String text, String msg) {
try {
plain = IMUtils.HTML_TAG_REGEX.matcher(msg).replaceAll("");
} catch (Exception e) {

}
IMPlugin.getDefault().warn("添加聊天记录 " + plain + " 失败");
IMPlugin.getDefault().warn("添加聊天记录 " + plain + " 失败,估计您的浏览器内核("
+ browser.getBrowserType() + ")太低,请尝试升级浏览器后再试");
}
}
}
Expand Down

0 comments on commit 2be85d5

Please sign in to comment.