Skip to content

Commit 2be85d5

Browse files
committed
release 3.2.0
1 parent 553b7e2 commit 2be85d5

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ Intellij IDEA上的插件请移步这里: https://github.com/Jamling/SmartQQ4Int
2929
| 文本消息 | Y | Y | Y |
3030
| 聊天记录 | Y | Y | Y |
3131
| 消息提醒 | N | Y | O |
32-
| 接收表情 | O | Y | X |
32+
| 接收表情 | O | Y | X |
3333
| 图灵机器人       | Y       |         Y | X |
3434
| 发送文件       | Y       |         Y | Y |
35-
| 消息群发       | Y       |         Y | Y|
36-
| 代码评审       | X       |         Y | Y|
35+
| 消息群发       | Y       |         Y | Y |
36+
| 代码评审       | X       |         Y | Y |
3737

3838
## 安装
3939

cn.ieclipse.smartqq.feature/feature.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feature
33
id="cn.ieclipse.smartqq.feature"
44
label="SmartQQ"
5-
version="3.1.4.qualifier"
5+
version="3.2.0.qualifier"
66
provider-name="ieclipse.cn"
77
plugin="cn.ieclipse.smartqq">
88

cn.ieclipse.smartqq/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: SmartQQ
44
Bundle-SymbolicName: cn.ieclipse.smartqq;singleton:=true
5-
Bundle-Version: 3.1.4.qualifier
5+
Bundle-Version: 3.2.0.qualifier
66
Bundle-Activator: cn.ieclipse.smartim.IMPlugin
77
Bundle-Vendor: ieclipse.cn
88
Require-Bundle: org.eclipse.ui,

cn.ieclipse.smartqq/src/cn/ieclipse/smartim/console/TabComposite.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ public TabComposite(Composite parent) {
6868
setLayout(gridLayout);
6969

7070
toolBar = new ToolBar(this, SWT.FLAT | SWT.VERTICAL);
71-
toolBar.setBackground(SWTResourceManager
72-
.getColor(SWT.COLOR_WIDGET_BACKGROUND));
71+
toolBar.setBackground(
72+
SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
7373
toolBar.setLayoutData(
7474
new GridData(SWT.CENTER, SWT.FILL, false, false, 1, 1));
7575

@@ -102,8 +102,8 @@ public void controlMoved(ControlEvent e) {
102102
sashForm.setWeights(new int[] { 100, 1 });
103103
sashForm.pack();
104104
sashForm.layout();
105-
// sashForm.setBackground(
106-
// SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
105+
// sashForm.setBackground(
106+
// SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
107107
setBackground(SWTResourceManager.getColor(SWT.COLOR_WIDGET_BACKGROUND));
108108

109109
text.addKeyListener(inputListener);
@@ -332,9 +332,10 @@ public void appendHistory(String text, String msg) {
332332
try {
333333
plain = IMUtils.HTML_TAG_REGEX.matcher(msg).replaceAll("");
334334
} catch (Exception e) {
335-
335+
336336
}
337-
IMPlugin.getDefault().warn("添加聊天记录 " + plain + " 失败");
337+
IMPlugin.getDefault().warn("添加聊天记录 " + plain + " 失败,估计您的浏览器内核("
338+
+ browser.getBrowserType() + ")太低,请尝试升级浏览器后再试");
338339
}
339340
}
340341
}

0 commit comments

Comments
 (0)