codeimage

A tool to beautify your code screenshots. Built with SolidJS and Fastify.

MIT License

Stars
1.4K
Committers
17

Bot releases are hidden (Show)

codeimage - v1.1.5

Published by riccardoperra over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.1.4...v1.1.5

codeimage - v1.1.4

Published by riccardoperra over 1 year ago

This new release of CodeImage introduces 3 new language modes:

  • Shell (#454)
  • Swift (#455)
  • Dockerfile support (#455)

What's Changed

Other changes

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.1.3...v1.1.4

codeimage - v1.1.3

Published by riccardoperra over 1 year ago

This new version of CodeImage introduces a new Github theme variant: Dark Dimmed

image

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.1.2...v1.1.3

codeimage - v1.1.2

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.1.1...v1.1.2

codeimage - v1.1.1

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.1.0...v1.1.1

codeimage - v1.1.0

Published by riccardoperra almost 2 years ago

preview_1 1 0

CodeImage 1.1.0 introduce a new floating bar in the UI 😄 That was something missing and request for a while, also considering that there are so many hidden actions that are currently only available via shortcuts

Copy to Clipboard

Copying to clipboard was an already existing feature present in CodeImage since April, but it was hidden! In fact, until now it was only usable just pressing Ctrl+C 🫥.

It uses under the hood the system's WebShare API, so you can paste the generated image anywhere with Ctrl+V, for example on Telegram, Twitter. This allows you to not download anymore the image on your PC.

Note Currently the copy to clipboard action generate a PNG image with default system scale based on DPI (1x scale on most of devices, 3x on iOS)


Format your code with prettier

Prettier has been added to CodeImage allowing you to automatically format your code with some predefined options. The languages currently available are all based on open source plugins.

3a0e5297-30e3-41d5-ad8b-19c9ee3f746c

Note Since formatting relies on prettier, there are some caveats about the used options. Look at their Options philosophy section


Random styles

Now that there are so many customization styles, it is also possible to randomly generate the style (again based on the available options)

image

What's Changed

Core changes

  • CodeImage will now use statesolid as a main state management. The refactor of that portion of the code is at 75%

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.10...v1.1.0

codeimage - v1.0.10

Published by riccardoperra almost 2 years ago

The newest release introduce a new editor theme: Aura.

image

Also, several bugs have been fixed including SVG export which now finally generates the image with the correct size. In fact, export size has been drastically reduced from ~7-10mb to ~500kb/1.5mb.

What's Changed

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.9...v1.0.10

codeimage - v1.0.9

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.8...v1.0.9

codeimage - v1.0.8

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.7...v1.0.8

codeimage - v1.0.7

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.6...v1.0.7

codeimage - v1.0.6

Published by riccardoperra almost 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.5...v1.0.6

codeimage - v1.0.5

Published by riccardoperra almost 2 years ago

What's Changed

Thanks to @fadhilsaheer for notifying the issue

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.4...v1.0.5

codeimage - v1.0.4 - New website

Published by riccardoperra almost 2 years ago

image

Breaking Changes

CodeImage logo has been updated!

The application of codeimage will now live into app.codeimage.dev. codeimage.dev will now redirect to the website.

Also thanks to @hackpirodev for the given feedbacks 😄

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.2...v1.0.4

codeimage - v1.0.2

Published by riccardoperra almost 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v1.0.0...v1.0.2

codeimage - v1.0.0 - Projects

Published by riccardoperra almost 2 years ago

codeimage_projects_showcase

This new version of CodeImage introduces Projects; a dedicated space where you can save all your code snippets.

Development of these new features have been started in the middle of july with @hackpirodev, and finally the biggest part is done 🎊.

This is why CodeImage officially pass to version 1.0.

Projects

Schermata 2022-10-11 alle 08 56 51

Projects basically allows everyone to manage their snippets and save them remotely in order to access them from everywhere.

A new homepage for every user which has the authorization to use it will appear. This mean also you will be able to share publicly your snippets. In fact, each snippet have an unique uuid associated and present in the URL which will allows everyone to watch it in read-only modality.

Here's an example; https://codeimage.dev/413d9f66-cc7e-41b3-bbef-1c2f737ed74a

Projects will be available FOR FREE only for authenticated users.

Authentication system

image

Due to the necessity of persisting the project information on a backend server, we decided to allows these features only for authenticated users.

The authentication system integrates Auth0 in order to provide a easy and fast social login (Github) with in mind the possibility to choose also others social networks login method in the future.

Save snippets remotely

CodeImage projects introduce a new service into the core application: a backend server. We have opt-in for Fastify which is for us one of the best available choice in the current state of backend development.

Using a custom backend allows us to have 100% of control of what's inside our system. We've tried several solutions like Firebase, Supabase
etc. but we preferred moving to the stack Fastify - Prisma in order to provide also a good developer expericence, better type safety and flexibility.

The backend will be currently SELF-HOSTED without gain. At the moment the goal is to provide this service for free.

Pipeline with super-powers

We've also refactored our pipeline system in order to provide better CI/CD deployments, improving timings and centralizing everything.

image

UI Improvements

This new version introduces also new UI improvements and small changes in order to provide a better user experience.

Schermata 2022-10-11 alle 08 54 26

Hacktoberfest

October is known by developers to be the month of hacktoberfest. I would like to thank all the contributors who help us with the dedicated issues:

@SIMRAN88

@TGlide

@Vikki123

What's next?

Most of the expected software thought when CodeImage started are completed, so now the focus will be splitted in two parts:

  • Core development (75%)
  • New features (25%)

Here some new things that are already planned and will be released soon 😄

  • ThemeBuilder: creates new theme for both CodeImage or your editor and share it to the world
  • Embeds: embed your snippets everywhere in a SEO-friendly way.
  • codeimage-ui: the ui kit of codeimage will be released as a standalone ui kit library for SolidJS

Changelog

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.21.4...v1.0.0

codeimage - v0.21.4

Published by riccardoperra about 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.21.3...v0.21.4

codeimage - v0.21.3

Published by riccardoperra about 2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.21.2...v0.21.3

codeimage - v0.21.2

Published by riccardoperra over 2 years ago

Poimandres theme is finally available to CodeImage thanks to @Kalmarv https://github.com/riccardoperra/codeimage/issues/301

9e5089ad-9074-49a1-9728-5acf0d438e7d

What's Changed

Other

New Contributors

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.21.1...v0.21.2

codeimage - v0.21.1

Published by riccardoperra over 2 years ago

What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.20.0...v0.21.1

codeimage - v0.21.0 - Shadows

Published by riccardoperra over 2 years ago

This new version of CodeImage expands the number of the editor options and the list of available themes.
There are also some improvements to the UI core in order to integrate Motion One for animations and solid-aria for overlays, dialogs and popovers.

What's new

Shadows

Until now, CodeImage snippets have always used a default, non-editable, shadow. From today, thanks to @hackpirodev contribution #287, you will be able to choose from a predefined set of shadows.

Available shadows

Currently, the list of available shadows is that:

  • Small
  • Medium
  • Large
  • Bottom
  • 3D effect

Note Do you want to contribute and do you think we forgot to add a drop shadow, or do you want to improve an existing one? You can create an issue in order to discuss it


Github themes

Two new themes has been added into the theme switcher. Let's introduce Github Dark and Github Light!


New Locale

Spanish language has been added to CodeImage!


Other changes

There are some graphical improvements with this new version of CodeImage:


What's Changed

Full Changelog: https://github.com/riccardoperra/codeimage/compare/v0.20.0...v0.21.0