File tree Expand file tree Collapse file tree 9 files changed +26
-19
lines changed
core/src/main/kotlin/io/github/shoaky/sourcedownloader/repo/exposed
plugins/common-plugin/src/main/kotlin/io/github/shoaky/sourcedownloader/common/anime
sdk/src/main/kotlin/io/github/shoaky/sourcedownloader/sdk/component Expand file tree Collapse file tree 9 files changed +26
-19
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,9 @@ class ExposedProcessingStorage : ProcessingStorage {
185185 val ids = paths.map { it.toString() }
186186 return transaction {
187187 val existingIds = TargetPaths
188- .select { TargetPaths .id inList ids and (TargetPaths .itemHashing neq excludedItemHashing) }
188+ .selectAll().where {
189+ TargetPaths .id inList ids and (TargetPaths .itemHashing neq excludedItemHashing)
190+ }
189191 .map { it[TargetPaths .id].value }
190192 .toSet()
191193 ids.map { existingIds.contains(it) }
Original file line number Diff line number Diff line change 1- kapt.use.k2 =true
1+ # kapt.use.k2=true
Original file line number Diff line number Diff line change 11[versions ]
2- spring-boot = " 3.3.0 "
3- guava = " 33.2.0 -jre"
4- commons-lang3 = " 3.14 .0"
5- cel = " 0.4.4 "
6- kotlinx-coroutines = " 1.8.1 "
7- kotlin = " 2.0.0 "
2+ spring-boot = " 3.3.4 "
3+ guava = " 33.3.1 -jre"
4+ commons-lang3 = " 3.17 .0"
5+ cel = " 0.5.1 "
6+ kotlinx-coroutines = " 1.9.0 "
7+ kotlin = " 2.0.20 "
88graalvm-plugin = " 0.10.2"
9- graalvm = " 24.0.1 "
10- sqlite = " 3.46.0.0 "
9+ graalvm = " 24.1.0 "
10+ sqlite = " 3.46.1.3 "
1111commons-collections4 = " 4.4"
12- axion-release = " 1.17.2 "
12+ axion-release = " 1.18.11 "
1313zxing = " 3.5.3"
1414telegram4j = " 0.1.0-SNAPSHOT"
15- rssreader = " 3.7.0 "
15+ rssreader = " 3.8.2 "
1616anitomyJ = " 0.0.7"
1717atomashpolskiy-bt = " 1.10"
1818tika = " 2.9.2"
19- jsoup = " 1.17.2 "
20- exposed = " 0.51.1 "
19+ jsoup = " 1.18.1 "
20+ exposed = " 0.55.0 "
2121protobuf = " 3.25.2"
2222dokka = " 1.9.20"
2323springdocs = " 2.5.0"
2424therapi-javadoc = " 0.15.0"
2525json-path = " 2.9.0"
2626fuzzywuzzy = " 1.4.0"
27- gradle-git-properties = " 2.4.1 "
27+ gradle-git-properties = " 2.4.2 "
2828commons-text = " 1.12.0"
2929
3030[libraries ]
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.10.2 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 1515# See the License for the specific language governing permissions and
1616# limitations under the License.
1717#
18+ # SPDX-License-Identifier: Apache-2.0
19+ #
1820
1921# #############################################################################
2022#
8486# shellcheck disable=SC2034
8587APP_BASE_NAME=${0##*/ }
8688# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87- APP_HOME=$( cd " ${APP_HOME:- ./ } " > /dev/null && pwd -P ) || exit
89+ APP_HOME=$( cd -P " ${APP_HOME:- ./ } " > /dev/null && printf ' %s
90+ ' " $PWD " ) || exit
8891
8992# Use the maximum available, or set MAX_FD != -1 to use that value.
9093MAX_FD=maximum
Original file line number Diff line number Diff line change 1313@ rem See the License for the specific language governing permissions and
1414@ rem limitations under the License.
1515@ rem
16+ @ rem SPDX-License-Identifier: Apache-2.0
17+ @ rem
1618
1719@ if " %DEBUG% " == " " @ echo off
1820@ rem ##########################################################################
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ private class TitleScore(
219219
220220private val log = LoggerFactory .getLogger(AnimeVariableProvider ::class .java)
221221
222- internal data class Anime (
222+ data class Anime (
223223 val romajiName : String? = null ,
224224 val nativeName : String? = null
225225) : PatternVariables
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import kotlin.reflect.KClass
44import kotlin.reflect.full.isSuperclassOf
55
66@Suppress(" UNUSED" )
7- data class ComponentRule internal constructor (
7+ data class ComponentRule (
88 val isAllow : Boolean ,
99 val type : ComponentTopType ,
1010 val value : KClass <out SdComponent >
You can’t perform that action at this time.
0 commit comments