Skip to content

Commit 82b085e

Browse files
author
Daniele Catanesi
committed
Theme upgrade
1 parent ef1e4fd commit 82b085e

48 files changed

Lines changed: 359 additions & 348 deletions

Some content is hidden

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

.editorconfig

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = false
11+
12+
[*.md]
13+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
assets/fonts/* linguist-vendored
2+
assets/js/main.min.js linguist-vendored
3+
assets/js/lunr/* linguist-vendored
4+
assets/js/plugins/* linguist-vendored
5+
assets/js/vendor/* linguist-vendored
6+
_sass/minimal-mistakes/vendor/* linguist-vendored

.gitignore

Lines changed: 28 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
.vscode/*
1+
# Vim
2+
*~
3+
*.sw[p_]
4+
5+
# Sublime Text
6+
*.sublime-project
7+
*.sublime-workspace
8+
9+
# Ruby Gem
10+
*.gem
11+
.bundle
12+
Gemfile.lock
13+
**/vendor/bundle
14+
15+
# Node.js and NPM
16+
node_modules
17+
npm-debug.log*
18+
package-lock.json
19+
codekit-config.json
20+
21+
# macOS
222
.DS_Store
3-
*/.DS_Store
4-
**/.DS_Store
23+
24+
# Jekyll generated files
25+
.jekyll-cache
26+
.jekyll-metadata
27+
.sass-cache
28+
_asset_bundler_cache
29+
_site

.travis.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
language: ruby
2+
cache: bundler
3+
gemfile: docs/Gemfile
4+
script:
5+
- bundle exec jekyll algolia --source docs --destination docs/_site --config docs/_config.yml
6+
branches:
7+
only:
8+
# Change this to gh-pages if you're deploying using the gh-pages branch
9+
- master
10+
rvm:
11+
- 2.4

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"python.pythonPath": "C:\\Users\\Lethe\\AppData\\Local\\Programs\\Python\\Python38\\python.exe",
3+
"powershell.codeFormatting.addWhitespaceAroundPipe": true
4+
}

CHANGELOG.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,48 @@
1+
## [4.20.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.2)
2+
3+
### Bug Fixes
4+
5+
- Fix broken link in documentation. [#2677](https://github.com/mmistakes/minimal-mistakes/issues/2677)
6+
- Fix typo in documentation. [#2678](https://github.com/mmistakes/minimal-mistakes/issues/2678)
7+
- Remove duplicate CSS definitions. [#2666](https://github.com/mmistakes/minimal-mistakes/pull/2666)
8+
- Fix `entries_layout: grid` in various layouts. [#2639](https://github.com/mmistakes/minimal-mistakes/issues/2639)
9+
- Change `fa` to `fas` for Font Awesome 5. [#2649](https://github.com/mmistakes/minimal-mistakes/pull/2649)
10+
11+
### Enhancements
12+
13+
- Refactor page meta include. [#2641](https://github.com/mmistakes/minimal-mistakes/pull/2641)
14+
- Add `article:author` Open Graph markup. [#2670](https://github.com/mmistakes/minimal-mistakes/pull/2670)
15+
16+
## [4.20.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.1)
17+
18+
### Bug Fixes
19+
20+
- Fix `entries_layout: grid` in `home.html` layout. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
21+
22+
## [4.20.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.20.0)
23+
24+
### Bug Fixes
25+
26+
- Add `relative_url` filter to author home link [#2575](https://github.com/mmistakes/minimal-mistakes/pull/2575)
27+
- Fix `analytics.provider` config comment to list all analytics providers. [#2607](https://github.com/mmistakes/minimal-mistakes/pull/2607)
28+
- Fix typo in installation documentation. [#2570](https://github.com/mmistakes/minimal-mistakes/pull/2570)
29+
- Fix broken Lunr search with Jekyll v4.1.0. [#2617](https://github.com/mmistakes/minimal-mistakes/pull/2617)
30+
31+
### Enhancements
32+
33+
- Add an optional date alongside the reading time. To enable set `show_date: true` similar to how reading time is. [#2526](https://github.com/mmistakes/minimal-mistakes/pull/2526)
34+
- Remove hidden posts from posts.html layout. [#2625](https://github.com/mmistakes/minimal-mistakes/pull/2625)
35+
- Add entry layout configuration for `list` (default) or `grid` views on `layout: home`. [#2616](https://github.com/mmistakes/minimal-mistakes/pull/2616)
36+
- Add missing Chinese translations. [#2576](https://github.com/mmistakes/minimal-mistakes/pull/2576)
37+
- Improve Chinese translations. [#2626](https://github.com/mmistakes/minimal-mistakes/pull/2626)
38+
- Add `line-height` to `h4` element in notice helper. [#2602](https://github.com/mmistakes/minimal-mistakes/pull/2602)
39+
- Improve Algolia search. [#2572](https://github.com/mmistakes/minimal-mistakes/pull/2572)
40+
- Update link to wtfpl license in README. [#2571](https://github.com/mmistakes/minimal-mistakes/pull/2571)
41+
- Ignore teaser headline in table of contents when including posts list in another page. [#2558](https://github.com/mmistakes/minimal-mistakes/pull/2558)
42+
- Replace Font Awesome Kits with CSS from jsDelivr CDN. [#2583](https://github.com/mmistakes/minimal-mistakes/pull/2583)
43+
- Add `danmaku` option to Bilibili video provider and add corresponding documentation/ [#2599](https://github.com/mmistakes/minimal-mistakes/pull/2599)
44+
- Update documentation about loading l10n data file from the theme-gem. [#2621](https://github.com/mmistakes/minimal-mistakes/issues/2621) [#2624](https://github.com/mmistakes/minimal-mistakes/pull/2624)
45+
146
## [4.19.3](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.19.3)
247

348
### Enhancements

0 commit comments

Comments
 (0)