Skip to content

Commit

Permalink
Merge pull request #229 from pheralb/next
Browse files Browse the repository at this point in the history
🚀 v4.1.0
  • Loading branch information
pheralb authored Jan 26, 2024
2 parents 41e5a61 + 5f4116f commit 83056ce
Show file tree
Hide file tree
Showing 39 changed files with 978 additions and 625 deletions.
11 changes: 7 additions & 4 deletions .github/ISSUE_TEMPLATE/request-svg-.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
---
name: Request SVG.
about: Request an SVG here.
title: "[Request]:"
title: '🔔 [Request]:'
labels: request
assignees: pheralb

---

## 🔎 Information:

- **Title**:
- **Category**:
- **Source (.svg)**:
- **Website**:

## Checklist (required):
## 📝 Checklist:

- [x] #739
- [x] I have permission to use this logo.
- [x] The link I have provided is optimized for web use.
- [x] The size of the SVG is less than **20kb**.
43 changes: 20 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
Discover
</a>
<span>&nbsp;✦&nbsp;</span>
<a href="https://github.com/pheralb/svgl/issues/new?assignees=pheralb&labels=request&projects=&template=request-svg-.md&title=%5BRequest%5D%3A">
Request logo
</a>
<span>&nbsp;✦&nbsp;</span>
<a href="#-getting-started">
Submit logo
</a>
Expand Down Expand Up @@ -100,50 +104,43 @@ pnpm install
"category": "Category",
"route": "/library/your_logo.svg",
"url": "Website"
},
```

- If the logo has light and dark mode:

```json
{
"title": "Title",
"category": "Category",
"route": {
"light": "/library/your_logo_light.svg",
"dark": "/library/your_logo_dark.svg"
},
"url": "Website"
},
}
```

- If the logo has logo + wordmark version:

```json
// Only solid color:
{
"title": "Title",
"category": "Category",
"route": "/library/your_logo.svg",
"wordmark": "/library/your_logo_wordmark.svg",
"url": "Website"
},
}
```

// Add light/dark mode:
- If the logo/wordmark has light and dark mode:

```json
{
"title": "Title",
"category": "Category",
"route": "/library/your_logo.svg",
"route": {
"light": "/library/your_logo_light.svg",
"dark": "/library/your_logo_dark.svg"
},
"wordmark": {
"light": "/library/your_logo_wordmark_light.svg",
"dark": "/library/your_logo_wordmark_dark.svg"
"light": "/library/your_wordmark-logo_light.svg",
"dark": "/library/your_wordmark-logo_dark.svg"
},
"url": "Website"
},
}
```

> [!NOTE]
> The list of categories is here: [`src/types/categories.ts`](https://github.com/pheralb/svgl/blob/main/src/types/categories.ts). You can add a new category if you need it.
>
> - The list of categories is here: [`src/types/categories.ts`](https://github.com/pheralb/svgl/blob/main/src/types/categories.ts). You can add a new category if you need it.
> - You can add multiple categories to the same logo, for example: `"category": ["Social", "Design"]` (max 3 categories per logo).
And create a pull request with your logo 🚀.

Expand Down
45 changes: 22 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "svgl",
"author": "@pheralb_",
"version": "4.0.0",
"version": "4.1.0",
"description": "A beautiful library with SVG logos.",
"private": true,
"license": "MIT",
Expand Down Expand Up @@ -30,45 +30,44 @@
"build:figma": "concurrently -n plugin,svelte 'npm run build:plugin -- --define:SITE_URL=\\\"$npm_package_config_siteURL\\\"' 'npm run build'"
},
"dependencies": {
"@figma/plugin-typings": "^1.82.0",
"@figma/plugin-typings": "1.84.0",
"@upstash/ratelimit": "1.0.0",
"@upstash/redis": "1.25.2",
"bits-ui": "0.11.8",
"clsx": "2.0.0",
"@upstash/redis": "1.28.2",
"bits-ui": "0.15.1",
"clsx": "2.1.0",
"downloadjs": "1.4.7",
"jszip": "3.10.1",
"lucide-svelte": "0.298.0",
"lucide-svelte": "0.314.0",
"shiki": "0.14.7",
"svelte-sonner": "0.3.6",
"tailwind-merge": "2.1.0"
"tailwind-merge": "2.2.1"
},
"devDependencies": {
"@sveltejs/adapter-auto": "3.0.0",
"@sveltejs/kit": "2.0.0",
"@sveltejs/adapter-auto": "3.1.1",
"@sveltejs/kit": "2.4.3",
"@sveltejs/vite-plugin-svelte": "3.0.1",
"@tailwindcss/typography": "0.5.10",
"@types/downloadjs": "1.4.6",
"@typescript-eslint/eslint-plugin": "6.14.0",
"@typescript-eslint/parser": "6.14.0",
"autoprefixer": "10.4.16",
"concurrently": "^8.2.2",
"esbuild": "^0.19.10",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"autoprefixer": "10.4.17",
"concurrently": "8.2.2",
"esbuild": "0.19.12",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-svelte": "2.35.1",
"mdsvex": "0.11.0",
"phosphor-svelte": "1.3.0",
"postcss": "8.4.32",
"prettier": "3.1.1",
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-svelte": "3.1.2",
"prettier-plugin-tailwindcss": "0.5.9",
"svelte": "4.2.8",
"svelte-check": "3.6.2",
"tailwindcss": "3.3.6",
"prettier-plugin-tailwindcss": "0.5.11",
"svelte": "4.2.9",
"svelte-check": "3.6.3",
"tailwindcss": "3.4.1",
"tslib": "2.6.2",
"typescript": "5.3.3",
"vite": "5.0.10",
"vitest": "1.0.4"
"vite": "5.0.12",
"vitest": "1.2.1"
},
"config": {
"siteURL": "https://svgl.app?figma=1"
Expand Down
Loading

1 comment on commit 83056ce

@vercel
Copy link

@vercel vercel bot commented on 83056ce Jan 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svgl – ./

svgl-git-main-pheralb.vercel.app
svgl.vercel.app
svgl-pheralb.vercel.app
svgl.app
www.svgl.app

Please sign in to comment.