ruki 1 рік тому
батько
коміт
538a9924ca
3 змінених файлів з 9 додано та 5 видалено
  1. 3 3
      build.gradle.kts
  2. 5 1
      change-notes.html
  3. 1 1
      gradle.properties

+ 3 - 3
build.gradle.kts

@@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 
 fun properties(key: String) = project.findProperty(key).toString()
 
-//read local workspace file to string
+// read local workspace file to string
 val localChangeNotes: String = file("${projectDir}/change-notes.html").readText(Charsets.UTF_8)
 val localDescription: String = file("${projectDir}/description.html").readText(Charsets.UTF_8)
 
@@ -13,6 +13,7 @@ val type = mapOf(
     "CL" to "clion",
     "PY" to "pycharmPY"
 )
+
 /*
 * Best practice:
 * Use CL for both building and running.
@@ -119,7 +120,6 @@ tasks {
 
         doFirst {
             println("Executing downloadIde task")
-            // 动态设置 IntelliJ 插件配置
             val intellijExtension = project.extensions.getByType(IntelliJPluginExtension::class.java)
             val ideVersion = project.findProperty("ideVersion")?.toString() ?: runIdeVersion
             val ideType = project.findProperty("ideType")?.toString() ?: runIdeType
@@ -148,4 +148,4 @@ val Project.dependencyCachePath
             cachePath.mkdirs()
         }
         return cachePath.absolutePath
-    }
+    }

+ 5 - 1
change-notes.html

@@ -1,3 +1,7 @@
+<strong>1.3.9</strong>
+<ul>
+    <li>[NEW]: Improve run configuration</li>
+</ul>
 <strong>1.3.8</strong>
 <ul>
     <li>[ADD]: Add new feature of xmake toolkit</li>
@@ -134,4 +138,4 @@
     <li>[NEW]: Tool windows</li>
     <li>[NEW]: Build and run</li>
     <li>[NEW]: Goto error and waring problems</li>
-</ul>
+</ul>

+ 1 - 1
gradle.properties

@@ -1,4 +1,4 @@
-pluginVersion=1.3.8
+pluginVersion=1.3.9
 pluginSinceBuild=223.7571.182
 pluginUntilBuild=242.*