mirror of
https://github.com/jerryc127/hexo-theme-butterfly.git
synced 2025-09-15 12:58:48 +08:00
Breaking change 1. 手機端界面卡片化,同時,手機端也可以顯示側邊欄的內容 2. 修復當menu過多時,header界面出現錯亂的bug。當menu過多時,會變為sidebar模式 3. 增加medium-zoom大圖查看模式 4. 增加鼠標點擊特效:文字和愛心 兩個點擊特效 5. 主頁subtitle可以調用第三方api(金山詞霸每日一句、一言網的一句話、一句網、今日詩詞) 6. 添加 snackbar 彈窗 7. 修改nightshift為darkmode,darkmode可隨系統設置而自動切換,可設置隨時間而切換darkmode 8. 修復hexo自帶的標籤外掛(Tag Plugins)顯示bug(Block Quote、Code Block With caption、Gist、Youtube、Vimeo) 9. 主題所需要的css和js可根據需要配置CDN 10. 更改darkmode的加載方式,網站設置dark mode後,現在進入網頁不會在'閃'一下 11. 背景特效和背景圖片在手機界面也會顯示 12. 增加justified-gallery圖片顯示(Tag Plugins) Feature 1. 文章頁面,字數統計、閲讀時長和閲讀量前面添加icon 2. 更改懶加載js 3. 升級typed.js/instantpage.js到最新版 4. 搜索和右下角按鈕添加退出特效 Fixed 1. 修復在 Hexo 4.0.0下,一些按鈕點擊會跳出一個空白頁的bug 2. 修復在 Hexo 4.0.0下,分頁按鈕出現代碼的bug 3. 修復當沒有設置評論時,右下角依舊出現'直達評論'按鈕的bug 4. 優化sidebar的打開速度 5. 修復文章頁標題左右邊距不平等的bug 6. 修復keywords讀取的bug 7. 修復當post/page 內容為空時,footer位置錯亂的bug 8. 修復在手機safari,toc sidebar底部內容被遮擋的bug 9. 完善Dark mode,一些界面的配色 10. 修復 card-archives 查看更多 跳轉bug Remove 1. 移除Gitment 2. 移除Gallery
109 lines
3.4 KiB
Plaintext
109 lines
3.4 KiB
Plaintext
-
|
|
var algolia = 'undefined';
|
|
var env = process.env;
|
|
if (theme.algolia_search.enable) {
|
|
algolia = JSON.stringify({
|
|
appId: env.ALGOLIA_APP_ID || config.algolia.appId || config.algolia.applicationID,
|
|
apiKey: env.ALGOLIA_API_KEY || config.algolia.apiKey,
|
|
indexName: env.ALGOLIA_INDEX_NAME || config.algolia.indexName,
|
|
hits: theme.algolia_search.hits,
|
|
// search languages
|
|
languages: {
|
|
input_placeholder: _p("algolia_search.input_placeholder"),
|
|
hits_empty: _p("algolia_search.hits_empty"),
|
|
hits_stats: _p("algolia_search.hits_stats")
|
|
}
|
|
})
|
|
}
|
|
|
|
var localSearch = 'undefined';
|
|
if (theme.local_search && theme.local_search.enable) {
|
|
localSearch = JSON.stringify({
|
|
path: config.search.path,
|
|
languages: {
|
|
// search languages
|
|
hits_empty: _p("local_search.hits_empty")
|
|
}
|
|
})
|
|
}
|
|
var translate = 'undefined';
|
|
if (theme.translate && theme.translate.enable){
|
|
translate = JSON.stringify({
|
|
defaultEncoding: theme.translate.defaultEncoding,
|
|
translateDelay: theme.translate.translateDelay,
|
|
cookieDomain: theme.translate.cookieDomain,
|
|
msgToTraditionalChinese: theme.translate.msgToTraditionalChinese,
|
|
msgToSimplifiedChinese: theme.translate.msgToSimplifiedChinese
|
|
})
|
|
}
|
|
|
|
var copyright = 'undefined' ;
|
|
if (theme.copy.enable && theme.copy.copyright){
|
|
copyright = JSON.stringify({
|
|
languages: {
|
|
author: _p("copy_copyright.author") + ': ' + config.author,
|
|
link: _p("copy_copyright.link") + ': ' + without_html,
|
|
source: _p("copy_copyright.source") + ': ' + config.title,
|
|
info: _p("copy_copyright.info")
|
|
}
|
|
})
|
|
}
|
|
|
|
var copy_copyright_js = theme.copy.enable && theme.copy.copyright;
|
|
|
|
var ClickShowText = 'undefined';
|
|
if (theme.ClickShowText && theme.ClickShowText.enable) {
|
|
ClickShowText = JSON.stringify({
|
|
text: theme.ClickShowText.text.join(","),
|
|
fontSize: theme.ClickShowText.fontSize
|
|
})
|
|
}
|
|
|
|
|
|
var Snackbar = 'undefined';
|
|
if (theme.snackbar && theme.snackbar.enable) {
|
|
Snackbar = JSON.stringify({
|
|
bookmark: {
|
|
title: _p("Snackbar.bookmark.title"),
|
|
message_prev: _p("Snackbar.bookmark.message_prev"),
|
|
message_next: _p("Snackbar.bookmark.message_next")
|
|
},
|
|
chs_to_cht: _p("Snackbar.chs_to_cht"),
|
|
cht_to_chs: _p("Snackbar.cht_to_chs"),
|
|
day_to_night: _p("Snackbar.day_to_night"),
|
|
night_to_day: _p("Snackbar.night_to_day"),
|
|
bgLight: theme.snackbar.bg_light,
|
|
bgDark: theme.snackbar.bg_dark,
|
|
position: theme.snackbar.position,
|
|
})
|
|
}
|
|
|
|
script.
|
|
var GLOBAL_CONFIG = {
|
|
root: '!{config.root}',
|
|
algolia: !{algolia},
|
|
localSearch: !{localSearch},
|
|
translate: !{translate},
|
|
highlight_copy: '!{theme.highlight_copy}',
|
|
highlight_lang: '!{theme.highlight_lang}',
|
|
highlight_shrink: '!{theme.highlight_shrink}',
|
|
copy: {
|
|
success: '!{_p("copy.success")}',
|
|
error: '!{_p("copy.error")}',
|
|
noSupport: '!{_p("copy.noSupport")}'
|
|
},
|
|
bookmark: {
|
|
title: '!{_p("Snackbar.bookmark.title")}',
|
|
message_prev: '!{_p("Snackbar.bookmark.message_prev")}',
|
|
message_next: '!{_p("Snackbar.bookmark.message_next")}'
|
|
},
|
|
runtime_unit: '!{_p("runtime_unit")}',
|
|
copyright: !{copyright},
|
|
copy_copyright_js: !{copy_copyright_js},
|
|
ClickShowText: !{ClickShowText},
|
|
medium_zoom: '!{theme.medium_zoom.enable}',
|
|
Snackbar: !{Snackbar}
|
|
|
|
}
|
|
|