From d3c3293837a87cd9238382f056a83b82908276c6 Mon Sep 17 00:00:00 2001 From: Riccardo Perra Date: Thu, 15 Dec 2022 23:05:00 +0100 Subject: [PATCH 1/3] Update README.md --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 016246b15..e21902927 100644 --- a/README.md +++ b/README.md @@ -3,14 +3,12 @@ > Create elegant code screenshots of your source code. ![Latest release Version](https://img.shields.io/badge/dynamic/json?color=success&label=Version&query=version&url=https%3A%2F%2Fraw.githubusercontent.com%2Friccardoperra%2Fcodeimage%2Fmain%2Fpackage.json) -![Build workflow badge](https://img.shields.io/github/workflow/status/riccardoperra/codeimage/Build) +![Build workflow badge](https://img.shields.io/github/actions/workflow/status/riccardoperra/codeimage/prod-deploy.yml?branch=main) [![Issues](https://img.shields.io/github/issues/riccardoperra/codeimage)](https://github.com/riccardoperra/codeimage/issues) -![Lint workflow badge](https://img.shields.io/github/workflow/status/riccardoperra/codeimage/Lint?label=lint) [![Built with SolidJS](https://img.shields.io/badge/Built%20with-SolidJS-blue)](https://github.com/solidjs/solid) [![Built with Vanilla Extract](https://img.shields.io/badge/Built%20with-Vanilla%20Extract-ff69b4)](https://github.com/seek-oss/vanilla-extract) [![Code quality](https://img.shields.io/lgtm/grade/javascript/github/riccardoperra/codeimage)](https://lgtm.com/projects/g/riccardoperra/codeimage/alerts/?mode=list) ![License](https://img.shields.io/github/license/riccardoperra/codeimage) -![CodeImage showcase](docs/showcase_1.png) ## Introduction @@ -18,6 +16,10 @@ providing several features to speed up the process to post in social media. +CodeImage - A tool to manage and beautify your code screenshots | Product Hunt + +![CodeImage showcase](docs/showcase_1.png) + ## 🤖 Tech stack From 87e2f7e0b67bef02bb0ca8080670857aea358d4f Mon Sep 17 00:00:00 2001 From: "Usman Sabuwala (Max Programming)" <51731966+max-programming@users.noreply.github.com> Date: Fri, 16 Dec 2022 17:20:02 +0530 Subject: [PATCH 2/3] feat: added Cascadia Code font (#421) * feat: added Cascadia Code font * Create eleven-buckets-walk.md Co-authored-by: Riccardo Perra --- .changeset/eleven-buckets-walk.md | 5 +++++ apps/codeimage/index.html | 8 ++++++++ apps/codeimage/src/core/configuration/font.ts | 8 ++++++++ 3 files changed, 21 insertions(+) create mode 100644 .changeset/eleven-buckets-walk.md diff --git a/.changeset/eleven-buckets-walk.md b/.changeset/eleven-buckets-walk.md new file mode 100644 index 000000000..816c0212a --- /dev/null +++ b/.changeset/eleven-buckets-walk.md @@ -0,0 +1,5 @@ +--- +"@codeimage/app": patch +--- + +feat: added Cascadia Code font diff --git a/apps/codeimage/index.html b/apps/codeimage/index.html index 384ce6e54..794b9dd3f 100644 --- a/apps/codeimage/index.html +++ b/apps/codeimage/index.html @@ -19,6 +19,14 @@ fetchpriority='low' crossorigin> + + CodeImage - A tool to manage and beautify your code screenshots diff --git a/apps/codeimage/src/core/configuration/font.ts b/apps/codeimage/src/core/configuration/font.ts index 413da9c9f..84a08571e 100644 --- a/apps/codeimage/src/core/configuration/font.ts +++ b/apps/codeimage/src/core/configuration/font.ts @@ -64,4 +64,12 @@ export const [SUPPORTED_FONTS, SUPPORTED_FONTS_DICTIONARY] = createCustomFonts([ {name: 'Bold', weight: 700}, ], }, + { + id: 'cascadia-code', + name: 'Cascadia Code', + types: [ + {name: 'Regular', weight: 400}, + {name: 'Bold', weight: 700}, + ], + }, ] as const); From ae1fe02ad84fef098a2d07d6e01e32071f0f60cf Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Dec 2022 12:51:23 +0100 Subject: [PATCH 3/3] chore(release): version packages (#422) * RELEASING: Releasing 1 package(s) Releases: @codeimage/app@1.0.6 [skip ci] * chore(release): version packages Co-authored-by: github-actions[bot] --- .changeset/eleven-buckets-walk.md | 5 ----- apps/codeimage/CHANGELOG.md | 6 ++++++ apps/codeimage/package.json | 2 +- package.json | 2 +- 4 files changed, 8 insertions(+), 7 deletions(-) delete mode 100644 .changeset/eleven-buckets-walk.md diff --git a/.changeset/eleven-buckets-walk.md b/.changeset/eleven-buckets-walk.md deleted file mode 100644 index 816c0212a..000000000 --- a/.changeset/eleven-buckets-walk.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@codeimage/app": patch ---- - -feat: added Cascadia Code font diff --git a/apps/codeimage/CHANGELOG.md b/apps/codeimage/CHANGELOG.md index 9b69a1bc4..32b541840 100644 --- a/apps/codeimage/CHANGELOG.md +++ b/apps/codeimage/CHANGELOG.md @@ -1,5 +1,11 @@ # @codeimage/app +## 1.0.6 + +### Patch Changes + +- [#421](https://github.com/riccardoperra/codeimage/pull/421) [`87e2f7e`](https://github.com/riccardoperra/codeimage/commit/87e2f7e0b67bef02bb0ca8080670857aea358d4f) Thanks [@max-programming](https://github.com/max-programming)! - feat: added Cascadia Code font + ## 1.0.5 ### Patch Changes diff --git a/apps/codeimage/package.json b/apps/codeimage/package.json index 517d149fc..3d3fd8925 100644 --- a/apps/codeimage/package.json +++ b/apps/codeimage/package.json @@ -1,7 +1,7 @@ { "name": "@codeimage/app", "private": true, - "version": "1.0.5", + "version": "1.0.6", "type": "module", "scripts": { "start": "vite", diff --git a/package.json b/package.json index 47761d254..aaf3638b8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "codeimage", - "version": "1.0.5", + "version": "1.0.6", "description": "Create elegant code screenshots of your source code", "info": "Codeimage is the newest open source tool to help developers to create beautiful screenshots of their code, providing several features to speed up the process to post in social media. It's built on the top of solid-js and has a rich choice of customizations, 15+ custom themes, supports for mobile devices and much more!", "homepage": "https://codeimage.dev/",