From 7b1da7a8456b0404ad4ebcb8afd523a6618439ff Mon Sep 17 00:00:00 2001 From: BSD-Yassin <103321053+BSD-Yassin@users.noreply.github.com> Date: Thu, 27 Apr 2023 20:12:56 +0200 Subject: [PATCH 1/4] i18n: Update fr.toml (#313) --- i18n/fr.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/i18n/fr.toml b/i18n/fr.toml index e87008d54..f406881d9 100644 --- a/i18n/fr.toml +++ b/i18n/fr.toml @@ -2,7 +2,7 @@ other = "Hey ! Vous semblez perdu‧e. Cette page n'existe pas (ou est privée)." [404_back] -other = "↳ On va te faire retourner à l'accueil" +other = "↳ Clique ici pour retourner sur la page d'accueil" [all_posts] other = "Tout {{.Title}}" @@ -14,7 +14,7 @@ other = "Dernière modification" other = "notes avec ce tag" [first_10] -other = "affichant les 10 premiers résultats" +other = "les 10 premiers résultats" [tag] other = "Tag" @@ -35,7 +35,7 @@ other = "Mode Clair" other = "Mode Sombre" [edit_source] -other = "Editer la source" +other = "Modifier la source" [interactive_graph] other = "Graphique interactif" @@ -44,16 +44,16 @@ other = "Graphique interactif" other = "Rechercher" [search_icon] -other = "Icône de recherche" +other = "l'icône de recherche" [icon_search] -other = "Icon pour ouvrir la recherche" +other = "L'icône pour ouvrir la recherche" [recent_notes] other = "Notes récentes" [first_3_notes] -other = "3 premières {{ .notes }}" +other = "les 3 premières {{ .notes }}" [search_for_something] other = "Rechercher quelque-chose..." From 9450278680fef3d4a1388b99edfceb7c40763bc3 Mon Sep 17 00:00:00 2001 From: Morgan Patterson <31448722+vmorganp@users.noreply.github.com> Date: Fri, 7 Jul 2023 12:20:03 -0700 Subject: [PATCH 2/4] Update Dockerfile (#335) Fix #305 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index ac5e8de26..94904ce03 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM alpine:3.16 RUN apk add --no-cache go hugo git make perl +RUN git config --global --add safe.directory '/quartz' RUN go install github.com/jackyzha0/hugo-obsidian@latest ENV PATH="/root/go/bin:$PATH" RUN git clone https://github.com/jackyzha0/quartz.git /quartz From bb3877998a054d75019fccd8327c46d09e38f695 Mon Sep 17 00:00:00 2001 From: Gimbles Date: Sat, 8 Jul 2023 00:50:18 +0530 Subject: [PATCH 3/4] Add font fallbacks (#341) --- assets/styles/base.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/assets/styles/base.scss b/assets/styles/base.scss index 85eb8bcfc..fae7a4dc0 100644 --- a/assets/styles/base.scss +++ b/assets/styles/base.scss @@ -1,9 +1,9 @@ // Replace this with your own font imports! @import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700&family=Inter:wght@400;600;700&family=Source+Sans+Pro:wght@400;600&display=swap'); :root { - --font-body: "Source Sans Pro"; - --font-header: "Inter"; - --font-mono: "Fira Code" + --font-body: "Source Sans Pro", sans-serif; + --font-header: "Inter", sans-serif; + --font-mono: "Fira Code", monospace; } // typography From 66dd6bcf2d8a5097524c3c42a6be84182b6282ab Mon Sep 17 00:00:00 2001 From: Jacky Zhao Date: Sat, 19 Aug 2023 18:49:50 -0700 Subject: [PATCH 4/4] deprecate quartz v3 --- .github/workflows/deploy.yaml | 2 +- README.md | 8 ++++++-- config.toml | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index a0d219e24..504b3dfee 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -36,4 +36,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./public publish_branch: master # deploying branch - cname: quartz.jzhao.xyz + cname: three.quartz.jzhao.xyz diff --git a/README.md b/README.md index 058b8ba7b..48526674f 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,8 @@ -# Quartz +# Quartz 3 + +> [!warning] +> Quartz v3 is now deprecated and will no longer be maintained. +> See how to migrate to [Quartz 4](https://quartz.jzhao.xyz) Host your second brain and [digital garden](https://jzhao.xyz/posts/networked-thought) for free. Quartz features @@ -12,7 +16,7 @@ Check out some of the [amazing gardens that community members](https://quartz.jz > “[One] who works with the door open gets all kinds of interruptions, but [they] also occasionally gets clues as to what the world is and what might be important.” — Richard Hamming -🔗 Get Started: https://quartz.jzhao.xyz/ +🔗 Get Started: https://three.quartz.jzhao.xyz/ ![Quartz Example Screenshot](./screenshot.png)*Quartz Example Screenshot* diff --git a/config.toml b/config.toml index dbe989329..c01336bdf 100644 --- a/config.toml +++ b/config.toml @@ -1,4 +1,4 @@ -baseURL = "https://quartz.jzhao.xyz/" +baseURL = "https://three.quartz.jzhao.xyz/" languageCode = "en-us" relativeURLs = false disablePathToLower = true