jekyll-calculus-theme 0.3.0 → 0.3.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +59 -0
- data/_config.example.yml +75 -0
- data/_includes/inline.scss +1 -1
- data/_sass/_main.scss +1 -3
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 03abad96a2b6511814322653af2581004d4c1546afca3a3bb8d8c1b524d3d038
|
|
4
|
+
data.tar.gz: 0554f9f8c281ff7b3fc2ac8234117ccd105325767b7bfa72234350cf614fcaa1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db605308e3ebdb1fefb619c722a68be4582b8b48e9c3a404f46f175ef20ac033f6f619423466b174d5b0bb290b2cb814068cdf371dc0a7be94c943db148d64ed
|
|
7
|
+
data.tar.gz: f6c523d9b42803013fc1738311f387b6679cdf5033e6d340e56c8135abf75709dbed9164351e055a4b206218b0c477b4c3b738bae44dcd6710dcff6f0f69eecb
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.3.0] - 2025-12-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- Jekyll SEO Tag plugin integration for better SEO
|
|
12
|
+
- Jekyll Feed plugin for RSS/Atom feeds
|
|
13
|
+
- Jekyll Sitemap plugin for automatic sitemap generation
|
|
14
|
+
- GitHub Actions CI workflow for automated testing across Ruby versions
|
|
15
|
+
- Dependabot configuration for automated dependency updates
|
|
16
|
+
- Example `_config.yml` file with comprehensive settings
|
|
17
|
+
- Modern metadata URIs in gemspec (bug tracker, changelog, documentation, etc.)
|
|
18
|
+
- Support for Ruby 3.0+ testing in CI
|
|
19
|
+
- Enhanced README with features list and detailed usage instructions
|
|
20
|
+
- CONTRIBUTING.md with contribution guidelines
|
|
21
|
+
- CODE_OF_CONDUCT.md following Contributor Covenant 2.1
|
|
22
|
+
- SECURITY.md with security policy and vulnerability reporting
|
|
23
|
+
- Rakefile with common development tasks
|
|
24
|
+
- .ruby-version file specifying Ruby 3.3.0
|
|
25
|
+
- GitHub issue templates (bug report and feature request)
|
|
26
|
+
- Pull request template for consistent PR submissions
|
|
27
|
+
- Required Ruby version constraint (>= 3.0.0) in gemspec
|
|
28
|
+
|
|
29
|
+
### Changed
|
|
30
|
+
- Upgraded Jekyll dependency from ~> 4.2 to ~> 4.3
|
|
31
|
+
- Updated webrick dependency from ~> 1.7 to ~> 1.8
|
|
32
|
+
- Upgraded Font Awesome from 4.7.0 to 6.5.1
|
|
33
|
+
- Modernized `head.html` with jekyll-seo-tag and feed_meta
|
|
34
|
+
- Added X-UA-Compatible meta tag for better IE support
|
|
35
|
+
- Improved security with integrity checks and CORS policies for external resources
|
|
36
|
+
- Version bumped to 0.3.0
|
|
37
|
+
- Enhanced .gitignore with more comprehensive exclusions
|
|
38
|
+
- Updated gemspec file patterns to include CHANGELOG and example config
|
|
39
|
+
- Reverted to @import syntax for inline SCSS compilation compatibility
|
|
40
|
+
- Used pre-calculated color values instead of Sass functions for better compatibility
|
|
41
|
+
- Added logger gem dependency for Ruby 3.5+ compatibility
|
|
42
|
+
|
|
43
|
+
### Improved
|
|
44
|
+
- Better SEO optimization out of the box
|
|
45
|
+
- Enhanced security with SRI (Subresource Integrity) checks
|
|
46
|
+
- More comprehensive documentation
|
|
47
|
+
- Better development workflow with CI/CD
|
|
48
|
+
- Automated dependency management with Dependabot
|
|
49
|
+
- Better community contribution experience
|
|
50
|
+
- More robust testing across multiple Ruby versions
|
|
51
|
+
|
|
52
|
+
## [0.2.1] - Previous Release
|
|
53
|
+
|
|
54
|
+
### Initial Features
|
|
55
|
+
- Minimalistic design for personal blogs
|
|
56
|
+
- Malayalam font support (Gayathri)
|
|
57
|
+
- Dark mode support
|
|
58
|
+
- Responsive design
|
|
59
|
+
- Multiple layout options
|
data/_config.example.yml
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
# Example _config.yml for jekyll-calculus-theme
|
|
2
|
+
# Copy this to your Jekyll site and customize
|
|
3
|
+
|
|
4
|
+
title: Your Blog Title
|
|
5
|
+
description: Your blog description
|
|
6
|
+
author: Your Name
|
|
7
|
+
email: your.email@example.com
|
|
8
|
+
url: https://yourdomain.com
|
|
9
|
+
baseurl: "" # subpath of your site, e.g. /blog
|
|
10
|
+
|
|
11
|
+
# Build settings
|
|
12
|
+
theme: jekyll-calculus-theme
|
|
13
|
+
markdown: kramdown
|
|
14
|
+
highlighter: rouge
|
|
15
|
+
|
|
16
|
+
# Plugins
|
|
17
|
+
plugins:
|
|
18
|
+
- jekyll-feed
|
|
19
|
+
- jekyll-seo-tag
|
|
20
|
+
- jekyll-sitemap
|
|
21
|
+
|
|
22
|
+
# Theme settings
|
|
23
|
+
show_excerpts: true
|
|
24
|
+
|
|
25
|
+
# Pagination (optional)
|
|
26
|
+
# paginate: 10
|
|
27
|
+
# paginate_path: "/page:num/"
|
|
28
|
+
|
|
29
|
+
# Exclude from processing
|
|
30
|
+
exclude:
|
|
31
|
+
- Gemfile
|
|
32
|
+
- Gemfile.lock
|
|
33
|
+
- node_modules
|
|
34
|
+
- vendor/bundle/
|
|
35
|
+
- vendor/cache/
|
|
36
|
+
- vendor/gems/
|
|
37
|
+
- vendor/ruby/
|
|
38
|
+
- .sass-cache/
|
|
39
|
+
- .jekyll-cache/
|
|
40
|
+
- gemfiles/
|
|
41
|
+
|
|
42
|
+
# Collections (optional)
|
|
43
|
+
# collections:
|
|
44
|
+
# posts:
|
|
45
|
+
# output: true
|
|
46
|
+
# permalink: /:year/:month/:day/:title/
|
|
47
|
+
|
|
48
|
+
# Defaults
|
|
49
|
+
defaults:
|
|
50
|
+
- scope:
|
|
51
|
+
path: ""
|
|
52
|
+
type: "posts"
|
|
53
|
+
values:
|
|
54
|
+
layout: "post"
|
|
55
|
+
comments: true
|
|
56
|
+
- scope:
|
|
57
|
+
path: ""
|
|
58
|
+
type: "pages"
|
|
59
|
+
values:
|
|
60
|
+
layout: "page"
|
|
61
|
+
|
|
62
|
+
# Social links (optional)
|
|
63
|
+
# github_username: yourusername
|
|
64
|
+
# twitter_username: yourusername
|
|
65
|
+
|
|
66
|
+
# SEO settings
|
|
67
|
+
twitter:
|
|
68
|
+
username: yourusername
|
|
69
|
+
card: summary
|
|
70
|
+
|
|
71
|
+
social:
|
|
72
|
+
name: Your Name
|
|
73
|
+
links:
|
|
74
|
+
- https://twitter.com/yourusername
|
|
75
|
+
- https://github.com/yourusername
|
data/_includes/inline.scss
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
@
|
|
1
|
+
@import "main";
|
data/_sass/_main.scss
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-calculus-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jain Basil Aliyas
|
|
@@ -113,9 +113,11 @@ executables: []
|
|
|
113
113
|
extensions: []
|
|
114
114
|
extra_rdoc_files: []
|
|
115
115
|
files:
|
|
116
|
+
- CHANGELOG.md
|
|
116
117
|
- LICENSE
|
|
117
118
|
- LICENSE.txt
|
|
118
119
|
- README.md
|
|
120
|
+
- _config.example.yml
|
|
119
121
|
- _includes/anchor_headings.html
|
|
120
122
|
- _includes/head.html
|
|
121
123
|
- _includes/inline.scss
|