mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-06-07 16:17:50 +00:00

## [7.3.0](https://github.com/cotes2020/jekyll-theme-chirpy/compare/v7.2.4...v7.3.0) (2025-05-18) ### Features * **i18n:** add Catalan Spanish locale translation ([#2349](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2349)) ([167c98c](167c98c781
)) * **i18n:** add Dutch locale ([#2076](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2076)) ([981ddba](981ddba30e
)) * **i18n:** add Japanese locale ([#2295](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2295)) ([571c90f](571c90f130
)) * **i18n:** add persian language ([#2238](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2238)) ([7d4d35c](7d4d35cd10
)) ### Bug Fixes * avoid `mathjax` loading failure on page refresh ([#2389](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2389)) ([401e2af](401e2af0f8
)) * improve accuracy of moving `img` element classes ([#2399](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2399)) ([d0f8f95](d0f8f9553e
)) * prevent the search bar from moving when focused ([#2336](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2336)) ([f744929](f7449299e8
)) * recognize global theme mode ([#2357](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2357)) ([7708adb](7708adbf30
)) * **search:** avoid missing spaces between paragraphs in search results ([#2199](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2199)) ([0eb7efa](0eb7efa7f5
)) * **ui:** fix incomplete border color on hover for tags ([#2359](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2359)) ([c626447](c62644759c
)) ### Improvements * **seo:** improve accessibility and aligns with best practices ([#2289](https://github.com/cotes2020/jekyll-theme-chirpy/issues/2289)) ([54d4d59](54d4d59d22
))
36 lines
1.4 KiB
Ruby
36 lines
1.4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = "jekyll-theme-chirpy"
|
|
spec.version = "7.3.0"
|
|
spec.authors = ["Cotes Chung"]
|
|
spec.email = ["cotes.chung@gmail.com"]
|
|
|
|
spec.summary = "A minimal, responsive, and feature-rich Jekyll theme for technical writing."
|
|
spec.homepage = "https://github.com/cotes2020/jekyll-theme-chirpy"
|
|
spec.license = "MIT"
|
|
|
|
spec.files = `git ls-files -z`.split("\x0").select { |f|
|
|
f.match(%r!^((_(includes|layouts|sass|(data\/(locales|origin)))|assets)\/|README|LICENSE)!i)
|
|
}
|
|
|
|
spec.metadata = {
|
|
"bug_tracker_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/issues",
|
|
"documentation_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/#readme",
|
|
"homepage_uri" => "https://cotes2020.github.io/chirpy-demo",
|
|
"source_code_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy",
|
|
"wiki_uri" => "https://github.com/cotes2020/jekyll-theme-chirpy/wiki",
|
|
"plugin_type" => "theme"
|
|
}
|
|
|
|
spec.required_ruby_version = "~> 3.1"
|
|
|
|
spec.add_runtime_dependency "jekyll", "~> 4.3"
|
|
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
|
|
spec.add_runtime_dependency "jekyll-seo-tag", "~> 2.8"
|
|
spec.add_runtime_dependency "jekyll-archives", "~> 2.2"
|
|
spec.add_runtime_dependency "jekyll-sitemap", "~> 1.4"
|
|
spec.add_runtime_dependency "jekyll-include-cache", "~> 0.2"
|
|
|
|
end
|