Skip to content

Commit

Permalink
🔖 Release v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jpanther committed May 25, 2022
2 parents 9569c24 + 965dc70 commit 1416c72
Show file tree
Hide file tree
Showing 12 changed files with 2,351 additions and 18,884 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [2.2.1] - 2022-05-25

### Changed

- Upgrade to Mermaid v9.1.1 ([#194](https://github.com/jpanther/congo/pull/194))
- Upgrade to Fuse.js v6.6.2 ([#195](https://github.com/jpanther/congo/pull/195))
- Upgrade KaTeX to v0.15.6 ([#202](https://github.com/jpanther/congo/pull/202))

### Fixed

- Main content area doesn't grow to window height ([#201](https://github.com/jpanther/congo/issues/201))

## [2.2.0] - 2022-05-09

### Added
Expand Down Expand Up @@ -421,7 +433,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- Advanced customisation using simple Tailwind colour definitions and styles
- Fully documented

[unreleased]: https://github.com/jpanther/congo/compare/v2.2.0...HEAD
[unreleased]: https://github.com/jpanther/congo/compare/v2.2.1...HEAD
[2.2.1]: https://github.com/jpanther/congo/compare/v2.2.0...v2.2.1
[2.2.0]: https://github.com/jpanther/congo/compare/v2.1.3...v2.2.0
[2.1.3]: https://github.com/jpanther/congo/compare/v2.1.2...v2.1.3
[2.1.2]: https://github.com/jpanther/congo/compare/v2.1.1...v2.1.2
Expand Down
2 changes: 1 addition & 1 deletion assets/css/compiled/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Congo v2.2.0 | MIT License | https://github.com/jpanther/congo */
/*! Congo v2.2.1 | MIT License | https://github.com/jpanther/congo */

/*! tailwindcss v3.0.24 | MIT License | https://tailwindcss.com */

Expand Down
2 changes: 1 addition & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/*! Congo v2.2.0 | MIT License | https://github.com/jpanther/congo */
/*! Congo v2.2.1 | MIT License | https://github.com/jpanther/congo */

@tailwind base;
@tailwind components;
Expand Down
4 changes: 2 additions & 2 deletions assets/lib/fuse/fuse.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/lib/katex/katex.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/lib/katex/katex.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion assets/lib/mermaid/mermaid.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion exampleSite/content/docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Before creating any content, there are a few things you should set for a new ins
```toml
# config/_default/config.toml

baseURL = "https://your_domain.com"
baseURL = "https://your_domain.com/"
languageCode = "en"
```

Expand Down
3 changes: 2 additions & 1 deletion exampleSite/content/users.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ Real websites that are built with Congo.
| ---------------------------------------------------------------------- | ---------------------------- |
| [jamespanther.com](https://jamespanther.com) | Personal site - Theme author |
| [srisco.dev](https://srisco.dev) | Personal site |
| [theophile-roos.fr](https://theophile-roos.fr) | Personal site |
| [antoinesoetewey.com](https://antoinesoetewey.com/) | Personal site |
| [leif.io](https://leif.io/) | Personal site and Tech blog |
| [dr460nf1r3.org](https://dr460nf1r3.org/) | Personal site and Blog |
Expand All @@ -29,5 +28,7 @@ Real websites that are built with Congo.
| [jeremic.ca](https://jeremic.ca) | Personal site and Blog |
| [rohn.tech](https://rohn.tech) | Personal site |
| [klimafreundlicher-kochen.de](https://www.klimafreundlicher-kochen.de) | Food blog (in German) |
| [seyslee.github.io](https://seyslee.github.io) | Tech blog (in Korean) |
| [datanalyze.be/](https://datanalyze.be/) | Professional site |

**Congo user?** To add your site to this list, [submit a pull request](https://github.com/jpanther/congo/blob/dev/exampleSite/content/users.md).
4 changes: 2 additions & 2 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
>
</div>
{{- partial "header.html" . -}}
<div class="relative">
<div class="relative flex flex-col grow">
<main id="main-content" class="grow">
{{- block "main" . }}{{- end }}
{{ if and (.Site.Params.showScrollToTop | default true) (gt .WordCount 200) }}
Expand All @@ -44,10 +44,10 @@
</div>
{{ end }}
</main>
{{- partial "footer.html" . -}}
{{ if .Site.Params.enableSearch | default false }}
{{- partial "search.html" . -}}
{{ end }}
{{- partial "footer.html" . -}}
</div>
</body>
</html>
Loading

0 comments on commit 1416c72

Please sign in to comment.