Skip to content

Commit

Permalink
release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamling committed Apr 6, 2024
1 parent de855ac commit 9c95d5f
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 24 deletions.
23 changes: 14 additions & 9 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
*/
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.17.2'
id 'org.jetbrains.intellij' version '0.4.21'
}

group 'cn.ieclipse.smartim'
version '3.0.0.141'
version '3.0.0'

repositories {
mavenCentral()
Expand All @@ -29,22 +29,27 @@ dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.14.4'
implementation 'com.squareup.okhttp3:logging-interceptor:3.14.4'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.github.jamling:JavaUtils:933b1c6551'
implementation 'dom4j:dom4j:1.6.1'
implementation 'com.github.jamling.JavaUtils:core:933b1c6551'
implementation('dom4j:dom4j:1.6.1') {
exclude group: 'xml-apis'
}
testImplementation 'junit:junit:4.13.1'
}

// See https://github.com/JetBrains/gradle-intellij-plugin/
intellij {
version = 'IU-2023.3.6'
}/*
version = 'IU-2019.1.4'
}
patchPluginXml {
sinceBuild = '141'
untilBuild = '241.*'
}*/
}
publishPlugin {
token = System.getProperty("intellijPublishToken")
}
tasks.withType(JavaCompile) {
sourceCompatibility = "17"
targetCompatibility = "17"
sourceCompatibility = "8"
targetCompatibility = "8"
options.encoding = 'UTF-8'
options.compilerArgs += ['-Xlint:unchecked', '-Xlint:deprecation', '-parameters']
}
Expand Down
5 changes: 0 additions & 5 deletions resources/META-INF/my-java-features.xml

This file was deleted.

16 changes: 6 additions & 10 deletions resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,19 +1,18 @@
<idea-plugin url="https://plugins.jetbrains.com/plugin/9816-smartim">
<id>cn.ieclipse.smartqq.intellij</id>
<name>SmartIM</name>
<version>2.7.2</version>
<version>3.0.0</version>
<vendor email="[email protected]" url="https://github.com/Jamling/SmartIM4Intellij">Jamling</vendor>

<description><![CDATA[
An anti-boss plugin for you to chat with your QQ/Wechat friends privately.<br/>
一个防Boss的QQ/微信聊天插件,让老板以为你是在写代码,其实,你是在聊天,不过,作为程序猿,怎么可能有时间聊天,哈哈<br/>
上班聊天的摸鱼神器,直接在IDE中与微信好友沟通,老板以为你是在写代码?No!No!No!其实,你是在聊天,不过,作为程序猿,怎么可能有时间聊天,哈哈,如果此插件帮助了你,是否可以请我喝杯咖啡?<br/>
about more: <a href="https://github.com/Jamling/SmartIM4Intellij/">https://github.com/Jamling/SmartIM4Intellij/</a>
]]></description>

<change-notes><![CDATA[
v2.7.2 2019-08-15 <br/>
Fix NumberFormatException when login wechat <br/>
Fix bugs for non-java ide
v3.0.0 2024-04-05 <br/>
微信使用PC版协议,解决大部分账号限制登录的问题 <br/>
]]>
</change-notes>

Expand All @@ -23,19 +22,16 @@
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
on how to contact different products -->
<!-- uncomment to enable plugin in all products -->
<depends optional="true" config-file="my-java-features.xml">
com.intellij.modules.java
</depends>
<depends>com.intellij.modules.lang</depends>

<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
<toolWindow canCloseContents="true" anchor="bottom"
id="SmartIM"
factoryClass="cn.ieclipse.smartim.IMWindowFactory"
icon="/icons/im.png">
icon="/icons/im.svg">
</toolWindow>
<applicationConfigurable instance="cn.ieclipse.smartim.settings.SmartSettingsPanel"/>
<applicationConfigurable instance="cn.ieclipse.smartim.settings.SmartSettingsPanel" displayName="SmartIM"/>
<applicationService serviceImplementation="cn.ieclipse.smartim.settings.SmartIMSettings"/>
</extensions>
<actions>
Expand Down
1 change: 1 addition & 0 deletions resources/META-INF/pluginIcon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions resources/icons/im.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9c95d5f

Please sign in to comment.