Merge pull request #571 from nunocoracao/dev

🔖 release v2.30.0
This commit is contained in:
Nuno Coração 2023-03-05 22:41:56 +00:00 committed by GitHub
commit 80159c6974
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 3254 additions and 5034 deletions

File diff suppressed because it is too large Load diff

View file

@ -2,4 +2,4 @@
[module.hugoVersion] [module.hugoVersion]
extended = true extended = true
min = "0.87.0 " min = "0.87.0 "
max = "0.111.1" max = "0.111.2"

View file

@ -63,13 +63,14 @@ Real websites that are built with Blowfish.
| [nick.bouwhuis.net](https://nick.bouwhuis.net) | Personal site | | [nick.bouwhuis.net](https://nick.bouwhuis.net) | Personal site |
| [vividscc.com](https://vividscc.com/) | Business site | | [vividscc.com](https://vividscc.com/) | Business site |
| [muhalvin.github.io](https://muhalvin.github.io/) | Personal site | | [muhalvin.github.io](https://muhalvin.github.io/) | Personal site |
| [mariuskimmina.com](https://mariuskimmina.com/) | Personal Site | | [mariuskimmina.com](https://mariuskimmina.com/) | Personal site |
| [ashwinbalaji.xyz](https://ashwinbalaji.xyz/) | Personal Site | | [ashwinbalaji.xyz](https://ashwinbalaji.xyz/) | Personal site |
| [technicat.com](https://technicat.com/) | Company Site | | [technicat.com](https://technicat.com/) | Company site |
| [fugugames.com](https://fugugames.com/) | Games Site | | [fugugames.com](https://fugugames.com/) | Games site |
| [hyperbowl3d.com](https://hyperbowl3d.com/) | Game Site | | [hyperbowl3d.com](https://hyperbowl3d.com/) | Game site |
| [talkdimsum.com](https://talkdimsum.com/) | App Site | | [talkdimsum.com](https://talkdimsum.com/) | App site |
| [alanctanner.com](https://alanctanner.com/) | Personal Site | | [alanctanner.com](https://alanctanner.com/) | Personal site |
| [rdgo.dev](https://rdgo.dev/) | Personal site |
{{< alert >}} {{< alert >}}

View file

@ -64,7 +64,7 @@
{{ partial "translations.html" . }} {{ partial "translations.html" . }}
{{ if .Site.Params.enableSearch | default false }} {{ if .Site.Params.enableSearch | default false }}
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title="{{ i18n " search.open_button_title" }}"> title="{{ i18n " search.open_button_title" }}">
{{ partial "icon.html" "search" }} {{ partial "icon.html" "search" }}
</button> </button>
@ -72,7 +72,7 @@
{{/* Appearance switch */}} {{/* Appearance switch */}}
{{ if .Site.Params.footer.showAppearanceSwitcher | default false }} {{ if .Site.Params.footer.showAppearanceSwitcher | default false }}
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">
{{ partial "icon.html" "moon" }} {{ partial "icon.html" "moon" }}
</div> </div>

1352
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "hugo-blowfish-theme", "name": "hugo-blowfish-theme",
"version": "2.29.0", "version": "2.30.0",
"description": "Blowfish theme for Hugo", "description": "Blowfish theme for Hugo",
"scripts": { "scripts": {
"fullinstall": "npm run preinstall && npm install && npm run postinstall", "fullinstall": "npm run preinstall && npm install && npm run postinstall",
@ -42,8 +42,8 @@
"packery": "^2.1.2", "packery": "^2.1.2",
"prettier": "^2.8.4", "prettier": "^2.8.4",
"prettier-plugin-go-template": "^0.0.13", "prettier-plugin-go-template": "^0.0.13",
"prettier-plugin-tailwindcss": "^0.2.3", "prettier-plugin-tailwindcss": "^0.2.4",
"rimraf": "^4.1.3", "rimraf": "^4.2.0",
"tailwindcss": "^3.2.7", "tailwindcss": "^3.2.7",
"tw-elements": "^1.0.0-beta1", "tw-elements": "^1.0.0-beta1",
"typeit": "^8.7.1", "typeit": "^8.7.1",

View file

@ -180,7 +180,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -195,7 +195,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">

View file

@ -182,7 +182,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -197,7 +197,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">

View file

@ -182,7 +182,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -197,7 +197,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">

View file

@ -201,7 +201,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -216,7 +216,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">

View file

@ -182,7 +182,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -197,7 +197,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">

View file

@ -182,7 +182,7 @@
<button id="search-button-mobile" class="text-base hover:text-primary-600 dark:hover:text-primary-400" <button id="search-button-mobile" aria-label="Search" class="text-base hover:text-primary-600 dark:hover:text-primary-400"
title=""> title="">
@ -197,7 +197,7 @@
<button id="appearance-switcher-mobile" type="button" style="margin-right:5px"> <button id="appearance-switcher-mobile" aria-label="Dark mode switcher" type="button" style="margin-right:5px">
<div class="flex items-center justify-center h-12 dark:hidden"> <div class="flex items-center justify-center h-12 dark:hidden">