-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
111 lines (104 loc) · 2.77 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
plugins {
id 'java'
id 'org.jetbrains.intellij' version '1.17.1'
}
group 'com.lv.tool'
version '1.1.0'
repositories {
mavenCentral()
maven {
url 'https://maven.aliyun.com/repository/public'
allowInsecureProtocol = true
}
maven {
url = uri("https://cache-redirector.jetbrains.com/intellij-repository/releases")
}
maven {
url = uri("https://cache-redirector.jetbrains.com/intellij-repository/snapshots")
}
}
dependencies {
implementation 'org.jsoup:jsoup:1.15.3'
}
intellij {
version = '243.24978.46'
type = 'IC'
updateSinceUntilBuild = false
instrumentCode = false
sameSinceUntilBuild = false
}
patchPluginXml {
sinceBuild = '241'
untilBuild = '251.*'
changeNotes = """
<h3>1.1.0 版本更新</h3>
<ul>
<li>功能优化:
<ul>
<li>优化阅读器界面</li>
<li>提升章节加载速度</li>
<li>改进缓存机制</li>
</ul>
</li>
</ul>
<h3>Version 1.1.0</h3>
<ul>
<li>Feature Improvements:
<ul>
<li>Enhanced reader interface</li>
<li>Improved chapter loading speed</li>
<li>Enhanced caching mechanism</li>
</ul>
</li>
</ul>
<br>
<h3>1.0.0 版本更新</h3>
<ul>
<li>首次发布</li>
<li>基础功能实现:
<ul>
<li>支持添加、移除书籍</li>
<li>支持阅读进度保存和同步</li>
<li>支持章节内容缓存和预加载</li>
<li>支持通用网站智能解析</li>
<li>支持阅读器模式和通知栏模式切换</li>
</ul>
</li>
<li>性能优化:
<ul>
<li>智能缓存系统</li>
<li>后台预加载</li>
<li>异步加载不阻塞</li>
</ul>
</li>
</ul>
<h3>Version 1.0.0</h3>
<ul>
<li>Initial Release</li>
<li>Basic Features:
<ul>
<li>Add and remove books</li>
<li>Reading progress save and sync</li>
<li>Chapter content cache and preload</li>
<li>Universal website smart parsing</li>
<li>Switch between reader mode and notification bar mode</li>
</ul>
</li>
<li>Performance Optimization:
<ul>
<li>Smart caching system</li>
<li>Background preloading</li>
<li>Asynchronous loading without blocking</li>
</ul>
</li>
</ul>
"""
}
java {
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
wrapper {
gradleVersion = '8.5'
distributionType = Wrapper.DistributionType.BIN
}