Skip to content

Commit

Permalink
Merge branch 'main' of github.com:riccardoperra/codeimage
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Dec 17, 2022
2 parents d29cd93 + ae1fe02 commit cae526e
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 5 deletions.
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@
> 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

[CodeImage](https://codeimage.dev) is the newest tool to help developers to create beautiful screenshots of their code,
providing several
features to speed up the process to post in social media.

<a href="https://www.producthunt.com/posts/codeimage?utm_source=badge-featured&utm_medium=badge&utm_souce=badge-codeimage" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=371306&theme=light" alt="CodeImage - A&#0032;tool&#0032;to&#0032;manage&#0032;and&#0032;beautify&#0032;your&#0032;code&#0032;screenshots | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>

![CodeImage showcase](docs/showcase_1.png)


## 🤖 Tech stack

Expand Down
6 changes: 6 additions & 0 deletions apps/codeimage/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 8 additions & 0 deletions apps/codeimage/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@
fetchpriority='low'
crossorigin>

<link
href='https://fonts.cdnfonts.com/css/cascadia-code'
rel='stylesheet'
media='print' onload="this.onload=null;this.removeAttribute('media');"
as='font'
fetchpriority='low'
crossorigin>

<!-- Primary Meta Tags -->
<title>CodeImage - A tool to manage and beautify your code screenshots</title>
<meta name='title' content='CodeImage - A tool to manage and beautify your code screenshots'>
Expand Down
2 changes: 1 addition & 1 deletion apps/codeimage/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@codeimage/app",
"private": true,
"version": "1.0.5",
"version": "1.0.6",
"type": "module",
"scripts": {
"start": "vite",
Expand Down
8 changes: 8 additions & 0 deletions apps/codeimage/src/core/configuration/font.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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/",
Expand Down

0 comments on commit cae526e

Please sign in to comment.