Skip to content

Commit 512601a

Browse files
Merge pull request #42 from joshjohanning/chirpy-v7.1.0
updating to chirpy v7.1.0
2 parents 555dad3 + 47c853a commit 512601a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+335
-229
lines changed

.gitignore

+7-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ package-lock.json
1717

1818
# IDE configurations
1919
.idea
20-
.vscode
20+
.vscode/*
21+
!.vscode/settings.json
22+
!.vscode/extensions.json
23+
!.vscode/tasks.json
24+
25+
# Misc
26+
_app
2127

2228
# Link Checker
2329
link-checker.json

Gemfile

+7-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ source "https://rubygems.org"
44

55
gemspec
66

7-
group :test do
8-
gem "html-proofer", "~> 5.0"
7+
gem "html-proofer", "~> 5.0", group: :test
8+
9+
platforms :mingw, :x64_mingw, :mswin, :jruby do
10+
gem "tzinfo", ">= 1", "< 3"
11+
gem "tzinfo-data"
912
end
13+
14+
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Chirpy:
5656

5757
## Upgrading the Theme
5858

59-
Since we aren't using the theme gem (so we can do customizations), we have to do it the old-fashioned way:
59+
Since we aren't using the theme gem (so we can do customizations), we have to do it the old-fashioned way:
6060

6161
1. Ensure chirpy is set as a remote: `git remote add chirpy https://github.com/cotes2020/jekyll-theme-chirpy.git`
6262
2. Ensure you have the latest upstream commit: `git fetch chirpy`
@@ -69,16 +69,17 @@ Since we aren't using the theme gem (so we can do customizations), we have to do
6969
- If getting GPG errors, modify the local git config: `git config commit.gpgsign false`, but modify it back to `true` after you are done cherry-picking and rebasing (before amending commit)
7070
5. Review merge conflicts - use a combination of `git cherry-pick --skip` (for when readme/starter posts are updated) and `cherry-pick --continue` (to continue after you resolve real merge conflicts)
7171
6. Starting in Chirpy v5.6.0, run: `npm run build && git add assets/js/dist _sass/dist -f && git commit -m "update js assets"` ([docs](https://github.com/cotes2020/jekyll-theme-chirpy/wiki/Upgrade-Guide#upgrade-the-fork))
72+
- You can also run a command that's referenced in the `init.sh` to remove this from `.gitignore`: `sed -i '' "/.*\/dist$/d" .gitignore`
7273
7. Rebase the number of commits you just brought in (you should see icon in VS Code): `git rebase -i HEAD~16`
7374
- Leave the top commit as `pick` but change the rest to `squash`
7475
- Update the commit message as appropriate
7576
8. Pay close attention to the terminal output as to which new files are being created and if they should be deleted (new files show up as `create mode 100644 file.ext`)
7677
- For example, we wouldn't want to commit a GitHub workflow or issue template that wasn't needed here
7778
- If there are new files that we don't want to track, delete the files, commit, and run another rebase `git rebase -i HEAD~2`
7879
- This command can help with tracking new files in the most recent commit: `git diff-tree --compact-summary -r HEAD --diff-filter=A`
79-
9. Ensure commit signing is enabled: `git config commit.gpgsign true`
80+
9. Ensure commit signing is enabled: `git config commit.gpgsign true`
8081
10. Update author and commit time: `git commit --amend --author "Josh Johanning <[email protected]>" --date=now -S`
81-
11. [Test changes locally before pushing](#building--testing-locally)
82+
11. [Test changes locally before pushing](#building--testing-locally)
8283

8384
## Building / Testing Locally
8485

_config.yml

+8-10
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@ analytics:
7070
domain: # fill in your Matomo domain
7171
cloudflare:
7272
id: # fill in your Cloudflare Web Analytics token
73+
fathom:
74+
id: # fill in your Fathom Site ID
7375

74-
# Pageviews settings
76+
# Page views settings
7577
pageviews:
7678
provider: # now only supports 'goatcounter'
7779

@@ -83,8 +85,8 @@ pageviews:
8385
#
8486
# Available options:
8587
#
86-
# light - Use the light color scheme
87-
# dark - Use the dark color scheme
88+
# light Use the light color scheme
89+
# dark Use the dark color scheme
8890
#
8991
theme_mode: # [light | dark]
9092

@@ -106,7 +108,7 @@ social_preview_image: # string, local or CORS resources
106108
toc: true
107109

108110
comments:
109-
# Global switch for the post comment system. Keeping it empty means disabled.
111+
# Global switch for the post-comment system. Keeping it empty means disabled.
110112
provider: utterances # [disqus | utterances | giscus]
111113
# The provider options are as follows:
112114
disqus:
@@ -136,9 +138,9 @@ assets:
136138
env: # [development | production]
137139

138140
pwa:
139-
enabled: true # the option for PWA feature (installable)
141+
enabled: true # The option for PWA feature (installable)
140142
cache:
141-
enabled: false # the option for PWA offline cache
143+
enabled: true # The option for PWA offline cache
142144
# Paths defined here will be excluded from the PWA cache.
143145
# Usually its value is the `baseurl` of another website that
144146
# shares the same domain name as the current website.
@@ -190,10 +192,6 @@ defaults:
190192
values:
191193
layout: page
192194
permalink: /:title/
193-
- scope:
194-
path: assets/js/dist
195-
values:
196-
swcache: true
197195

198196
sass:
199197
style: compressed

_data/contact.yml

+14-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,17 @@
2424
url: "https://www.linkedin.com/in/joshua-johanning/" # Fill with your Linkedin homepage
2525
#
2626
# - type: stack-overflow
27-
# icon: "fab fa-stack-overflow"
28-
# url: "" # Fill with your stackoverflow homepage
27+
# icon: 'fab fa-stack-overflow'
28+
# url: '' # Fill with your stackoverflow homepage
29+
#
30+
# - type: bluesky
31+
# icon: 'fa-brands fa-bluesky'
32+
# url: '' # Fill with your Bluesky profile link
33+
#
34+
# - type: reddit
35+
# icon: 'fa-brands fa-reddit'
36+
# url: '' # Fill with your Reddit profile link
37+
#
38+
# - type: threads
39+
# icon: 'fa-brands fa-threads'
40+
# url: '' # Fill with your Threads profile link

_data/locales/ar.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: باستخدام :PLATFORM السمة :THEME
4444

4545
not_found:
46-
statment: عذرا, الرابط التالي غير صالح أو انه يشير إلى صفحة غير موجودة.
46+
statement: عذرا, الرابط التالي غير صالح أو انه يشير إلى صفحة غير موجودة.
4747

4848
notification:
4949
update_found: يتوفر اصدار جديد للمحتوى.

_data/locales/bg-BG.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Създадено чрез :PLATFORM и :THEME тема
4444

4545
not_found:
46-
statment: Съжалявам, но на този URL адрес няма налично съдържание.
46+
statement: Съжалявам, но на този URL адрес няма налично съдържание.
4747

4848
notification:
4949
update_found: Налична е нова версия на съдържанието.

_data/locales/cs-CZ.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Použití :PLATFORM s motivem :THEME
4444

4545
not_found:
46-
statment: Omlouváme se, adresu URL jsme špatně umístili nebo odkazuje na něco, co neexistuje.
46+
statement: Omlouváme se, adresu URL jsme špatně umístili nebo odkazuje na něco, co neexistuje.
4747

4848
notification:
4949
update_found: Je k dispozici nová verze obsahu.

_data/locales/de-DE.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: Powered by :PLATFORM with :THEME theme
4343

4444
not_found:
45-
statment: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource.
45+
statement: Entschuldigung, dieser Link verweist auf keine vorhandene Ressource.
4646

4747
notification:
4848
update_found: Eine neue Version ist verfügbar.
@@ -76,7 +76,7 @@ df:
7676
post:
7777
strftime: "%d.%m.%Y"
7878
dayjs: "DD.MM.YYYY"
79-
79+
8080
# categories page
8181
categories:
8282
category_measure:

_data/locales/el-GR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Αξιοποιώντας την :PLATFORM theme :THEME
4444

4545
not_found:
46-
statment: Συγνώμη, έχουμε τοποθετήσει λάθος αυτήν την διεύθυνση URL ή υποδεικνύει κάτι που δεν υπάρχει.
46+
statement: Συγνώμη, έχουμε τοποθετήσει λάθος αυτήν την διεύθυνση URL ή υποδεικνύει κάτι που δεν υπάρχει.
4747

4848
notification:
4949
update_found: Υπάρχει διαθέσιμη μια νέα έκδοση του περιεχομένου.

_data/locales/en.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Using the :THEME theme for :PLATFORM.
4444

4545
not_found:
46-
statment: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
46+
statement: Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
4747

4848
notification:
4949
update_found: A new version of content is available.

_data/locales/es-ES.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Hecho con :PLATFORM usando el tema :THEME
4444

4545
not_found:
46-
statment: Lo sentimos, hemos perdido esa URL o apunta a algo que no existe.
46+
statement: Lo sentimos, hemos perdido esa URL o apunta a algo que no existe.
4747

4848
notification:
4949
update_found: Hay una nueva versión de contenido disponible.

_data/locales/fi-FI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: Käytetään :PLATFORM iä Teema :THEME
4343

4444
not_found:
45-
statment: Valitettavasti tällä URL-osoitteella ei ole saatavilla sisältöä.
45+
statement: Valitettavasti tällä URL-osoitteella ei ole saatavilla sisältöä.
4646

4747
notification:
4848
update_found: Uusi versio sisällöstä on saatavilla.

_data/locales/fr-FR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Propulsé par :PLATFORM avec le thème :THEME
4444

4545
not_found:
46-
statment: Désolé, nous avons égaré cette URL ou elle pointe vers quelque chose qui n'existe pas.
46+
statement: Désolé, nous avons égaré cette URL ou elle pointe vers quelque chose qui n'existe pas.
4747

4848
notification:
4949
update_found: Une nouvelle version du contenu est disponible.

_data/locales/hu-HU.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ copyright:
4545
meta: Készítve :PLATFORM motorral :THEME témával
4646

4747
not_found:
48-
statment: Sajnáljuk, az URL-t rosszul helyeztük el, vagy valami nem létezőre mutat.
48+
statement: Sajnáljuk, az URL-t rosszul helyeztük el, vagy valami nem létezőre mutat.
4949

5050
notification:
5151
update_found: Elérhető a tartalom új verziója.

_data/locales/id-ID.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Didukung oleh :PLATFORM dengan tema :THEME
4444

4545
not_found:
46-
statment: Maaf, kami gagal menemukan URL itu atau memang mengarah ke sesuatu yang tidak ada.
46+
statement: Maaf, kami gagal menemukan URL itu atau memang mengarah ke sesuatu yang tidak ada.
4747

4848
notification:
4949
update_found: Versi konten baru tersedia.

_data/locales/it-IT.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
4343
meta: Servizio offerto da :PLATFORM con tema :THEME
4444
not_found:
45-
statment: Ci scusiamo, non è stato possibile trovare l'URL in questione. Potrebbe puntare ad una pagina non esistente.
45+
statement: Ci scusiamo, non è stato possibile trovare l'URL in questione. Potrebbe puntare ad una pagina non esistente.
4646

4747
notification:
4848
update_found: Nuova versione del contenuto disponibile.

_data/locales/ko-KR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Powered by :PLATFORM with :THEME theme
4444

4545
not_found:
46-
statment: 해당 URL은 존재하지 않습니다.
46+
statement: 해당 URL은 존재하지 않습니다.
4747

4848
notification:
4949
update_found: 새 버전의 콘텐츠를 사용할 수 있습니다.

_data/locales/my-MM.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Powered by :PLATFORM with :THEME theme
4444

4545
not_found:
46-
statment: ဝမ်းနည်းပါသည်၊ ကျွန်ုပ်တို့သည် အဆိုပါ URL ကို မှားယွင်းစွာ နေရာချထားခြင်း သို့မဟုတ် ၎င်းသည် မရှိသောအရာကို ညွှန်ပြနေပါသည်။
46+
statement: ဝမ်းနည်းပါသည်၊ ကျွန်ုပ်တို့သည် အဆိုပါ URL ကို မှားယွင်းစွာ နေရာချထားခြင်း သို့မဟုတ် ၎င်းသည် မရှိသောအရာကို ညွှန်ပြနေပါသည်။
4747

4848
notification:
4949
update_found: အကြောင်းအရာဗားရှင်းအသစ်ကို ရနိုင်ပါပြီ။

_data/locales/pt-BR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Feito com :PLATFORM usando o tema :THEME
4444

4545
not_found:
46-
statment: Desculpe, a página não foi encontrada.
46+
statement: Desculpe, a página não foi encontrada.
4747

4848
notification:
4949
update_found: Uma nova versão do conteúdo está disponível.

_data/locales/ru-RU.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: Использует тему :THEME для :PLATFORM
4343

4444
not_found:
45-
statment: Извините, мы перепутали URL-адрес или он указывает на что-то несуществующее.
45+
statement: Извините, мы перепутали URL-адрес или он указывает на что-то несуществующее.
4646

4747
notification:
4848
update_found: Доступна новая версия контента.
@@ -76,7 +76,7 @@ df:
7676
post:
7777
strftime: "%d.%m.%Y"
7878
dayjs: "DD.MM.YYYY"
79-
79+
8080
# categories page
8181
categories:
8282
category_measure:

_data/locales/sl-SI.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Uporabljena :PLATFORM tema :THEME #Using the :PLATFORM theme :THEME
4444

4545
not_found:
46-
statment: Oprostite, hiperpovezava je neustrezna ali vsebina ne obstajata. #Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
46+
statement: Oprostite, hiperpovezava je neustrezna ali vsebina ne obstajata. #Sorry, we've misplaced that URL or it's pointing to something that doesn't exist.
4747

4848
notification:
4949
update_found: Novejša različica vsebine je na voljo. #A new version of content is available.

_data/locales/sv-SE.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Byggd med :PLATFORM och temat :THEME
4444

4545
not_found:
46-
statment: Ursäkta, vi har tappat bort den här webbadressen eller så pekar den på något som inte längre finns.
46+
statement: Ursäkta, vi har tappat bort den här webbadressen eller så pekar den på något som inte längre finns.
4747

4848
notification:
4949
update_found: Det finns en ny version av innehållet.

_data/locales/th.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: กำลังใช้ธีมของ :PLATFORM ชื่อ :THEME
4444

4545
not_found:
46-
statment: ขออภัย เราวาง URL นั้นไว้ผิดที่ หรือมันชี้ไปยังสิ่งที่ไม่มีอยู่
46+
statement: ขออภัย เราวาง URL นั้นไว้ผิดที่ หรือมันชี้ไปยังสิ่งที่ไม่มีอยู่
4747

4848
notification:
4949
update_found: มีเวอร์ชันใหม่ของเนื้อหา

_data/locales/tr-TR.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: :PLATFORM ve :THEME teması
4444

4545
not_found:
46-
statment: Üzgünüz, bu linki yanlış yerleştirdik veya var olmayan bir şeye işaret ediyor.
46+
statement: Üzgünüz, bu linki yanlış yerleştirdik veya var olmayan bir şeye işaret ediyor.
4747

4848
notification:
4949
update_found: İçeriğin yeni bir sürümü mevcut.

_data/locales/uk-UA.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ copyright:
4343
meta: Powered by :PLATFORM with :THEME theme
4444

4545
not_found:
46-
statment: Вибачте, це посилання вказує на ресурс, що не існує.
46+
statement: Вибачте, це посилання вказує на ресурс, що не існує.
4747

4848
notification:
4949
update_found: Доступна нова версія вмісту.

_data/locales/vi-VN.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: Trang web này được tạo bởi :PLATFORM với chủ đề :THEME
4343

4444
not_found:
45-
statment: Xin lỗi, chúng tôi đã đặt nhầm URL hoặc đường dẫn trỏ đến một trang nào đó không tồn tại.
45+
statement: Xin lỗi, chúng tôi đã đặt nhầm URL hoặc đường dẫn trỏ đến một trang nào đó không tồn tại.
4646

4747
notification:
4848
update_found: Đã có phiên bản mới của nội dung.

_data/locales/zh-CN.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: 本站采用 :PLATFORM 主题 :THEME
4343

4444
not_found:
45-
statment: 抱歉,我们放错了该 URL,或者它指向了不存在的内容。
45+
statement: 抱歉,我们放错了该 URL,或者它指向了不存在的内容。
4646

4747
notification:
4848
update_found: 发现新版本的内容。

_data/locales/zh-TW.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ copyright:
4242
meta: 本網站使用 :PLATFORM 產生,採用 :THEME 主題
4343

4444
not_found:
45-
statment: 抱歉,您可能正在存取一個已被移動的 URL,或者它從未存在。
45+
statement: 抱歉,您可能正在存取一個已被移動的 URL,或者它從未存在。
4646

4747
notification:
4848
update_found: 發現新版本更新。

_data/origin/basic.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ mermaid:
2020
dayjs:
2121
js:
2222
common: /assets/lib/dayjs/dayjs.min.js
23-
locale: /assets/lib/dayjs/locale/en.min.js
24-
relativeTime: /assets/lib/dayjs/plugin/relativeTime.min.js
25-
localizedFormat: /assets/lib/dayjs/plugin/localizedFormat.min.js
23+
locale: /assets/lib/dayjs/locale/en.js
24+
relativeTime: /assets/lib/dayjs/plugin/relativeTime.js
25+
localizedFormat: /assets/lib/dayjs/plugin/localizedFormat.js
2626

2727
glightbox:
2828
css: /assets/lib/glightbox/glightbox.min.css

0 commit comments

Comments
 (0)