hexo-theme-volantis 5.8.1 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -39
- package/_cdn.yml +449 -0
- package/_config.yml +155 -157
- package/languages/en.yml +9 -10
- package/languages/zh-CN.yml +11 -15
- package/languages/zh-TW.yml +10 -11
- package/layout/_meta/category.ejs +10 -5
- package/layout/_meta/counter.ejs +14 -17
- package/layout/_meta/tags.ejs +3 -0
- package/layout/_meta/walinecount.ejs +1 -1
- package/layout/_partial/article.ejs +14 -9
- package/layout/_partial/cover.ejs +4 -4
- package/layout/_partial/footer.ejs +1 -1
- package/layout/_partial/head.ejs +7 -18
- package/layout/_partial/header.ejs +6 -6
- package/layout/_partial/post.ejs +4 -4
- package/layout/_partial/scripts/_ctrl.ejs +43 -2
- package/layout/_partial/scripts/config.ejs +69 -0
- package/layout/_partial/scripts/global.ejs +136 -60
- package/layout/_partial/scripts/index.ejs +16 -23
- package/layout/_plugins/_page_plugins/artitalk/index.ejs +1 -1
- package/layout/_plugins/_page_plugins/bbtalk/index.ejs +1 -1
- package/layout/_plugins/_page_plugins/fcircle/index.ejs +9 -8
- package/layout/_plugins/_page_plugins/katex/index.ejs +3 -3
- package/layout/_plugins/_page_plugins/mathjax/index.ejs +1 -1
- package/layout/_plugins/aplayer/layout.ejs +31 -23
- package/layout/_plugins/aplayer/script.ejs +93 -65
- package/layout/_plugins/comments/artalk/script.ejs +31 -40
- package/layout/_plugins/comments/discuss/script.ejs +1 -1
- package/layout/_plugins/comments/disqusjs/script.ejs +2 -2
- package/layout/_plugins/comments/gitalk/script.ejs +1 -1
- package/layout/_plugins/comments/twikoo/script.ejs +1 -1
- package/layout/_plugins/comments/vssue/script.ejs +3 -3
- package/layout/_plugins/comments/waline/script.ejs +2 -2
- package/layout/_plugins/github-api/script.ejs +3 -3
- package/layout/_plugins/lazyload/script.ejs +1 -1
- package/layout/_plugins/nodewaves/script.ejs +1 -1
- package/layout/_plugins/pace/script.ejs +15 -0
- package/layout/_plugins/parallax/script.ejs +1 -1
- package/layout/_plugins/pjax/index.ejs +66 -11
- package/layout/_plugins/pjax/pdata.ejs +5 -5
- package/layout/_plugins/preload/script.ejs +2 -2
- package/layout/_plugins/rightmenus/layout.ejs +4 -4
- package/layout/_plugins/scrollreveal/script.ejs +2 -2
- package/layout/_plugins/search/script.ejs +11 -8
- package/layout/_plugins/swiper/script.ejs +2 -2
- package/layout/{_partial/scripts/toc.ejs → _plugins/toc/script.ejs} +40 -36
- package/layout/_widget/blogger.ejs +4 -4
- package/layout/_widget/webinfo.ejs +13 -14
- package/layout/friends.ejs +2 -2
- package/layout/layout.ejs +1 -15
- package/package.json +4 -4
- package/scripts/events/lib/cdn.js +206 -0
- package/scripts/events/lib/check-configuration.js +7 -7
- package/scripts/events/lib/check-environment.js +17 -17
- package/scripts/events/lib/config.js +0 -24
- package/scripts/events/lib/render-stylus.js +5 -5
- package/scripts/events/lib/stellar-tag-utils.js +2 -2
- package/scripts/filters/hexo-blog-encrypt-callback.js +44 -0
- package/scripts/filters/img.js +1 -1
- package/scripts/filters/replace.js +3 -3
- package/scripts/filters/z-lazyload.js +3 -5
- package/scripts/helpers/first-style.js +2 -2
- package/scripts/helpers/head/generate_seo.js +24 -10
- package/scripts/helpers/head/generate_title__keywords__description.js +28 -9
- package/scripts/helpers/related-posts.js +3 -3
- package/scripts/helpers/structured-data/lib/blogposting.js +1 -1
- package/scripts/helpers/structured-data/lib/breadcrumblist.js +1 -1
- package/scripts/helpers/structured-data/lib/config.js +1 -1
- package/scripts/helpers/structured-data/lib/website.js +1 -1
- package/scripts/helpers//346/226/207/347/253/240/346/216/250/350/215/220.js +184 -0
- package/scripts/tags/btn.js +2 -2
- package/scripts/tags/btns.js +3 -3
- package/scripts/tags/checkbox.js +6 -6
- package/scripts/tags/contributors.js +7 -7
- package/scripts/tags/dropmenu.js +8 -8
- package/scripts/tags/fancybox.js +6 -6
- package/scripts/tags/folding.js +5 -5
- package/scripts/tags/frame.js +3 -3
- package/scripts/tags/friends.js +8 -8
- package/scripts/tags/ghcard.js +7 -7
- package/scripts/tags/image.js +6 -6
- package/scripts/tags/inline-labels.js +6 -6
- package/scripts/tags/link.js +5 -5
- package/scripts/tags/md.js +4 -4
- package/scripts/tags/media.js +5 -5
- package/scripts/tags/note.js +12 -12
- package/scripts/tags/pandown.js +29 -29
- package/scripts/tags/site.js +4 -4
- package/scripts/tags/span.js +4 -4
- package/scripts/tags/table.js +2 -2
- package/scripts/tags/tabs.js +23 -23
- package/scripts/tags/timeline.js +5 -5
- package/source/css/_first/base_first.styl +1 -1
- package/source/css/_style/_layout/article.styl +43 -0
- package/source/css/_style/_layout/main.styl +1 -1
- package/source/css/_style/_layout/search.styl +206 -14
- package/source/css/_style/_plugins/index.styl +1 -3
- package/source/js/app.js +133 -160
- package/source/js/plugins/parallax.js +1 -1
- package/source/js/plugins/rightMenus.js +24 -20
- package/source/js/search/algolia.js +239 -0
- package/source/js/search/hexo.js +8 -2
- package/source/js/search/meilisearch.js +220 -0
- package/layout/_partial/scripts/_ctrl/cdnCtrl.ejs +0 -127
- package/layout/_partial/scripts/_ctrl/coverCtrl.ejs +0 -43
- package/layout/_plugins/analytics/LCCounter.ejs +0 -207
- package/layout/_plugins/pjax/animate.ejs +0 -31
- package/layout/_plugins/rightmenu/layout.ejs +0 -119
- package/scripts/helpers/revisioned.js +0 -167
- package/source/css/_style/_plugins/pjaxanimate.styl +0 -160
- package/source/js/plugins/rightMenu.js +0 -577
- /package/layout/{_partial/scripts/content-visibility-scroll-fix.ejs → _plugins/content-visibility/script.ejs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,53 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [6.0.1](https://github.com/volantis-x/hexo-theme-volantis/compare/v6.0.0...v6.0.1) (2025-11-17)
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
### Bug Fixes
|
|
7
7
|
|
|
8
|
-
*
|
|
8
|
+
* escape_html & strip_html ([#964](https://github.com/volantis-x/hexo-theme-volantis/issues/964)) ([2c9b4b0](https://github.com/volantis-x/hexo-theme-volantis/commit/2c9b4b00df3dcd73d1337fbf6abcc63695b824ca))
|
|
9
9
|
|
|
10
|
-
## [
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
### Features
|
|
14
|
-
|
|
15
|
-
* **head and body template:** 支持在front-matter中动态插入css和js,支持引入多个 ([#883](https://github.com/volantis-x/hexo-theme-volantis/issues/883)) ([3146360](https://github.com/volantis-x/hexo-theme-volantis/commit/3146360ecf3955314768fde46226632bf86b4e45))
|
|
16
|
-
|
|
17
|
-
## [5.7.10](https://github.com/volantis-x/hexo-theme-volantis/compare/5.7.9...5.7.10) (2023-04-28)
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
### Bug Fixes
|
|
21
|
-
|
|
22
|
-
* 修复移动端菜单栏按钮点击没有收起二级子菜单的问题 ([#880](https://github.com/volantis-x/hexo-theme-volantis/issues/880)) ([bb7738b](https://github.com/volantis-x/hexo-theme-volantis/commit/bb7738b9dcfa375e263ee4ca648d437703b15182))
|
|
23
|
-
|
|
24
|
-
## [5.7.9](https://github.com/volantis-x/hexo-theme-volantis/compare/5.7.8...5.7.9) (2023-04-26)
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
### Bug Fixes
|
|
28
|
-
|
|
29
|
-
* 修复移动端web菜单栏无法收缩;特性:浏览器滚动条复杂样式从配置文件传入 ([#877](https://github.com/volantis-x/hexo-theme-volantis/issues/877)) ([91288f9](https://github.com/volantis-x/hexo-theme-volantis/commit/91288f916dee43baadac9750a39de6d3933a6737))
|
|
30
|
-
|
|
31
|
-
## [5.7.8](https://github.com/volantis-x/hexo-theme-volantis/compare/5.7.7...5.7.8) (2023-04-01)
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
### Bug Fixes
|
|
35
|
-
|
|
36
|
-
* **LeancloudCounter:** 修复 leancloud 配置特定 appId 值导致 custom_api_server 不生效问题 ([#861](https://github.com/volantis-x/hexo-theme-volantis/issues/861)) ([90e470d](https://github.com/volantis-x/hexo-theme-volantis/commit/90e470d8e2e0125f468acc81820ef7addc91f723))
|
|
37
|
-
|
|
38
|
-
## [5.7.7](https://github.com/volantis-x/hexo-theme-volantis/compare/v5.7.6...5.7.7) (2022-11-24)
|
|
10
|
+
## [6.0.0](https://github.com/volantis-x/hexo-theme-volantis/compare/6.0.0...v5.8.1) (2025-11-14)
|
|
39
11
|
|
|
40
12
|
|
|
41
13
|
### Bug Fixes
|
|
42
14
|
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
### Performance Improvements
|
|
48
|
-
|
|
49
|
-
* **debug:** description 的配置检查改为warn警告并使用默认值 [#801](https://github.com/volantis-x/hexo-theme-volantis/issues/801) ([f82f547](https://github.com/volantis-x/hexo-theme-volantis/commit/f82f54718b081439ea40e5a105ba81be15c60de0))
|
|
50
|
-
* **readmore:** readmore:false 优先级高于 auto_excerpt:true ([302bf4e](https://github.com/volantis-x/hexo-theme-volantis/commit/302bf4e101689c0df9e0b8cbb1778dd18a8d5567))
|
|
15
|
+
* pjax ([#950](https://github.com/volantis-x/hexo-theme-volantis/issues/950)) ([01489d0](https://github.com/volantis-x/hexo-theme-volantis/commit/01489d0a09a572a18e90afd693d3247508139885))
|
|
16
|
+
* pjax 修复内存泄露引起的页面卡顿问题 ([204b01f](https://github.com/volantis-x/hexo-theme-volantis/commit/204b01f89245361e9cbaf42451e703a2120b7a78))
|
|
51
17
|
|
|
52
18
|
## [5.7.6](https://github.com/volantis-x/hexo-theme-volantis/compare/v5.7.5...v5.7.6) (2022-09-05)
|
|
53
19
|
|
package/_cdn.yml
ADDED
|
@@ -0,0 +1,449 @@
|
|
|
1
|
+
# cdnjs 的 version 不能使用 latest
|
|
2
|
+
|
|
3
|
+
volantis_style:
|
|
4
|
+
name: hexo-theme-volantis
|
|
5
|
+
file: css/style.css
|
|
6
|
+
local: true
|
|
7
|
+
npm: false
|
|
8
|
+
static: false
|
|
9
|
+
cdnjs: false
|
|
10
|
+
volantis_app:
|
|
11
|
+
name: hexo-theme-volantis
|
|
12
|
+
file: source/js/app.js
|
|
13
|
+
local: true
|
|
14
|
+
npm: true
|
|
15
|
+
static: false
|
|
16
|
+
cdnjs: false
|
|
17
|
+
volantis_aplayer:
|
|
18
|
+
name: hexo-theme-volantis
|
|
19
|
+
file: source/js/plugins/aplayer.js
|
|
20
|
+
local: true
|
|
21
|
+
npm: true
|
|
22
|
+
static: false
|
|
23
|
+
cdnjs: false
|
|
24
|
+
volantis_parallax:
|
|
25
|
+
name: hexo-theme-volantis
|
|
26
|
+
file: source/js/plugins/parallax.js
|
|
27
|
+
local: true
|
|
28
|
+
npm: true
|
|
29
|
+
static: false
|
|
30
|
+
cdnjs: false
|
|
31
|
+
volantis_rightMenus:
|
|
32
|
+
name: hexo-theme-volantis
|
|
33
|
+
file: source/js/plugins/rightMenus.js
|
|
34
|
+
local: true
|
|
35
|
+
npm: true
|
|
36
|
+
static: false
|
|
37
|
+
cdnjs: false
|
|
38
|
+
volantis_tags_sites:
|
|
39
|
+
name: hexo-theme-volantis
|
|
40
|
+
file: source/js/plugins/tags/sites.js
|
|
41
|
+
local: true
|
|
42
|
+
npm: true
|
|
43
|
+
static: false
|
|
44
|
+
cdnjs: false
|
|
45
|
+
volantis_tags_friends:
|
|
46
|
+
name: hexo-theme-volantis
|
|
47
|
+
file: source/js/plugins/tags/friends.js
|
|
48
|
+
local: true
|
|
49
|
+
npm: true
|
|
50
|
+
static: false
|
|
51
|
+
cdnjs: false
|
|
52
|
+
volantis_tags_contributors:
|
|
53
|
+
name: hexo-theme-volantis
|
|
54
|
+
file: source/js/plugins/tags/contributors.js
|
|
55
|
+
local: true
|
|
56
|
+
npm: true
|
|
57
|
+
static: false
|
|
58
|
+
cdnjs: false
|
|
59
|
+
volantis_search_hexo:
|
|
60
|
+
name: hexo-theme-volantis
|
|
61
|
+
file: source/js/search/hexo.js
|
|
62
|
+
local: true
|
|
63
|
+
npm: true
|
|
64
|
+
static: false
|
|
65
|
+
cdnjs: false
|
|
66
|
+
volantis_search_algolia:
|
|
67
|
+
name: hexo-theme-volantis
|
|
68
|
+
file: source/js/search/algolia.js
|
|
69
|
+
local: true
|
|
70
|
+
npm: true
|
|
71
|
+
static: false
|
|
72
|
+
cdnjs: false
|
|
73
|
+
algolia_search_v4:
|
|
74
|
+
name: algoliasearch
|
|
75
|
+
file: dist/algoliasearch-lite.umd.js
|
|
76
|
+
version: 4.14.2
|
|
77
|
+
npm: true
|
|
78
|
+
static: false
|
|
79
|
+
cdnjs: false
|
|
80
|
+
instantsearch_v4:
|
|
81
|
+
name: instantsearch.js
|
|
82
|
+
file: dist/instantsearch.production.min.js
|
|
83
|
+
version: 4.44.0
|
|
84
|
+
npm: true
|
|
85
|
+
static: false
|
|
86
|
+
cdnjs: false
|
|
87
|
+
volantis_search_meilisearch:
|
|
88
|
+
name: hexo-theme-volantis
|
|
89
|
+
file: source/js/search/meilisearch.js
|
|
90
|
+
local: true
|
|
91
|
+
npm: true
|
|
92
|
+
static: false
|
|
93
|
+
cdnjs: false
|
|
94
|
+
instant_meilisearch:
|
|
95
|
+
name: "@meilisearch/instant-meilisearch"
|
|
96
|
+
file: dist/instant-meilisearch.umd.min.js
|
|
97
|
+
version: 0.8.1
|
|
98
|
+
npm: true
|
|
99
|
+
static: false
|
|
100
|
+
cdnjs: false
|
|
101
|
+
jquery:
|
|
102
|
+
name: jquery
|
|
103
|
+
file: dist/jquery.min.js
|
|
104
|
+
version: 3.6.0
|
|
105
|
+
local: false
|
|
106
|
+
npm: true
|
|
107
|
+
static: true
|
|
108
|
+
cdnjs: true
|
|
109
|
+
fontawesome:
|
|
110
|
+
name: "@fortawesome/fontawesome-free"
|
|
111
|
+
cdnjs_name: font-awesome
|
|
112
|
+
file: css/all.min.css
|
|
113
|
+
version: 6.1.1
|
|
114
|
+
npm: true
|
|
115
|
+
static: true
|
|
116
|
+
cdnjs: true
|
|
117
|
+
katex_js:
|
|
118
|
+
name: katex
|
|
119
|
+
cdnjs_name: KaTeX
|
|
120
|
+
file: dist/katex.min.js
|
|
121
|
+
version: 0.15.2
|
|
122
|
+
npm: true
|
|
123
|
+
static: true
|
|
124
|
+
cdnjs: true
|
|
125
|
+
katex_css:
|
|
126
|
+
name: katex
|
|
127
|
+
cdnjs_name: KaTeX
|
|
128
|
+
file: dist/katex.min.css
|
|
129
|
+
version: 0.15.2
|
|
130
|
+
npm: true
|
|
131
|
+
static: true
|
|
132
|
+
cdnjs: true
|
|
133
|
+
katex_render:
|
|
134
|
+
name: katex
|
|
135
|
+
cdnjs_name: KaTeX
|
|
136
|
+
file: dist/contrib/auto-render.min.js
|
|
137
|
+
version: 0.15.2
|
|
138
|
+
npm: true
|
|
139
|
+
static: true
|
|
140
|
+
cdnjs: true
|
|
141
|
+
mathjax:
|
|
142
|
+
name: mathjax
|
|
143
|
+
file: es5/tex-mml-chtml.js
|
|
144
|
+
version: 3.2.0
|
|
145
|
+
npm: true
|
|
146
|
+
static: true
|
|
147
|
+
cdnjs: true
|
|
148
|
+
markdown:
|
|
149
|
+
name: github-markdown-css
|
|
150
|
+
file: github-markdown.min.css
|
|
151
|
+
version: 5.1.0
|
|
152
|
+
npm: true
|
|
153
|
+
static: true
|
|
154
|
+
cdnjs: true
|
|
155
|
+
marked:
|
|
156
|
+
name: marked
|
|
157
|
+
file: marked.min.js
|
|
158
|
+
version: 4.0.18
|
|
159
|
+
npm: true
|
|
160
|
+
static: true
|
|
161
|
+
cdnjs: true
|
|
162
|
+
hlsjs:
|
|
163
|
+
name: hls.js
|
|
164
|
+
file: dist/hls.min.js
|
|
165
|
+
version: 1.1.3
|
|
166
|
+
npm: true
|
|
167
|
+
static: true
|
|
168
|
+
cdnjs: true
|
|
169
|
+
fancybox_css:
|
|
170
|
+
name: "@fancyapps/ui"
|
|
171
|
+
cdnjs_name: fancyapps-ui
|
|
172
|
+
file: dist/fancybox.css
|
|
173
|
+
version: 4.0.31
|
|
174
|
+
npm: true
|
|
175
|
+
static: true
|
|
176
|
+
cdnjs: true
|
|
177
|
+
fancybox_js:
|
|
178
|
+
name: "@fancyapps/ui"
|
|
179
|
+
cdnjs_name: fancyapps-ui
|
|
180
|
+
file: dist/fancybox.umd.js
|
|
181
|
+
version: 4.0.31
|
|
182
|
+
npm: true
|
|
183
|
+
static: true
|
|
184
|
+
cdnjs: true
|
|
185
|
+
instant_page:
|
|
186
|
+
name: instant.page
|
|
187
|
+
file: instantpage.min.js
|
|
188
|
+
version: 5.1.1
|
|
189
|
+
npm: true
|
|
190
|
+
static: true
|
|
191
|
+
cdnjs: true
|
|
192
|
+
flying-pages:
|
|
193
|
+
name: flying-pages
|
|
194
|
+
file: flying-pages.min.js
|
|
195
|
+
version: 2.1.2
|
|
196
|
+
npm: false # 不是最新版本 npm三年没更新了 version: 2.0.6
|
|
197
|
+
static: true
|
|
198
|
+
cdnjs: false
|
|
199
|
+
vanilla-lazyload:
|
|
200
|
+
name: vanilla-lazyload
|
|
201
|
+
file: dist/lazyload.min.js
|
|
202
|
+
version: 17.1.0
|
|
203
|
+
npm: true
|
|
204
|
+
static: true
|
|
205
|
+
cdnjs: true
|
|
206
|
+
scrollreveal:
|
|
207
|
+
name: scrollreveal
|
|
208
|
+
cdnjs_name: scrollReveal.js
|
|
209
|
+
file: dist/scrollreveal.min.js
|
|
210
|
+
version: 4.0.9
|
|
211
|
+
npm: true
|
|
212
|
+
static: true
|
|
213
|
+
cdnjs: true
|
|
214
|
+
nodewaves_css:
|
|
215
|
+
name: node-waves
|
|
216
|
+
file: dist/waves.min.css
|
|
217
|
+
version: 0.7.6
|
|
218
|
+
npm: true
|
|
219
|
+
static: true
|
|
220
|
+
cdnjs: true
|
|
221
|
+
nodewaves_js:
|
|
222
|
+
name: node-waves
|
|
223
|
+
file: dist/waves.min.js
|
|
224
|
+
version: 0.7.6
|
|
225
|
+
npm: true
|
|
226
|
+
static: true
|
|
227
|
+
cdnjs: true
|
|
228
|
+
aplayer_js:
|
|
229
|
+
name: aplayer
|
|
230
|
+
file: dist/APlayer.min.js
|
|
231
|
+
version: 1.10.1
|
|
232
|
+
npm: true
|
|
233
|
+
static: true
|
|
234
|
+
cdnjs: true
|
|
235
|
+
aplayer_css:
|
|
236
|
+
name: aplayer
|
|
237
|
+
file: dist/APlayer.min.css
|
|
238
|
+
version: 1.10.1
|
|
239
|
+
npm: true
|
|
240
|
+
static: true
|
|
241
|
+
cdnjs: true
|
|
242
|
+
meting:
|
|
243
|
+
name: meting
|
|
244
|
+
file: dist/Meting.min.js
|
|
245
|
+
version: 2.0
|
|
246
|
+
npm: true
|
|
247
|
+
static: true
|
|
248
|
+
cdnjs: false
|
|
249
|
+
pjax:
|
|
250
|
+
name: pjax
|
|
251
|
+
file: pjax.min.js
|
|
252
|
+
version: 0.2.8
|
|
253
|
+
npm: true
|
|
254
|
+
static: true
|
|
255
|
+
cdnjs: true
|
|
256
|
+
font-awesome-animation:
|
|
257
|
+
name: font-awesome-animation
|
|
258
|
+
file: css/font-awesome-animation.min.css
|
|
259
|
+
version: 1.1.1
|
|
260
|
+
npm: true
|
|
261
|
+
static: true
|
|
262
|
+
cdnjs: false
|
|
263
|
+
comment_typing:
|
|
264
|
+
name: comment_typing
|
|
265
|
+
file: comment_typing.js
|
|
266
|
+
version: unknown
|
|
267
|
+
npm: false # comment_typing.js 来源未知
|
|
268
|
+
static: true
|
|
269
|
+
cdnjs: false
|
|
270
|
+
busuanzi:
|
|
271
|
+
name: busuanzi
|
|
272
|
+
file: bsz.pure.mini.js
|
|
273
|
+
version: 2.3.0
|
|
274
|
+
npm: true
|
|
275
|
+
static: true
|
|
276
|
+
cdnjs: false
|
|
277
|
+
artalk_js:
|
|
278
|
+
name: artalk
|
|
279
|
+
file: dist/Artalk.js
|
|
280
|
+
version: 2.4.3
|
|
281
|
+
npm: true
|
|
282
|
+
static: false
|
|
283
|
+
cdnjs: true
|
|
284
|
+
artalk_css:
|
|
285
|
+
name: artalk
|
|
286
|
+
file: dist/Artalk.css
|
|
287
|
+
version: 2.4.3
|
|
288
|
+
npm: true
|
|
289
|
+
static: false
|
|
290
|
+
cdnjs: true
|
|
291
|
+
artalk_katex:
|
|
292
|
+
name: "@artalk/plugin-katex"
|
|
293
|
+
file: dist/artalk-plugin-katex.js
|
|
294
|
+
version: 0.1.4
|
|
295
|
+
npm: true
|
|
296
|
+
static: false
|
|
297
|
+
cdnjs: false
|
|
298
|
+
disqusjs_js:
|
|
299
|
+
name: disqusjs
|
|
300
|
+
file: dist/disqus.js
|
|
301
|
+
version: 1.3
|
|
302
|
+
npm: true
|
|
303
|
+
static: false
|
|
304
|
+
cdnjs: false # 主题未适配 3.0.1 版本
|
|
305
|
+
disqusjs_css:
|
|
306
|
+
name: disqusjs
|
|
307
|
+
file: dist/disqusjs.css
|
|
308
|
+
version: 1.3
|
|
309
|
+
npm: true
|
|
310
|
+
static: false
|
|
311
|
+
cdnjs: false # 主题未适配 3.0.1 版本
|
|
312
|
+
gitalk:
|
|
313
|
+
name: gitalk
|
|
314
|
+
file: dist/gitalk.min.js
|
|
315
|
+
version: 1.7.2
|
|
316
|
+
npm: true
|
|
317
|
+
static: false
|
|
318
|
+
cdnjs: true
|
|
319
|
+
twikoo:
|
|
320
|
+
name: twikoo
|
|
321
|
+
file: dist/twikoo.min.js
|
|
322
|
+
version: 1.6.7
|
|
323
|
+
npm: true
|
|
324
|
+
static: false
|
|
325
|
+
cdnjs: true
|
|
326
|
+
waline_css:
|
|
327
|
+
name: "@waline/client"
|
|
328
|
+
cdnjs_name: waline
|
|
329
|
+
file: dist/waline.css
|
|
330
|
+
version: 2.6.3
|
|
331
|
+
npm: true
|
|
332
|
+
static: false
|
|
333
|
+
cdnjs: true
|
|
334
|
+
waline_js:
|
|
335
|
+
name: "@waline/client"
|
|
336
|
+
cdnjs_name: waline
|
|
337
|
+
file: dist/waline.js
|
|
338
|
+
version: 2.6.3
|
|
339
|
+
npm: true
|
|
340
|
+
static: false
|
|
341
|
+
cdnjs: true
|
|
342
|
+
discuss:
|
|
343
|
+
name: discuss
|
|
344
|
+
file: dist/discuss.js
|
|
345
|
+
cdnjs_file: dist/discuss.js
|
|
346
|
+
cdnjs_no_min_file: true
|
|
347
|
+
version: 1.1.4
|
|
348
|
+
npm: true
|
|
349
|
+
static: false
|
|
350
|
+
cdnjs: true
|
|
351
|
+
vssue_js:
|
|
352
|
+
name: vssue
|
|
353
|
+
file: dist/vssue.github.min.js
|
|
354
|
+
version: 1.4.4
|
|
355
|
+
npm: true
|
|
356
|
+
static: false
|
|
357
|
+
cdnjs: false
|
|
358
|
+
vssue_css:
|
|
359
|
+
name: vssue
|
|
360
|
+
file: dist/vssue.min.css
|
|
361
|
+
version: 1.4.4
|
|
362
|
+
npm: true
|
|
363
|
+
static: false
|
|
364
|
+
cdnjs: false
|
|
365
|
+
vssue_vue:
|
|
366
|
+
name: vue
|
|
367
|
+
file: dist/vue.runtime.min.js
|
|
368
|
+
version: 2.6.1
|
|
369
|
+
npm: true
|
|
370
|
+
static: false
|
|
371
|
+
cdnjs: true
|
|
372
|
+
swiper_js:
|
|
373
|
+
name: swiper
|
|
374
|
+
cdnjs_name: Swiper
|
|
375
|
+
file: swiper-bundle.min.js
|
|
376
|
+
version: 8.3.2
|
|
377
|
+
npm: true
|
|
378
|
+
static: true
|
|
379
|
+
cdnjs: true
|
|
380
|
+
swiper_css:
|
|
381
|
+
name: swiper
|
|
382
|
+
cdnjs_name: Swiper
|
|
383
|
+
file: swiper-bundle.min.css
|
|
384
|
+
version: 8.3.2
|
|
385
|
+
npm: true
|
|
386
|
+
static: true
|
|
387
|
+
cdnjs: true
|
|
388
|
+
izitoast_css:
|
|
389
|
+
name: izitoast
|
|
390
|
+
file: dist/css/iziToast.min.css
|
|
391
|
+
version: 1.4.0
|
|
392
|
+
npm: true
|
|
393
|
+
static: true
|
|
394
|
+
cdnjs: true
|
|
395
|
+
izitoast_js:
|
|
396
|
+
name: izitoast
|
|
397
|
+
file: dist/js/iziToast.min.js
|
|
398
|
+
version: 1.4.0
|
|
399
|
+
npm: true
|
|
400
|
+
static: true
|
|
401
|
+
cdnjs: true
|
|
402
|
+
fcircle_css:
|
|
403
|
+
name: fcircle
|
|
404
|
+
file: fcircle.css
|
|
405
|
+
version: unknown
|
|
406
|
+
npm: false
|
|
407
|
+
static: true
|
|
408
|
+
cdnjs: false
|
|
409
|
+
fcircle_js:
|
|
410
|
+
name: fcircle
|
|
411
|
+
file: fcircle.js
|
|
412
|
+
version: unknown
|
|
413
|
+
npm: false
|
|
414
|
+
static: true
|
|
415
|
+
cdnjs: false
|
|
416
|
+
bbtalk:
|
|
417
|
+
name: bbtalk
|
|
418
|
+
file: dist/bbtalk.js
|
|
419
|
+
version: 0.1.5
|
|
420
|
+
npm: true
|
|
421
|
+
static: false
|
|
422
|
+
cdnjs: false
|
|
423
|
+
artitalk:
|
|
424
|
+
name: artitalk
|
|
425
|
+
file: artitalk.js
|
|
426
|
+
version: 3.3.4
|
|
427
|
+
npm: true
|
|
428
|
+
static: false
|
|
429
|
+
cdnjs: false
|
|
430
|
+
pace_js:
|
|
431
|
+
name: pace-js
|
|
432
|
+
cdnjs_name: pace
|
|
433
|
+
file: pace.min.js
|
|
434
|
+
version: 1.2.4
|
|
435
|
+
npm: true
|
|
436
|
+
static: false
|
|
437
|
+
cdnjs: true
|
|
438
|
+
pace_css:
|
|
439
|
+
name: pace-js
|
|
440
|
+
cdnjs_name: pace
|
|
441
|
+
file: themes/${hexo.theme.config?.plugins?.pace?.color}/pace-theme-${hexo.theme.config?.plugins?.pace?.theme}.css
|
|
442
|
+
version: 1.2.4
|
|
443
|
+
npm: true
|
|
444
|
+
static: false
|
|
445
|
+
cdnjs: true
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
|
|
449
|
+
|