Skip to content

Commit

Permalink
v1.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
byanko55 committed Feb 12, 2024
1 parent acdabe7 commit c53849e
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ gem "jekyll-sitemap", "~> 1.3"
gem "jekyll-seo-tag", "~> 2.6"
gem "kramdown-parser-gfm", "~> 1.1.0"
gem "webrick", "~> 1.7.0"
gem 'jekyll-loading-lazy'
gem 'jekyll-loading-lazy', "~> 0.1.1"

# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
# and associated library.
Expand Down
2 changes: 1 addition & 1 deletion _sass/pagination.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

p {
margin:0;
padding:1rem 0 0 1.5rem;
padding:1rem 0 1rem 1.5rem;
line-height:150%;
font-weight:bold;
color:slategrey;
Expand Down
2 changes: 1 addition & 1 deletion assets/css/highlight.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions assets/js/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ document.addEventListener('DOMContentLoaded', function(){
localStorage.setItem('theme', 'default');
// Disable highlighter dark color theme
Array.from(innerContent.querySelectorAll('pre')).forEach(function (codeblock){
codeblock.classList.add('pre-light');
codeblock.classList.remove('pre-dark');
});
changeGiscusTheme('light');
Expand All @@ -115,7 +114,6 @@ document.addEventListener('DOMContentLoaded', function(){
// Disable highlighter default color theme
Array.from(innerContent.querySelectorAll('pre')).forEach(function (codeblock){
codeblock.classList.add('pre-dark');
codeblock.classList.remove('pre-light');
});
changeGiscusTheme('noborder_gray');
isDarkMode = true;
Expand Down
6 changes: 0 additions & 6 deletions assets/js/post.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,12 +128,6 @@ document.addEventListener('DOMContentLoaded', function(){
codeblock.classList.add('pre-dark');
});
}
else {
// Disable highlighter dark color theme
Array.from(innerContent.querySelectorAll('pre')).forEach(function (codeblock){
codeblock.classList.add('pre-light');
});
}
});

window.addEventListener('load', function(){
Expand Down
3 changes: 2 additions & 1 deletion jekyll-theme-satellite.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "jekyll-theme-satellite"
spec.version = "1.1.2"
spec.version = "1.2.4"
spec.authors = ["Yankos"]
spec.email = ["byanko55@gmail.com"]

Expand All @@ -21,4 +21,5 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "jekyll-feed", "~> 0.12"
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.3"
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.6"
spec.add_runtime_dependency "jekyll-loading-lazy", "~> 0.1.1"
end

0 comments on commit c53849e

Please sign in to comment.