From a7c1f25c9c91d10402c64f03296f0b0028bdfc67 Mon Sep 17 00:00:00 2001 From: Benjamin Lee Date: Thu, 4 Nov 2021 19:53:06 -0400 Subject: [PATCH 01/16] Fix spacing for pagination dates --- layouts/partials/article-pagination.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layouts/partials/article-pagination.html b/layouts/partials/article-pagination.html index 622aaf4a..0dad34aa 100644 --- a/layouts/partials/article-pagination.html +++ b/layouts/partials/article-pagination.html @@ -9,7 +9,7 @@ {{ .NextInSection.Title | emojify }} - + {{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }} {{ partial "meta/date.html" . }} {{ end }} @@ -23,7 +23,7 @@ {{ .PrevInSection.Title | emojify }} - + {{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }} {{ partial "meta/date.html" . }} {{ end }} From 32640cac928c48b8ed86a27865db4c9b8273db3d Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Sat, 6 Nov 2021 13:05:29 +1100 Subject: [PATCH 02/16] =?UTF-8?q?=F0=9F=92=84=20Only=20output=20icon=20sty?= =?UTF-8?q?les=20if=20there=20is=20an=20icon?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ layouts/partials/icon.html | 10 +++++----- layouts/shortcodes/icon.html | 14 +++++++------- 3 files changed, 16 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f2d266c..54d08b61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +### Fixed + +- Minor style issues + ## [1.5.1] - 2021-11-04 ### Fixed diff --git a/layouts/partials/icon.html b/layouts/partials/icon.html index cde57b96..831697a1 100644 --- a/layouts/partials/icon.html +++ b/layouts/partials/icon.html @@ -1,6 +1,6 @@ - - {{ $icon := resources.Get (print "icons/" . ".svg") }} - {{ if $icon }} +{{ $icon := resources.Get (print "icons/" . ".svg") }} +{{ if $icon }} + {{ $icon.Content | safeHTML }} - {{ end }} - + +{{ end }} diff --git a/layouts/shortcodes/icon.html b/layouts/shortcodes/icon.html index 3afb45b5..1db633d0 100644 --- a/layouts/shortcodes/icon.html +++ b/layouts/shortcodes/icon.html @@ -1,8 +1,8 @@ - - {{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }} - {{ if $icon }} +{{ $icon := resources.Get (printf "icons/%s.svg" ($.Get 0)) }} +{{ if $icon }} + {{ $icon.Content | safeHTML }} - {{ else }} - {{ i18n "shortcode.icon_none" }} - {{ end }} - + +{{ else }} + {{ i18n "shortcode.icon_none" }} +{{ end }} From ca3581fca7e44e22962711bc5ffd82722a664da2 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Sat, 6 Nov 2021 14:38:33 +1100 Subject: [PATCH 03/16] =?UTF-8?q?=F0=9F=92=84=20Adjust=20leading=20on=20ar?= =?UTF-8?q?ticle=20pagination=20headings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- assets/css/compiled/main.css | 12 ++++++------ layouts/partials/article-pagination.html | 12 ++++++++---- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 45722f6d..11b74098 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1928,8 +1928,8 @@ body a, body button { margin-right: 0.75rem; } -.-mt-1 { - margin-top: -0.25rem; +.mt-\[0\.1rem\] { + margin-top: 0.1rem; } .ml-3 { @@ -2336,14 +2336,14 @@ body a, body button { line-height: 1.75rem; } -.leading-3 { - line-height: .75rem; -} - .leading-6 { line-height: 1.5rem; } +.leading-3 { + line-height: .75rem; +} + .text-neutral-400 { color: var(--color-neutral-400); } diff --git a/layouts/partials/article-pagination.html b/layouts/partials/article-pagination.html index 0dad34aa..40134165 100644 --- a/layouts/partials/article-pagination.html +++ b/layouts/partials/article-pagination.html @@ -8,8 +8,10 @@ - {{ .NextInSection.Title | emojify }} - + {{ .NextInSection.Title | emojify }} + {{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }} {{ partial "meta/date.html" . }} {{ end }} @@ -22,8 +24,10 @@ {{ if .PrevInSection }} - {{ .PrevInSection.Title | emojify }} - + {{ .PrevInSection.Title | emojify }} + {{ if .Params.showDate | default (.Site.Params.article.showDate | default true) }} {{ partial "meta/date.html" . }} {{ end }} From 690b40fe53a3acca5fedc2173f12e7eaedfa07dd Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Sat, 6 Nov 2021 14:49:55 +1100 Subject: [PATCH 04/16] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 54d08b61..3e80e4c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Fixed -- Minor style issues +- Article pagination link spacing ([#26](https://github.com/jpanther/congo/pull/26)) +- Minor icon style issues ## [1.5.1] - 2021-11-04 From a89f5c57e0c182d250603c0f760c9c0457a51c12 Mon Sep 17 00:00:00 2001 From: Max Alletsee Date: Sat, 6 Nov 2021 12:19:14 +0100 Subject: [PATCH 05/16] Added de i18n German localization --- i18n/de.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 i18n/de.yaml diff --git a/i18n/de.yaml b/i18n/de.yaml new file mode 100644 index 00000000..cfa1c14e --- /dev/null +++ b/i18n/de.yaml @@ -0,0 +1,37 @@ +article: + anchor_label: "Anker" + draft: "Entwurf" + edit_title: "Inhalt bearbeiten" + reading_time: + one: "{{ .Count }} min" + other: "{{ .Count }} min" + reading_time_title: "Lesezeit" + +author: + byline_title: "Autor" + +error: + 404_title: "Seite nicht gefunden :confused:" + 404_error: "Fehler 404" + 404_description: "Es sieht so aus, als ob es die Seite, die du suchst, nicht gibt." + +footer: + dark_appearance: "Zum dunklen Erscheinungsbild wechseln" + light_appearance: "Zum hellen Erscheinungsbild wechseln" + powered_by: "Erstellt mit {{ .Hugo }} & {{ .Congo }}" + +list: + externalurl_title: "Link zu einer externen Seite" + no_articles: "Es gibt noch keine Artikel, die man hier auflisten könnte." + +sharing: + email: "Per E-Mail teilen" + facebook: "Auf Facebook teilen" + linkedin: "Auf LinkedIn teilen" + pinterest: "Auf Pinterest pinnen" + reddit: "An Reddit senden" + twitter: "Auf Twitter tweeten" + +shortcode: + recent_articles: "Kürzlich" + icon_none: "Icon nicht gefunden." From 28d9c34d114541c0244f81a9209793930b5d2694 Mon Sep 17 00:00:00 2001 From: Max Alletsee Date: Sat, 6 Nov 2021 13:09:17 +0100 Subject: [PATCH 06/16] de.yaml: small tweaks --- i18n/de.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/i18n/de.yaml b/i18n/de.yaml index cfa1c14e..7cdc20e3 100644 --- a/i18n/de.yaml +++ b/i18n/de.yaml @@ -13,7 +13,7 @@ author: error: 404_title: "Seite nicht gefunden :confused:" 404_error: "Fehler 404" - 404_description: "Es sieht so aus, als ob es die Seite, die du suchst, nicht gibt." + 404_description: "Es sieht so aus, als ob es diese Seite nicht gibt." footer: dark_appearance: "Zum dunklen Erscheinungsbild wechseln" @@ -22,7 +22,7 @@ footer: list: externalurl_title: "Link zu einer externen Seite" - no_articles: "Es gibt noch keine Artikel, die man hier auflisten könnte." + no_articles: "Es gibt hier noch keine Beiträge." sharing: email: "Per E-Mail teilen" @@ -30,7 +30,7 @@ sharing: linkedin: "Auf LinkedIn teilen" pinterest: "Auf Pinterest pinnen" reddit: "An Reddit senden" - twitter: "Auf Twitter tweeten" + twitter: "Auf Twitter teilen" shortcode: recent_articles: "Kürzlich" From dae564acca688b55bb2ec60c2974cbc4b64557f4 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Mon, 8 Nov 2021 08:49:54 +1100 Subject: [PATCH 07/16] =?UTF-8?q?=F0=9F=91=B7=20Stop=20GitHub=20test=20bui?= =?UTF-8?q?lds=20on=20PRs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 825c766d..67bdacbf 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -1,6 +1,6 @@ name: Test Build -on: [push, pull_request] +on: [push] jobs: build: From cd968074c94747014af6f0b0cf721e2b49c2f906 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Mon, 8 Nov 2021 10:26:12 +1100 Subject: [PATCH 08/16] =?UTF-8?q?=F0=9F=91=B7=20Add=20commit=20message=20c?= =?UTF-8?q?hecker?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/commit-msg.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/commit-msg.yml diff --git a/.github/workflows/commit-msg.yml b/.github/workflows/commit-msg.yml new file mode 100644 index 00000000..6b02f868 --- /dev/null +++ b/.github/workflows/commit-msg.yml @@ -0,0 +1,24 @@ +name: Check Commit Messages +on: + pull_request: + types: + - opened + - edited + - reopened + - synchronize + +jobs: + check-commit-message: + name: Check Commit Messages + runs-on: ubuntu-latest + steps: + - name: Check Gitmoji + uses: gsactions/commit-message-checker@v1 + with: + pattern: ^[\u0020-\u007e\u00a0-\u00ff\u0152\u0153\u0178]+' + flags: "g" + error: "Commit messages must start with a Gitmoji character." + excludeDescription: "true" + excludeTitle: "true" + checkAllCommitMessages: "true" + accessToken: ${{ secrets.GITHUB_TOKEN }} From f0aae643922ba57a18cc10166f2aa695363a33fb Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Mon, 8 Nov 2021 10:34:36 +1100 Subject: [PATCH 09/16] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e80e4c4..1e01ae8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +### Added + +- German translation ([#27](https://github.com/jpanther/congo/pull/27)) + ### Fixed - Article pagination link spacing ([#26](https://github.com/jpanther/congo/pull/26)) From b3386a065adeeca2bc3f597ffce7fd336723ffed Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Tue, 9 Nov 2021 11:00:15 +1100 Subject: [PATCH 10/16] =?UTF-8?q?=F0=9F=94=A7=20Add=20pull=20request=20tem?= =?UTF-8?q?plate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/pull_request_template.md | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..95dc0ada --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,2 @@ + + From 18ba7d88eb6be80e98194584183caf830240c526 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rio=20Victor=20Ribeiro=20Silva?= Date: Tue, 9 Nov 2021 10:43:45 -0300 Subject: [PATCH 11/16] =?UTF-8?q?=F0=9F=8C=90=20Add=20pt-BR=20translation?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- i18n/pt-BR.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 i18n/pt-BR.yaml diff --git a/i18n/pt-BR.yaml b/i18n/pt-BR.yaml new file mode 100644 index 00000000..6e5b7d2f --- /dev/null +++ b/i18n/pt-BR.yaml @@ -0,0 +1,37 @@ +article: + anchor_label: "Anchor" + draft: "Draft" + edit_title: "Editar Conteúdo" + reading_time: + one: "{{ .Count }} minuto" + other: "{{ .Count }} minutos" + reading_time_title: "Tempo de leitura" + +author: + byline_title: "Autor" + +error: + 404_title: "Página não econtrada :confused:" + 404_error: "Erro 404" + 404_description: "Aparentemente a página requisitada não existe." + +footer: + dark_appearance: "Mudar para modo escuro" + light_appearance: "Mudar para modo claro" + powered_by: "Movido por {{ .Hugo }} & {{ .Congo }}" + +list: + externalurl_title: "Link para site externo" + no_articles: "Não tem artigos para lista aqui ainda." + +sharing: + email: "Enviar por email" + facebook: "Compartilhar pelo Facebook" + linkedin: "Compartilhar pelo LinkedIn" + pinterest: "Pin no Pinterest" + reddit: "Postar no Reddit" + twitter: "Tweet no Twitter" + +shortcode: + recent_articles: "Recente" + icon_none: "Ícone não encontrado." From a4e2008b177929fe5be4645900f94af09c0ea9a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iy=C3=A1n=20M=C3=A9ndez=20Veiga?= Date: Wed, 10 Nov 2021 02:21:14 +0100 Subject: [PATCH 12/16] =?UTF-8?q?=F0=9F=8C=90=20Add=20es=20i18n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- i18n/es.yaml | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 i18n/es.yaml diff --git a/i18n/es.yaml b/i18n/es.yaml new file mode 100644 index 00000000..4a7df79b --- /dev/null +++ b/i18n/es.yaml @@ -0,0 +1,37 @@ +article: + anchor_label: "Ancla" + draft: "Borrador" + edit_title: "Editar contenido" + reading_time: + one: "{{ .Count }} min" + other: "{{ .Count }} mins" + reading_time_title: "Tiempo de lectura" + +author: + byline_title: "Autor" + +error: + 404_title: "Página no encontrada :confused:" + 404_error: "Error 404" + 404_description: "Parece que la página que solicitaste no existe." + +footer: + dark_appearance: "Cambiar a modo oscuro" + light_appearance: "Cambiar a modo claro" + powered_by: "Desarrollada con {{ .Hugo }} & {{ .Congo }}" + +list: + externalurl_title: "Link a página externa" + no_articles: "Aún no hay artículos para listar aquí." + +sharing: + email: "Enviar vía email" + facebook: "Compartir en Facebook" + linkedin: "Compartir en LinkedIn" + pinterest: "Pinear en Pinterest" + reddit: "Publicar en Reddit" + twitter: "Tuitear en Twitter" + +shortcode: + recent_articles: "Reciente" + icon_none: "Icono no encontrado." From 898609ff8e50c45e5b5aa63cb451d18fa39fe42c Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 10 Nov 2021 11:22:48 +1100 Subject: [PATCH 13/16] =?UTF-8?q?=F0=9F=91=B7=20Update=20GitHub=20workflow?= =?UTF-8?q?=20names?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/commit-msg.yml | 4 ++-- .github/workflows/gh-pages.yml | 1 + .github/workflows/label.yml | 1 + .github/workflows/test-build.yml | 1 + 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/commit-msg.yml b/.github/workflows/commit-msg.yml index 6b02f868..dca46910 100644 --- a/.github/workflows/commit-msg.yml +++ b/.github/workflows/commit-msg.yml @@ -1,4 +1,4 @@ -name: Check Commit Messages +name: Commit Messages on: pull_request: types: @@ -9,7 +9,7 @@ on: jobs: check-commit-message: - name: Check Commit Messages + name: Check runs-on: ubuntu-latest steps: - name: Check Gitmoji diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 0bb10323..bc42ddcb 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -7,6 +7,7 @@ on: jobs: build-deploy: + name: Build and Deploy runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/label.yml b/.github/workflows/label.yml index 21ec6d56..2506d7f9 100644 --- a/.github/workflows/label.yml +++ b/.github/workflows/label.yml @@ -4,6 +4,7 @@ on: [pull_request_target] jobs: label: + name: Label runs-on: ubuntu-latest permissions: contents: read diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index 67bdacbf..0cb59ca5 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -4,6 +4,7 @@ on: [push] jobs: build: + name: Build Example Site runs-on: ubuntu-20.04 concurrency: group: ${{ github.workflow }}-${{ github.ref }} From 9380b7d87200575125572f05af882dda657ae3b1 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 10 Nov 2021 12:35:22 +1100 Subject: [PATCH 14/16] =?UTF-8?q?=F0=9F=91=B7=20Delete=20commit=20message?= =?UTF-8?q?=20check?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/commit-msg.yml | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 .github/workflows/commit-msg.yml diff --git a/.github/workflows/commit-msg.yml b/.github/workflows/commit-msg.yml deleted file mode 100644 index dca46910..00000000 --- a/.github/workflows/commit-msg.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Commit Messages -on: - pull_request: - types: - - opened - - edited - - reopened - - synchronize - -jobs: - check-commit-message: - name: Check - runs-on: ubuntu-latest - steps: - - name: Check Gitmoji - uses: gsactions/commit-message-checker@v1 - with: - pattern: ^[\u0020-\u007e\u00a0-\u00ff\u0152\u0153\u0178]+' - flags: "g" - error: "Commit messages must start with a Gitmoji character." - excludeDescription: "true" - excludeTitle: "true" - checkAllCommitMessages: "true" - accessToken: ${{ secrets.GITHUB_TOKEN }} From 51d94b9afad487f15eda6bffa5c30b3bb4290dbf Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 10 Nov 2021 12:44:38 +1100 Subject: [PATCH 15/16] =?UTF-8?q?=F0=9F=93=9D=20Update=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e01ae8e..6c3b5100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Added - German translation ([#27](https://github.com/jpanther/congo/pull/27)) +- Brazilian Portuguese translation ([#28](https://github.com/jpanther/congo/pull/28)) +- Spanish translation ([#30](https://github.com/jpanther/congo/pull/30)) ### Fixed From 82740f8beabc54824057ceb85c4b11b30c479083 Mon Sep 17 00:00:00 2001 From: James Panther <4462786+jpanther@users.noreply.github.com> Date: Wed, 10 Nov 2021 12:56:39 +1100 Subject: [PATCH 16/16] =?UTF-8?q?=F0=9F=94=A8=20Preparing=20release=20v1.5?= =?UTF-8?q?.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 5 ++++- assets/css/compiled/main.css | 2 +- assets/css/main.css | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c3b5100..a2f38118 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] +## [1.5.2] - 2021-11-10 + ### Added - German translation ([#27](https://github.com/jpanther/congo/pull/27)) @@ -168,7 +170,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/v1.5.1...HEAD +[unreleased]: https://github.com/jpanther/Congo/compare/v1.5.2...HEAD +[1.5.2]: https://github.com/jpanther/Congo/compare/v1.5.1...v1.5.2 [1.5.1]: https://github.com/jpanther/Congo/compare/v1.5.0...v1.5.1 [1.5.0]: https://github.com/jpanther/Congo/compare/v1.4.0...v1.5.0 [1.4.0]: https://github.com/jpanther/Congo/compare/v1.3.0...v1.4.0 diff --git a/assets/css/compiled/main.css b/assets/css/compiled/main.css index 11b74098..081c87dc 100644 --- a/assets/css/compiled/main.css +++ b/assets/css/compiled/main.css @@ -1,4 +1,4 @@ -/*! Congo v1.5.1 | MIT License | https://github.com/jpanther/congo */ +/*! Congo v1.5.2 | MIT License | https://github.com/jpanther/congo */ /*! tailwindcss v2.2.19 | MIT License | https://tailwindcss.com */ diff --git a/assets/css/main.css b/assets/css/main.css index d15a90e0..f6f8b5d4 100644 --- a/assets/css/main.css +++ b/assets/css/main.css @@ -1,4 +1,4 @@ -/*! Congo v1.5.1 | MIT License | https://github.com/jpanther/congo */ +/*! Congo v1.5.2 | MIT License | https://github.com/jpanther/congo */ @tailwind base; @tailwind components; diff --git a/package.json b/package.json index 71bc3332..680feb5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hugo-congo-theme", - "version": "1.5.1", + "version": "1.5.2", "description": "Congo theme for Hugo", "main": "index.js", "scripts": {