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

Lines changed: 7 additions & 1 deletion
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

Lines changed: 7 additions & 2 deletions
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

Lines changed: 4 additions & 3 deletions
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

Lines changed: 8 additions & 10 deletions
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

Lines changed: 14 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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: Υπάρχει διαθέσιμη μια νέα έκδοση του περιεχομένου.

0 commit comments

Comments
 (0)