Update

UPDATE

2024-12-9 v.4.0.0.0.1 Themes: FusionX šŸŒø

2024-11-22 v.4.0.0.0.0 Beta3 Themes: FusionX šŸŒø

  • Optimising the display of lazyload in posts

Main.js:

1
2
3
4
5
6
7
8
const lazyloadImg = () => {
const isPostPage = window.location.pathname.includes('/posts/');
window.lazyLoadInstance = new LazyLoad({
elements_selector: 'img',
threshold: isPostPage ? 300 : 0,
data_src: 'lazy-src'
})
}

2024-11-9 v.4.0.0.0.0 Beta2 Themes: FusionX šŸŒø

  • Fixed hexo-htmlnano-mini issues, more info: Github

  • Fix the problem of displaying the navigation bar in the new version

2024-11-8 v.4.0.0.0.0 Beta1 Themes: FusionX šŸŒø

  • We will not update Butterfly theme anymore as there are too many breaking changes. The last version we used as the base of butterfly is 4.13.0. šŸ”’

  • FusionX(This theme) got 100 points on lighthouse Accessibility, Best Practices and SEO testing! Hereā€™s our current perfect scores: Accessibility: 100, Best Practices: 100, SEO: 100. (Homepage)

  • Updated Hexo from 6.1.0 to 7.3.0. There may have potential problems

  • Navigation bar parent currently supports both links and no links

1
2
3
4
#page-header.not-top-img #nav .site-page.group > span {}
#menus>div.menus_items>div>span {}
#page-header.nav-fixed #nav #toggle-menu, #page-header.nav-fixed #nav span {}
#menus>div.menus_items>div>span {}
1
2
3
4
5
6
7
8
9
10
11
12
if parentLink
a.site-page.group(href=url_for(parentLink), class=isHidden)
if parentIcon
i.fa-fw(class=parentIcon)
span=' '+parentLabel
i.fas.fa-chevron-down
else
span.site-page.group(class=isHidden)
if parentIcon
i.fa-fw(class=parentIcon)
span=' '+parentLabel
i.fas.fa-chevron-down
  • Due to high severity vulnerabilities in hexo-html-minifier, made a new plugin based on htmlnano: hexo-htmlnano-mini. šŸ”’
1
2
3
4
5
6
7
8
9
10
11
htmlnano:
enable: true # Main switch
enableInDev: false # Whether to enable compression in the development server (hexo s)
exclude:
#- '**/mycss.css'
collapseWhitespace: conservative # Compress whitespace conservatively
removeComments: safe # Safely remove comments
removeEmptyAttributes: true # Remove empty attributes
minifyCss: true # Enable inline CSS minification
minifyJs: true # Enable inline JavaScript minification

  • Optimised page flip button ,partial reference to Heo:
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
#pagination a.extend.next,
#pagination a.extend.prev {
display: flex;
}
#pagination a.extend.next .pagination_tips_next {
margin-left: -36px;
transition: .3s ease-out 0s;
opacity: 0;
font-weight: 600;
font-size: 16px;

}

#pagination a.extend.next:hover .pagination_tips_next {
margin-left: 2px;
opacity: 1;
white-space: nowrap
}

#pagination a.extend.prev .pagination_tips_prev {
margin-right: -36px;
transition: .3s ease-out 0s;
opacity: 0;
font-weight: 600;
font-size: 16px;
}

#pagination a.extend.prev:hover .pagination_tips_prev {
margin-right: 2px;
opacity: 1;
white-space: nowrap
}
@media screen and (max-width: 768px){
#pagination a.extend.next .pagination_tips_next {
margin-left: 2px;
font-size:0
}
#pagination a.extend.prev .pagination_tips_prev {
margin-right: 2px;
font-size:0
}
}

2024-10-10 v.3.9.9.9.9 Themes: FusionX

  • Themeconfig.yml now support adding corresponding links to the parent level to avoids SEO issues. The specific modified file is menu_item.pug. Our SEO section reached 100 in Google PageSpeed ā€‹ā€‹Insights for the first time.šŸ„³
1
2
3
4
5
Article[/article]:
Keywords: /tags/ || fa-fw fas fa-tags
Posts: /archives/ || fas fa-folder-tree
Stats: /analysis/ || fa-fw fas fa-cube
Sitemaps: /sitemap/ || fas fa-map

2024-10-9 v.3.9.9.9.8 Themes: FusionX

  • Add h2.global_footer_heading CloseX Footer to footer.pug

  • Fixed Low-contrast text in card view

  • Removed script to prevent site mirroring to avoid possible SEO issues

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
(() => {
const validDomain = 'closex.org';
const redirectUrl = 'https://blog.closex.org';
const { hostname } = location;

// Determine whether it is a local development environment
const isLocalHost = hostname === 'localhost' || hostname === '127.0.0.1';

// Determine whether redirection is required
if (!sessionStorage.getItem('siteRedirected') && !isLocalHost && !hostname.endsWith(validDomain)) {
sessionStorage.setItem('siteRedirected', 'true'); // Mark that redirection of the entire website has occurred
location.replace(redirectUrl); // Execute redirection
}
})();

2024-8-30 v.3.9.9.9.7 Themes: FusionX

  • Fixed several SEO problems

  • Fixed the issue of missing h1 on the homepage when top_img == false

layout/includes/header/index.pug

1
2
3
4
5
6
7
8
9
10
11
12
if top_img !== false
- var imgSource = top_img && isImgOrUrl(top_img) ? `background-image: url('${url_for(top_img)}')` : `background: ${top_img}`
- var bg_img = top_img ? imgSource : ''
- var site_title = page.title || page.tag || page.category || config.title
- var isHomeClass = is_home() ? 'full_page' : 'not-home-page'
- is_post() ? isHomeClass = 'post-bg' : isHomeClass
else
- var isHomeClass = 'not-top-img'
if is_home() // Start
- var site_title = config.title
- var hideHomeTitleClass = 'hidden-home-title' // End

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
header#page-header(class=`${isHomeClass+isFixedClass}` style=bg_img)
!=partial('includes/header/nav', {}, {cache: true})
if top_img !== false
if is_post()
include ./post-info.pug
else if is_home()
#site-info
h1#site-title=site_title
if theme.subtitle.enable
- var loadSubJs = true
#site-subtitle
span#subtitle
if(theme.social)
#site_social_icons
!=partial('includes/header/social', {}, {cache: true})
#scroll-down
i.fas.fa-angle-down.scroll-down-effects
else
#page-site-info
h1#site-title=site_title
else // Start
if is_home()
#page-site-info
h1#site-title(class=hideHomeTitleClass)= site_title // End

/source/css/_layout/head.styl

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#site-title
margin: 0
color: var(--white)
font-size: 1.85em

+minWidth768()
font-size: 2.85em

&.hidden-home-title // Start
position: absolute
clip: rect(1px, 1px, 1px, 1px)
-webkit-clip-path: inset(0px 0px 99.9% 99.9%)
clip-path: inset(0px 0px 99.9% 99.9%)
overflow: hidden
height: 1px
width: 1px
padding: 0
border: 0 // End

2024-8-22 v.3.9.9.9.6.4 Themes: FusionX

  • Solving layout problems

2024-7-31 v.3.9.9.9.6.3 Themes: FusionX

  • Fix margin issues on sitemap and share pages

  • Added new utilities to the Web page

2024-6-19 v.3.9.9.9.6.2 Themes: FusionX

  • Using Twikoo 1.6.34, but compatible with 1.6.36

  • Comprehensively enhance the user experience of the commenting system, rewrite the UI, and greatly reduce the clutter.

Due to the conflict of Twikooā€™s comment folding, it cannot be solved. Here is the optional css, we still recommend using Twikoo 1.6.34 to avoid height problems and more.

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
.tk-expand {
position: relative;
left: 50%;
bottom: 0px;
text-align: center;
transform: translate(-50%);
padding: 8px 120px !important;
width: fit-content !important;
line-height: 1.6;
height: 40px;
}

.tk-content {
margin-top: 7px!important;
font-size: 17px;
max-height: 515px !important;
padding: 10px;
word-break: normal;
border-radius: 15px;
font-weight: 500
}
.tk-content-expand {
max-height: none !important;
}

2024-5-28 v.3.9.9.9.6.1 Themes: FusionX

  • Using Twikoo 1.6.34 to prevent height problem

2024-5-28 v.3.9.9.9.6 Themes: FusionX

  • Optimize Twikoo comment system UI
  • Update Twikoo comment system to version 1.6.35
  • Add site_data, info section to mobile sidebar
  • Optimize homepage fonts and mobile homepage display

Removed the height limit for individual comments in Twikoo 1.6.35

1
2
3
.tk-replies.tk-replies-expand .tk-expand-wrap {
display:none
}

2024-5-16 v.3.9.9.9.5 Themes: FusionX

  • Optimize navigation bar user interface while enhancing search engine optimization (removed javascript:void(0);)

2024-4-11 v.3.9.9.9.4 Themes: FusionX

  • Redesigned Comment UI

2024-4-4 v.3.9.9.9.3 Themes: FusionX

  • 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: FusionX

  • Optimized the Copyright component inside article page

2024-3-27 v.3.9.9.9.1 Themes: FusionX

  • Optimized text layout

  • We are now Syncing on Zeen

2024-3-24 v.3.9.9.9 Themes: FusionX

  • 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: FusionX

2024-3-10 v.3.9.9.7.4 Themes: FusionX

  • Updated ā€œAbout Usā€ page

  • Butterfly: 4.12.0

2024-1-27 v.3.9.9.7.4 Themes: FusionX

  • Detailed Optimization

  • Butterfly: 4.12.0

2024-1-27 v.3.9.9.7.3 Themes: FusionX

2024-1-19 v.3.9.9.7.2 Themes: FusionX

  • We are now Syncing on Medium

  • Butterfly: 4.12.0

2024-1-17 v.3.9.9.7.1 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

  • Add a Blog area to the Websites

  • Butterfly: 4.10.0

2023-10-30 v.3.9.9.4.5 Themes: FusionX


2023-10-9 v.3.9.9.4.4 Beta 1 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • Added more items to the Websites

  • Butterfly: 4.9.0


2023-9-10 v.3.9.9.4.3 Beta 9 Themes: FusionX

  • Optimized Themecolor

  • Butterfly: 4.9.0


2023-8-27 v.3.9.9.4.3 Beta 8 Themes: FusionX

  • Fixed the code block issue

  • Butterfly: 4.9.0


2023-7-24 v.3.9.9.4.3 Beta 7 Themes: FusionX

  • Updated RSS function

  • Butterfly: 4.9.0


2023-7-24 v.3.9.9.4.3 Beta 6 Themes: FusionX

  • Optimized the home page animation(fixed)

  • Butterfly: 4.9.0


2023-7-19 v.3.9.9.4.3 Beta 5 Themes: FusionX

  • Performance Optimization and Bug Fixes

  • Butterfly: 4.9.0


2023-7-12 v.3.9.9.4.3 Beta 4 Themes: FusionX

  • 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: FusionX

  • Introducing our new Domain: CloseX.org

  • Butterfly: 4.9.0


2023-7-6 v.3.9.9.4.3 Beta 2 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • Welcome to visit our newly designed website Sitemap.

  • Butterfly: 4.9.0


2023-7-2 v.3.9.9.4.1 Themes: FusionX

  • Fixed some SEO and Accessibility problems

  • Butterfly: 4.9.0


2023-6-28 v.3.9.9.4 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

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: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

  • Enable Umami Cloud Beta

  • Butterfly: 4.8.1


2023-4-17 v.3.9.6 Themes: FusionX

  • 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: FusionX

  • Introducing New Summary AI

  • Update to the Butterfly 4.8.1

  • Butterfly: 4.8.1


2023-3-20 v.3.9.4 Themes: FusionX

  • Optimized the page turning design.

  • Butterfly: 4.7.0


2023-3-16 v.3.9.3 Themes: FusionX

  • Introducing New Chat Block Feature

  • Butterfly: 4.7.0


2023-3-14 v.3.9.2.5 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

  • Optimized CSS file

  • Update to the Butterfly 4.7.0

  • Butterfly: 4.7.0


2023-1-26 v.3.9.1 Themes: FusionX

  • 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: FusionX

  • 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: FusionX

  • 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: FusionX

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

2022-12-3 v.3.8.8.6 Themes: FusionX

  • Optimized CSS

  • Optimized Movie

  • Butterfly: 4.5.1


2022-11-27 v.3.8.8.5 Themes: FusionX

  • Optimized CSS

  • Added more items to theĀ  Web andĀ Software

  • Butterfly: 4.5.1


2022-11-14 v.3.8.8.4 Themes: FusionX

  • 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: FusionX

  • Update to the Butterfly 4.5.1

  • Butterfly: 4.5.1


2022-11-2 v.3.8.8.2 Themes: FusionX

  • Optimized Font Experience underMicrosoft Windows

  • Butterfly: 4.5.0


2022-10-29 v.3.8.8.1 Themes: FusionX

  • Fixed the picture cdn issue

  • Butterfly: 4.5.0


2022-10-26 v.3.8.8.0 Themes: FusionX

  • Update to the Butterfly 4.5.0

  • Butterfly: 4.5.0


2022-10-17 v.3.8.7.3 Themes: FusionX

  • Fixed the picture cdn issue

  • Butterfly: 4.4.0


2022-10-15 v.3.8.7.3 Themes: FusionX

  • Now support 1500px Width

  • Butterfly: 4.4.0


2022-10-14 v.3.8.7.2 Themes: FusionX

  • Fixed some layout problems

  • Butterfly: 4.4.0


2022-10-8 v.3.8.7.1 Themes: FusionX

  • Fixed some SEO problems

  • Butterfly: 4.4.0


2022-10-6 v.3.8.7 Themes: FusionX

  • Optimized the JS

  • FusionX User GuideĀ Online

  • Butterfly: 4.4.0


2022-9-27 v.3.8.6.6 Themes: FusionX

  • Fixed some compatibility problems

  • Butterfly: 4.4.0


2022-9-26 v.3.8.6.5 Themes: FusionX

  • Fixed some details problems

  • Butterfly: 4.4.0


2022-9-22 v.3.8.6.4 Themes: FusionX

  • 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: FusionX

  • Optimized small screen smartphone Navigation Bar experience

  • Optimized the Server Performance

  • Butterfly: 4.4.0


2022-9-18 v.3.8.6.2 Themes: FusionX

  • Optimized User Experience

  • Butterfly: 4.4.0


2022-9-12 v.3.8.6.1 Themes: FusionX

  • Optimized the Color

  • Butterfly: 4.4.0


2022-9-12 v.3.8.6 Themes: FusionX

  • Optimized the Navigation Bar

  • Butterfly: 4.4.0


2022-9-10 v.3.8.5 Themes: FusionX

  • 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