Update

UPDATE

2024-4-11 v.3.9.9.9.4 Themes: Fusion X

  • Redesigned Comment UI

2024-4-4 v.3.9.9.9.3 Themes: Fusion X

  • Optimized article font-size to prevent Chrome rendering problem
1
2
3
4
5
6
7
8
9
10
11
#article-container p {
-font-size: 20.5px;
+font-size: 20px;
-line-height: 1.431;
+line-height: 1.4;
font-weight: 400;
letter-spacing: .011em;
margin: 0 0 13px;
font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif
}

2024-3-27 v.3.9.9.9.2 Themes: Fusion X

  • Optimized the Copyright component inside article page

2024-3-27 v.3.9.9.9.1 Themes: Fusion X

  • Optimized text layout

  • We are now Syncing on Zeen

2024-3-24 v.3.9.9.9 Themes: Fusion X

  • Optimized some UI details

  • Article statistics component (Echart) supports dark mode conversion

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

function switchPostChart () {
let color = document.documentElement.getAttribute('data-theme') === 'light' ? '#4C4948' : 'rgba(255,255,255,0.7)'
if (document.getElementById('posts-chart') && postsOption) {
try {
let postsOptionNew = postsOption
postsOptionNew.title.textStyle.color = color
postsOptionNew.xAxis.nameTextStyle.color = color
postsOptionNew.yAxis.nameTextStyle.color = color
postsOptionNew.xAxis.axisLabel.color = color
postsOptionNew.yAxis.axisLabel.color = color
postsOptionNew.xAxis.axisLine.lineStyle.color = color
postsOptionNew.yAxis.axisLine.lineStyle.color = color
postsOptionNew.series[0].markLine.data[0].label.color = color
postsChart.setOption(postsOptionNew)
} catch (error) {
console.log(error)
}
}
if (document.getElementById('tags-chart') && tagsOption) {
try {
let tagsOptionNew = tagsOption
tagsOptionNew.title.textStyle.color = color
tagsOptionNew.xAxis.nameTextStyle.color = color
tagsOptionNew.yAxis.nameTextStyle.color = color
tagsOptionNew.xAxis.axisLabel.color = color
tagsOptionNew.yAxis.axisLabel.color = color
tagsOptionNew.xAxis.axisLine.lineStyle.color = color
tagsOptionNew.yAxis.axisLine.lineStyle.color = color
tagsOptionNew.series[0].markLine.data[0].label.color = color
tagsChart.setOption(tagsOptionNew)
} catch (error) {
console.log(error)
}
}
if (document.getElementById('categories-chart') && categoriesOption) {
try {
let categoriesOptionNew = categoriesOption
categoriesOptionNew.title.textStyle.color = color
categoriesOptionNew.legend.textStyle.color = color
categoriesOptionNew.series[0].label.color = color
categoriesChart.setOption(categoriesOptionNew)
} catch (error) {
console.log(error)
}
}
}
document.querySelector(".nav-rightbutton").addEventListener("click", function () { setTimeout(switchPostChart, 100) })

  • Article statistics component (Echart) fixes the problem of invalid URLs when tags or categories have two words

Correct:

1
/tags/Voice-Synthesis/

Wrong:

1
/tags/Voice%20Synthesis/

Solution:

change \hexo-theme-butterfly\scripts\helpers\charts.js

Tags

1
2
3
4
5
6
tagsChart.on('click', 'series', (event) => {
if (event.name === 'Average') return
- let href = '/tags/' + event.name + '/';
+ let href = '/tags/' + event.name.replace(/ /g, '-') + '/';
window.location.href = href;
});

Categories

1
2
3
4
5
categoriesChart.on('click', 'series', (event) => {
- let href = '/tags/' + event.name + '/';
+ let href = '/categories/' + event.name.replace(/ /g, '-') + '/';
window.location.href = href;
});
  • Enable Code Block’s highlight_height_limit function to 500px

  • Butterfly: 4.13.0

2024-3-19 v.3.9.9.8 Themes: Fusion X

2024-3-10 v.3.9.9.7.4 Themes: Fusion X

  • Updated “About Us” page

  • Butterfly: 4.12.0

2024-1-27 v.3.9.9.7.4 Themes: Fusion X

  • Detailed Optimization

  • Butterfly: 4.12.0

2024-1-27 v.3.9.9.7.3 Themes: Fusion X

2024-1-19 v.3.9.9.7.2 Themes: Fusion X

  • We are now Syncing on Medium

  • Butterfly: 4.12.0

2024-1-17 v.3.9.9.7.1 Themes: Fusion X

  • Lazyload problem can not be solved on iOS device, we are working on that
1
2
3
4
5
.post-title, #post-meta {
opacity: 0;
transform: translateY(50px);
/* will-change: transform, opacity; */
}
  • Butterfly: 4.12.0

2024-1-17 v.3.9.9.7 Beta 1 Themes: Fusion X

  • There are currently some problems with medium zoom. It is temporarily replaced by fancybox (“Love From Safari”)

  • There are currently some problems with lazyload. It is temporarily closed.(“Love From Safari”)

  • Newly designed search UI

  • Adaptation to Butterfly 4.12 Update

  • Butterfly: 4.12.0

2023-12-23 v.3.9.9.5 Themes: Fusion X

  • Adaptation to Butterfly 4.11 Update

  • Photo page add AI Text-to-image Demo

  • Butterfly: 4.11.0

2023-11-19 v.3.9.9.4.6 Themes: Fusion X

  • Add a Blog area to the Websites

  • Butterfly: 4.10.0

2023-10-30 v.3.9.9.4.5 Themes: Fusion X


2023-10-9 v.3.9.9.4.4 Beta 1 Themes: Fusion X

  • Basic Full Adaptation to Butterfly 4.10 Major Update

  • CSS global code optimization

  • Added support for Katex

  • Katex CDN Optimization

  • Optimized the structure and CSS code of multiple Tabs inside the page

  • Archives page-font-optimization

  • Photo page with reduced animation display

  • JS Performance Optimization

  • No further issues identified for now

  • Butterfly: 4.10.0


2023-9-15 v.3.9.9.4.3 Beta 9.2 Themes: Fusion X

  • The page change button on the mobile phone has been optimized and some components have been updated.

  • Butterfly: 4.9.0


2023-9-11 v.3.9.9.4.3 Beta 9.1 Themes: Fusion X

  • Added more items to the Websites

  • Butterfly: 4.9.0


2023-9-10 v.3.9.9.4.3 Beta 9 Themes: Fusion X

  • Optimized Themecolor

  • Butterfly: 4.9.0


2023-8-27 v.3.9.9.4.3 Beta 8 Themes: Fusion X

  • Fixed the code block issue

  • Butterfly: 4.9.0


2023-7-24 v.3.9.9.4.3 Beta 7 Themes: Fusion X

  • Updated RSS function

  • Butterfly: 4.9.0


2023-7-24 v.3.9.9.4.3 Beta 6 Themes: Fusion X

  • Optimized the home page animation(fixed)

  • Butterfly: 4.9.0


2023-7-19 v.3.9.9.4.3 Beta 5 Themes: Fusion X

  • Performance Optimization and Bug Fixes

  • Butterfly: 4.9.0


2023-7-12 v.3.9.9.4.3 Beta 4 Themes: Fusion X

  • Added animation for post title

  • Fixed some SEO and Accessibility problems

  • Changed some post meta configuration

  • Butterfly: 4.9.0


2023-7-9 v.3.9.9.4.3 Beta 3 Themes: Fusion X

  • Introducing our new Domain: CloseX.org

  • Butterfly: 4.9.0


2023-7-6 v.3.9.9.4.3 Beta 2 Themes: Fusion X

  • We are currently experiencing minor memory usage problems. We are working to address them, but it may take more time than anticipated.

  • Optimized the home page animation

  • The navigation bar is temporarily changed to fixed

  • Most known issues have been fixed

  • Butterfly: 4.9.0


2023-7-5 v.3.9.9.4.3 Beta 1 Themes: Fusion X

  • Redesigned a new foldable Footer, compatible with mobile and computer

  • Brand new home page slide animation. Still in testing.

  • Butterfly: 4.9.0


2023-7-3 v.3.9.9.4.2 Themes: Fusion X

  • Welcome to visit our newly designed website Sitemap.

  • Butterfly: 4.9.0


2023-7-2 v.3.9.9.4.1 Themes: Fusion X

  • Fixed some SEO and Accessibility problems

  • Butterfly: 4.9.0


2023-6-28 v.3.9.9.4 Themes: Fusion X

  • Fixed: CDN issue fixed

  • UI improvement and some bugs be fixed

  • Solved some historical issues

  • Butterfly: 4.9.0


2023-6-18 v.3.9.9.3 Themes: Fusion X

  • Updated with brand new sharing interface, modern card design and presentation, podcast recommendations. Access now: Share

  • Update to the Butterfly 4.9.0

  • UI improvement and some bugs be fixed

  • Butterfly: 4.9.0


2023-5-26 v.3.9.9 Themes: Fusion X

  • Comment System Work Well on most of Browsers

  • UI improvement and some bugs be fixed

  • Butterfly: 4.8.5


2023-5-25 v.3.9.9 Beta 2 Themes: Fusion X

Comment System Compatibility
The comment system is currently functioning properly in various browsers based on the Chromium engine, excluding the Author’s Mac Computer.

The following browsers have been successfully tested:

  • Windows system:

    • Chrome
    • Microsoft Edge
    • Firefox
    • Brave
    • Opera
  • iOS system:

    • All browsers
  • Mac system:

    • Safari
    • Other people’s Chrome
    • Other people’s Microsoft Edge
    • Other people’s Firefox
    • Other people’s Brave
    • Other people’s Arc Browser
  • Linux system:

    • Firefox Browser
  • Android system:

    • Chrome
    • Opera browser
  • Butterfly: 4.8.5


2023-5-22 v.3.9.9 Beta 1 Themes: Fusion X

  • Update to the Butterfly 4.8.5

  • Optimized FONT-AWESOME CDN (From 6.0.0 to 6.4.0)

  • Launch the comment beta testing feature

  • Fixed: Comments Does not Exist

Solution:

post.pug

1
2
3
if page.comments !== false && theme.comments && theme.comments.use
- var commentsJsLoad = true
!=partial('includes/third-party/comments/index', {}, {cache: true})
  • Butterfly: 4.8.5

2023-5-9 v.3.9.8 Themes: Fusion X

  • Optimized table design

  • Optimized CDN

  • Optimized card layout and shadows to reduce rendering pressure

  • Added more items to the Software

  • Added more items to the Websites , Website page now has some updates

  • Butterfly: 4.8.1


2023-4-25 v.3.9.7 Themes: Fusion X

  • Fixed: CSS Hover,Avtive have some problems on mobile devices

Solution:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
function addClassOnTouchStart(event) {
const targetElement = event.target;
targetElement.classList.add('active-effect');
}

function removeClassOnTouchEnd(event) {
const targetElement = event.target;
targetElement.classList.remove('active-effect');
targetElement.classList.add('hover-effect');
}

function removeClassOnTouchMove(event) {
const targetElement = event.target;
targetElement.classList.remove('active-effect');
targetElement.classList.remove('hover-effect');
}

document.addEventListener('touchstart', addClassOnTouchStart);
document.addEventListener('touchend', removeClassOnTouchEnd);
document.addEventListener('touchmove', removeClassOnTouchMove);
  • Layout improvement

  • Improved search experience on Mobile

  • Butterfly: 4.8.1


2023-4-19 v.3.9.6 Beta 1 Themes: Fusion X

  • Enable Umami Cloud Beta

  • Butterfly: 4.8.1


2023-4-17 v.3.9.6 Themes: Fusion X

  • Large-scale optimization of image CDN to comprehensively improve loading speed

  • Fixed and optimized some SEO issues

  • Optimized Summary AI

  • Butterfly: 4.8.1


2023-4-16 v.3.9.5 Themes: Fusion X

  • Introducing New Summary AI

  • Update to the Butterfly 4.8.1

  • Butterfly: 4.8.1


2023-3-20 v.3.9.4 Themes: Fusion X

  • Optimized the page turning design.

  • Butterfly: 4.7.0


2023-3-16 v.3.9.3 Themes: Fusion X

  • Introducing New Chat Block Feature

  • Butterfly: 4.7.0


2023-3-14 v.3.9.2.5 Themes: Fusion X

  • Optimized a large number of Code Blocks CSS code

  • Bug: CSS Hover,Avtive have some problems on mobile devices

  • Butterfly: 4.7.0


2023-3-11 v.3.9.2.3 Themes: Fusion X

  • Optimized Code Blocks file

  • Optimized Photo CDN file

  • Bug: CSS Hover,Avtive have some problems on mobile devices

  • Butterfly: 4.7.0


2023-2-28 v.3.9.2.2 Themes: Fusion X

  • QR Page is now support Dark Mode

  • Bug: CSS Hover,Avtive have some problems on mobile devices

  • Butterfly: 4.7.0


2023-2-27 v.3.9.2.1 Themes: Fusion X

  • Add QR Page

  • Bug: CSS Hover,Avtive have some problems on mobile devices

  • Butterfly: 4.7.0


2023-2-22 v.3.9.2 Themes: Fusion X

  • Optimized CSS file

  • Update to the Butterfly 4.7.0

  • Butterfly: 4.7.0


2023-1-26 v.3.9.1 Themes: Fusion X

  • Optimized CSS file

  • Optimized Mobile Navigation Bar, it’s flow now

  • Added more items to the Software

  • Update to the Butterfly 4.6.1

  • Butterfly: 4.6.1


2023-1-18 v.3.9.0 Beta1 Themes: Fusion X

  • Update to the Butterfly 4.6.0

  • Modified nav.pug ( from blog_name to blog-info ) to adapted Butterfly 4.6.0

  • Modified CSS ( from blog_name to blog-info ) to adapted Butterfly 4.6.0

1
2
3
#nav #blog-info {
/* z-index: 102; */
}

2022-12-11 v.3.8.9 Themes: Fusion X

  • Completely updated Sitemap Settings
1
npm install hexo-generator-sitemap --save
  • New Domain Online, provide Stable 24-hour Global Access Service

  • New Beta Mirror Site Now Available

  • New Beta FusionX User Guide Now Available

  • Butterfly: 4.5.1


2022-12-6 v.3.8.8.7 Themes: Fusion X

  • Optimized Server architecture, more stable connection
  • Optimized Photos CDN
  • Butterfly: 4.5.1

2022-12-3 v.3.8.8.6 Themes: Fusion X

  • Optimized CSS

  • Optimized Movie

  • Butterfly: 4.5.1


2022-11-27 v.3.8.8.5 Themes: Fusion X

  • Optimized CSS

  • Added more items to the  Web and Software

  • Butterfly: 4.5.1


2022-11-14 v.3.8.8.4 Themes: Fusion X

  • Fixed the picture CDN issue

  • Added more items to the  Web and Software

  • Butterfly: 4.5.1


2022-11-6 v.3.8.8.3 Themes: Fusion X

  • Update to the Butterfly 4.5.1

  • Butterfly: 4.5.1


2022-11-2 v.3.8.8.2 Themes: Fusion X

  • Optimized Font Experience underMicrosoft Windows

  • Butterfly: 4.5.0


2022-10-29 v.3.8.8.1 Themes: Fusion X

  • Fixed the picture cdn issue

  • Butterfly: 4.5.0


2022-10-26 v.3.8.8.0 Themes: Fusion X

  • Update to the Butterfly 4.5.0

  • Butterfly: 4.5.0


2022-10-17 v.3.8.7.3 Themes: Fusion X

  • Fixed the picture cdn issue

  • Butterfly: 4.4.0


2022-10-15 v.3.8.7.3 Themes: Fusion X

  • Now support 1500px Width

  • Butterfly: 4.4.0


2022-10-14 v.3.8.7.2 Themes: Fusion X

  • Fixed some layout problems

  • Butterfly: 4.4.0


2022-10-8 v.3.8.7.1 Themes: Fusion X

  • Fixed some SEO problems

  • Butterfly: 4.4.0


2022-10-6 v.3.8.7 Themes: Fusion X

  • Optimized the JS

  • FusionX User Guide Online

  • Butterfly: 4.4.0


2022-9-27 v.3.8.6.6 Themes: Fusion X

  • Fixed some compatibility problems

  • Butterfly: 4.4.0


2022-9-26 v.3.8.6.5 Themes: Fusion X

  • Fixed some details problems

  • Butterfly: 4.4.0


2022-9-22 v.3.8.6.4 Themes: Fusion X

  • Add Techs Page

  • Add Label Page

  • Add Navigation Bar Animation(might effect performance)

  • Butterfly: 4.4.0


2022-9-20 v.3.8.6.3 Themes: Fusion X

  • Optimized small screen smartphone Navigation Bar experience

  • Optimized the Server Performance

  • Butterfly: 4.4.0


2022-9-18 v.3.8.6.2 Themes: Fusion X

  • Optimized User Experience

  • Butterfly: 4.4.0


2022-9-12 v.3.8.6.1 Themes: Fusion X

  • Optimized the Color

  • Butterfly: 4.4.0


2022-9-12 v.3.8.6 Themes: Fusion X

  • Optimized the Navigation Bar

  • Butterfly: 4.4.0


2022-9-10 v.3.8.5 Themes: Fusion X

  • New Design, New Theme

  • Butterfly: 4.4.0


2022-9-9 v.3.8.3 Themes: Butterfly

  • In Memoriam Her Majesty Queen Elizabeth II 1926 - 2022

  • Global grey

  • Butterfly: 4.4.0


2022-9-6-22:42 v.3.8.3 Themes: Butterfly

  • Optimized the Navigation Bar

  • Fixed: All bugs from new Navigation Bar were fixed.

  • Butterfly: 4.4.0


2022-9-6-7:42 v.3.8.2 Themes: Butterfly

  • Optimized the Navigation Bar

  • Fixed: New Navigation Bar seems show some problems when the data theme is the DarkMode

  • Butterfly: 4.4.0


2022-9-5-23:53 v.3.8.0 Themes: Butterfly

  • Optimized the Navigation Bar

  • Fixed: New Navigation Bar seems show some problems at the top of the page

  • Bug: New Navigation Bar seems show some problems on Mobile( only on mobile version)

  • Bug: New Navigation Bar seems show some problems when the page has not top img

  • Butterfly: 4.4.0


2022-9-5 v.3.7.9 Themes: Butterfly

  • Add support for Safari Bookmark and iOS desktop icon

  • Optimized the Navigation Bar

  • Bug: New Navigation Bar seems show some problems at the top of the page

  • Butterfly: 4.4.0


2022-8-28 v.3.7.8 Themes: Butterfly

  • Disabled the PJAX

  • Disabled the Subtitle

  • Optimized the Post Cover

  • Butterfly: 4.4.0


2022-8-23 v.3.7.7.2 Themes: Butterfly

  • Optimized the CDN

  • Butterfly: 4.4.0


2022-8-21 v.3.7.7.1 Themes: Butterfly

  • Update to the Butterfly 4.4.0

  • Optimized the Subtitle

  • Butterfly: 4.4.0


2022-8-14 v.3.7.8 Themes: Butterfly

  • Use Pjax and Fix some Pjax Problems

Solution:

1
<script src="myjs.js" data-pjax="" defer=""></script>
  • Enable hexo-filter-nofollow to all external links for security, privacy and SEO

  • Addmyreloadjs.js

  • Optimized the STATISTICS

  • Optimized the ABOUT

  • Update the Echart to the latest version

  • Butterfly: 4.3.1


2022-8-6 v.3.7.7 Themes: Butterfly

  • Stop fancyBox v4 and enable medium-zoom 1.0.6

  • Optimized the Webinfo Widget

  • Optimized the Tag Widget

  • Optimized the CSS

  • Optimized the STATISTICS

  • Butterfly: 4.3.1


2022-8-1 v.3.7.6 Themes: Butterfly

  • Enable Hexo-clean-css and Hexo-html-minifier

  • Optimized the Abbrlink

  • Butterfly: 4.3.1


2022-7-24 v.3.7.5 Themes: Butterfly

  • Fixed: Mobile version in light mode, sliding has white edge

Solution:

1
2
3
4
5
6
7
8
9
10
@media screen and (max-width: 768px) {
#web_bg{
width: 200%;
height: 200%;
top: -50%;
left: -50%;
transform: rotate(-1deg);
-webkit-overflow-scrolling: touch
}
}
  • Butterfly: 4.3.1

2022-7-22 v.3.7.4 Themes: Butterfly

  • Use Abbrlink to generate Permalink

  • Fixed: Mobile version’s Charts in STATISTICS and ABOUT, Sliding continuous flashing (Solution: use enter_transitions: false in _config.butterfly.yml to prevent Repeat the refresh)

  • Bug: Mobile version in light mode, sliding has white edge

  • Butterfly: 4.3.1


2022-7-10 v.3.7.2 Themes: Butterfly

  • Article-container Optimization

  • Bug: Mobile version in light mode, sliding has white edge

  • Butterfly: 4.3.1


2022-7-9 v.3.7.1 Themes: Butterfly

  • Snackbar Optimization ,Idea From ZH Heo

  • CopyRight Part Optimization

  • Social-share-icon Optimization

  • Bug: Mobile version in light mode, sliding has white edge

  • Bug: Mobile version’s Charts in STATISTICS and ABOUT, Sliding continuous flashing

  • Next Step: CSS Optimization

  • Next Step: Fix Previous Bug

  • Next Step: CDN Optimization

  • Butterfly: 4.3.1


2022-6-30 v.3.7.0 Themes: Butterfly

  • Update to Butterfly 4.3.1

  • Add part of button click effect. Example:Games

  • Add Reminder popup beta in lower right corner

  • Bug: Mobile version in light mode, sliding has white edge

  • Bug: Mobile version’s Charts in STATISTICS and ABOUT, Sliding continuous flashing

  • Butterfly: 4.3.1


2022-6-3 v.3.6.8 Themes: Butterfly

  • Add NetCut, Editor.md, MC Classic, 3D Car to Web

  • Improve Games page

  • Bug: Mobile version in light mode, sliding has white edge

  • Bug: Mobile version’s Charts in STATISTICS and ABOUT, Sliding continuous flashing

  • Butterfly: 4.2.2


2022-5-29 v.3.6.7 Themes: Butterfly

  • Navigation bar improved

  • Optimize Privacy Policy

  • Bug: Mobile version in light mode, sliding has white edge

  • Bug: Mobile version’s Charts in STATISTICS and ABOUT, Sliding continuous flashing

  • Butterfly: 4.2.2


2022-5-23 v.3.6.5 Themes: Butterfly

  • Significantly improved all statistical areas

  • Butterfly: 4.2.2


2022-5-23 v.3.6.0 Themes: Butterfly

  • Optimized the home page Size

  • Butterfly: 4.2.2


2022-5-19 v.3.5.0 Themes: Butterfly

  • Optimized the home page

  • Butterfly: 4.2.1


2022-5-18 v.3.4.0 Themes: Butterfly

  • Optimized the home page

  • Butterfly: 4.2.0


2022-5-7 v.3.4.0 Themes: Butterfly

  • Update to Butterfly 4.2.0

  • Improve website page and app page

  • Improve footer

  • Butterfly: 4.2.0


2022-5-4 v.3.3.0 Themes: Butterfly

  • Contains a lot of optimizations, adaptations and enhancements

  • Add Headerlink

  • Add Game Page

  • Butterfly: 4.1.0


2022-4-29 v.3.2.0 Themes: Butterfly

  • The Tags and Archives interface has been redesigned to make the site look more modern

  • Further optimized the navigation bar on the mobile

  • Butterfly: 4.1.0


2022-4-28 v.3.1.0 Themes: Butterfly

  • Fixed navigation bar display error on mobile due to update 3.0.0

  • Further optimized the navigation bar on the mobile

  • Butterfly: 4.1.0


2022-4-27 v.3.0.0 Themes: Butterfly

This update focuses on optimizing a lot of details to improve the user experience

  • The article cover has been redesigned for both desktop and mobile devices

  • huge UI improvement and lots bugs be fixed

  • Adaptive 1430px width at the same time

  • Fully adapted to the mobile

  • Fully adapted Navigation bar in mobile mode

  • Butterfly: 4.1.0

2022-3-4 v.2.1.0

  • Add few more pages on taskbar( Include Movie Music Statistics Privacy Apps Web)

  • Butterfly: 4.1.0

2022-3-2 v.2.0.0

  • Navigation bar center

  • UI improvement and some bugs be fixed

  • Adaptive 1430px width

  • Bug: Dark mode button can’t save status

  • Butterfly: 4.1.0


2021-12-28 v.1.2.0 Themes: Butterfly

  • Add a lot of CSS to improve the site UI

  • Add some HEXO plug-in units improve site UI

  • Butterfly: 3.8.4


2021-12-27 v.1.1.0 Themes: Butterfly

  • Add inject CSS

  • Butterfly: 3.8.4


2021-12-26 v.1.0.0 Themes: Butterfly

  • Transfer Theme to butterfly

  • Butterfly: 3.8.4


2021-12-26 v.1.0.0 Themes: Butterfly

  • Start to use HEXO on Develop Board.

  • Service: NAT+ Nginx

  • Butterfly: 3.8.4