hexo-theme-stellar 1.29.0 → 1.29.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/_config.yml +9 -9
- package/languages/zh-TW.yml +2 -2
- package/package.json +1 -1
package/_config.yml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
######## Stellar info ########
|
|
2
2
|
stellar:
|
|
3
|
-
version: '1.29.
|
|
3
|
+
version: '1.29.1'
|
|
4
4
|
homepage: 'https://xaoxuu.com/wiki/stellar/'
|
|
5
5
|
repo: 'https://github.com/xaoxuu/hexo-theme-stellar'
|
|
6
6
|
main_css: /css/main.css
|
|
@@ -10,8 +10,8 @@ stellar:
|
|
|
10
10
|
######## head tags ########
|
|
11
11
|
preconnect:
|
|
12
12
|
# - https://gcore.jsdelivr.net
|
|
13
|
+
# - https://cdn.jsdelivr.net
|
|
13
14
|
# - https://unpkg.com
|
|
14
|
-
# - https://cdn.bootcdn.net
|
|
15
15
|
|
|
16
16
|
open_graph:
|
|
17
17
|
enable: true
|
|
@@ -420,8 +420,8 @@ tag_plugins:
|
|
|
420
420
|
|
|
421
421
|
# 基础依赖
|
|
422
422
|
dependencies:
|
|
423
|
-
jquery: https://cdn.
|
|
424
|
-
marked: https://cdn.
|
|
423
|
+
jquery: https://cdn.jsdelivr.net/npm/jquery@3.7.1/dist/jquery.min.js
|
|
424
|
+
marked: https://cdn.jsdelivr.net/npm/marked@13.0.1/lib/marked.umd.min.js
|
|
425
425
|
|
|
426
426
|
|
|
427
427
|
# 内置服务,按需加载(页面内用到了就会加载,没有用到就不会加载)
|
|
@@ -466,13 +466,13 @@ plugins:
|
|
|
466
466
|
preload:
|
|
467
467
|
enable: true
|
|
468
468
|
service: flying_pages # flying_pages
|
|
469
|
-
flying_pages: https://cdn.
|
|
469
|
+
flying_pages: https://cdn.jsdelivr.net/npm/flying-pages@2/flying-pages.min.js
|
|
470
470
|
|
|
471
471
|
# lazyload
|
|
472
472
|
# https://www.npmjs.com/package/vanilla-lazyload
|
|
473
473
|
lazyload:
|
|
474
474
|
enable: true # [hexo clean && hexo s] is required after changing this value.
|
|
475
|
-
js: https://cdn.
|
|
475
|
+
js: https://cdn.jsdelivr.net/npm/vanilla-lazyload@19.1.3/dist/lazyload.min.js
|
|
476
476
|
transition: fade # blur, fade
|
|
477
477
|
|
|
478
478
|
# https://fancyapps.com/docs/ui/fancybox/
|
|
@@ -480,8 +480,8 @@ plugins:
|
|
|
480
480
|
fancybox:
|
|
481
481
|
enable: true
|
|
482
482
|
loader: /js/plugins/fancybox-loader.js
|
|
483
|
-
js: https://cdn.
|
|
484
|
-
css: https://cdn.
|
|
483
|
+
js: https://cdn.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.umd.js
|
|
484
|
+
css: https://cdn.jsdelivr.net/npm/@fancyapps/ui@5.0/dist/fancybox/fancybox.css
|
|
485
485
|
# 让 md 语法图片支持放大可以这样写: .md-text img:not([class]), .md-text .image img
|
|
486
486
|
# 可以处理评论区的图片(不支持 iframe 类评论系统)例如:
|
|
487
487
|
# 使用 twikoo 评论可以写: .tk-content img:not([class*="emo"])
|
|
@@ -497,7 +497,7 @@ plugins:
|
|
|
497
497
|
# https://scrollrevealjs.org/api/reveal.html
|
|
498
498
|
scrollreveal:
|
|
499
499
|
enable: #true
|
|
500
|
-
js: https://cdn.
|
|
500
|
+
js: https://cdn.jsdelivr.net/npm/scrollreveal@4.0.9/dist/scrollreveal.min.js
|
|
501
501
|
distance: 16px
|
|
502
502
|
duration: 800 # ms
|
|
503
503
|
interval: 100 # ms
|
package/languages/zh-TW.yml
CHANGED