mirror of
https://github.com/chylex/IntelliJ-AceJump.git
synced 2025-04-09 17:15:43 +02:00
release next version
This commit is contained in:
parent
1e0d0eb5c9
commit
5190d99e33
@ -10,8 +10,6 @@ Honor camel humps [#315](https://github.com/acejump/AceJump/issues/315). Thanks
|
||||
|
||||
Support dynamic application reloading [#322](https://github.com/acejump/AceJump/issues/322).
|
||||
|
||||
Speed up tagging on very large files.
|
||||
|
||||
### 3.5.9
|
||||
|
||||
Fix a build configuration error affecting plugins which depend on AceJump. Fixes [#305](https://github.com/acejump/AceJump/issues/305).
|
||||
|
@ -10,7 +10,7 @@ plugins {
|
||||
|
||||
fun fetchChangeNotes() =
|
||||
File("CHANGES.md").readLines().drop(4).takeWhile { !it.startsWith("###") }.let { notes ->
|
||||
"<![CDATA[$notes<a href=\"https://github.com/acejump/AceJump/blob/master/src/main/resources/META-INF/CHANGES.md\">Release Notes</a> ]]>"
|
||||
"<![CDATA[<a href=\"https://github.com/acejump/AceJump/blob/master/src/main/resources/META-INF/CHANGES.md\">Release Notes</a> ]]>"
|
||||
}
|
||||
|
||||
tasks {
|
||||
@ -30,12 +30,12 @@ tasks {
|
||||
}
|
||||
|
||||
withType<PublishTask> {
|
||||
token(project.findProperty("jbr.token") as String?
|
||||
?: System.getenv("JBR_TOKEN"))
|
||||
val intellijPublishToken: String? by project
|
||||
token(intellijPublishToken)
|
||||
}
|
||||
|
||||
withType<PatchPluginXmlTask> {
|
||||
sinceBuild("183.*")
|
||||
sinceBuild("201.*")
|
||||
changeNotes(fetchChangeNotes())
|
||||
}
|
||||
}
|
||||
@ -56,4 +56,4 @@ intellij {
|
||||
}
|
||||
|
||||
group = "org.acejump"
|
||||
version = "3.5.9"
|
||||
version = "3.6.0"
|
@ -51,7 +51,7 @@ internal object Scanner {
|
||||
fun String.search(model: AceFindModel, cache: Set<Int>, chunk: IntRange) =
|
||||
run {
|
||||
val query = model.stringToFind
|
||||
if (isEmpty() || query.isEmpty()) sortedSetOf()
|
||||
if (isEmpty() || query.isEmpty()) sortedSetOf<Int>()
|
||||
else if (cache.isNotEmpty()) filterCache(cache, query)
|
||||
else findAll(model.toRegex(), chunk)
|
||||
}.toList()
|
||||
|
Loading…
Reference in New Issue
Block a user