Skip to content

Commit

Permalink
fix: rename to giffium
Browse files Browse the repository at this point in the history
  • Loading branch information
cmgriffing committed Oct 23, 2024
1 parent 3a59d46 commit e07a3a0
Show file tree
Hide file tree
Showing 18 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<p>
<img width="100%" src="https://assets.solidjs.com/banner?type=Lithium&background=tiles&project=Monorepo" alt="Lithium">
<img width="100%" src="https://assets.solidjs.com/banner?type=Giffium&background=tiles&project=Monorepo" alt="Giffium">
</p>

# Lithium
# Giffium

[![pnpm](https://img.shields.io/badge/maintained%20with-pnpm-cc00ff.svg?style=for-the-badge&logo=pnpm)](https://pnpm.io/)
[![turborepo](https://img.shields.io/badge/built%20with-turborepo-cc00ff.svg?style=for-the-badge&logo=turborepo)](https://turborepo.org/)

Lithium is a tool to generate a socially shareable gif from a diff of two snippets of code/config.
Giffium is a tool to generate a socially shareable gif from a diff of two snippets of code/config.

## Inspiration

Lithium was inspired by [Shiki Magic Move](https://github.com/rhysd/Shiki-Magic-Move) and [Carbon](https://carbon.now.sh/)/[Ray.so](https://ray.so/).
Giffium was inspired by [Shiki Magic Move](https://github.com/rhysd/Shiki-Magic-Move) and [Carbon](https://carbon.now.sh/)/[Ray.so](https://ray.so/).

It was created as part of the [SolidJS Hackathon](https://hack.solidjs.com/)

Expand Down Expand Up @@ -55,7 +55,7 @@ pnpm run update-deps

## Contributing

Lithium is a monorepo managed by [turborepo](https://turborepo.org). The project also requires the use of [pnpm](https://pnpm.io) to manage dependencies.
Giffium is a monorepo managed by [turborepo](https://turborepo.org). The project also requires the use of [pnpm](https://pnpm.io) to manage dependencies.

### Getting Started

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lithium-monorepo",
"description": "A monorepo for Lithium, the social sharable diff tool",
"name": "giffium-monorepo",
"description": "A monorepo for Giffium, the social sharable diff tool",
"version": "0.0.1",
"license": "MIT",
"author": "Chris Griffing",
Expand Down Expand Up @@ -39,4 +39,4 @@
"engines": {
"node": ">=18.0.0"
}
}
}
2 changes: 1 addition & 1 deletion playgrounds/app/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lithium-app",
"name": "giffium-app",
"type": "module",
"scripts": {
"dev": "vinxi dev",
Expand Down
Binary file modified playgrounds/app/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified playgrounds/app/public/favicon-48x48.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified playgrounds/app/public/favicon-full.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified playgrounds/app/public/favicon.afphoto
Binary file not shown.
Binary file modified playgrounds/app/public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion playgrounds/app/public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed playgrounds/app/public/favicon.zip
Binary file not shown.
8 changes: 4 additions & 4 deletions playgrounds/app/public/site.webmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Lithium",
"short_name": "Lithium",
"name": "Giffium",
"short_name": "Giffium",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
Expand All @@ -15,7 +15,7 @@
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"theme_color": "#000000",
"background_color": "#000000",
"display": "standalone"
}
Binary file modified playgrounds/app/public/web-app-manifest-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified playgrounds/app/public/web-app-manifest-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion playgrounds/app/src/components/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ export default function Editor(props: EditorProps) {
<Button
onClick={async () => {
const blob = dataURItoBlob(gifDataUrl())
const filename = 'lithium.gif'
const filename = 'giffium.gif'
const link = document.createElement('a')
link.href = URL.createObjectURL(blob)
link.download = filename
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/app/src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Footer() {
</li>
<li class="">
<a
href="https://github.com/cmgriffing/lithium"
href="https://github.com/cmgriffing/giffium"
target="_blank"
rel="noreferrer"
class={linkStyles}
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/app/src/components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export default function Nav() {
</nav>
<div class="flex flex-col items-center justify-center p-4">
<a href="/">
<h1 class="text-6xl font-title text-sky-500">Lithium</h1>
<h1 class="text-6xl font-title text-sky-500">Giffium</h1>
</a>
</div>
</header>
Expand Down
4 changes: 2 additions & 2 deletions playgrounds/app/src/entry-server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ export default createHandler(() => (
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Lithium" />
<meta name="apple-mobile-web-app-title" content="Giffium" />
<link rel="manifest" href="/site.webmanifest" />
<script
defer
data-domain="lithium.cmgriffing.com"
data-domain="giffium.com"
src="https://plausible.io/js/script.outbound-links.js"
></script>
{assets}
Expand Down
2 changes: 1 addition & 1 deletion playgrounds/app/src/routes/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getGithubContributors } from '~/lib/utils'

export default function About() {
const [contributors] = createResource(async () => {
const contributors = await getGithubContributors('cmgriffing', 'lithium')
const contributors = await getGithubContributors('cmgriffing', 'giffium')
return [
...contributors,
{ username: 'crutchcorn', avatarUrl: 'https://avatars.githubusercontent.com/u/9100169?v=4' },
Expand Down

0 comments on commit e07a3a0

Please sign in to comment.