Compare commits

..

15 Commits

Author SHA1 Message Date
Thomas Camlong
d3d69ace47 chore: Remove 'Companies' category 2025-04-19 11:09:30 +02:00
Thomas Camlong
40bb2ac4fe update metadata 2025-04-19 11:09:18 +02:00
Thomas Camlong
a0fe0ccde3 wip 2025-04-19 10:37:04 +02:00
Thomas Camlong
f87ccb7475 update categories for part 3 2025-04-19 10:22:57 +02:00
Thomas Camlong
de4b2179d0 chore: Add 'Companies' category to issue templates 2025-04-19 10:21:15 +02:00
Thomas Camlong
6b45bf1ae7 chore: Update github issue templates 2025-04-19 10:19:36 +02:00
Thomas Camlong
93d5204553 remove old categories 2025-04-19 10:16:54 +02:00
Thomas Camlong
6a572dfcc8 wip 2025-04-19 10:14:43 +02:00
Thomas Camlong
1c5e55aa0c wip 2025-04-18 23:55:47 +02:00
Thomas Camlong
2993b39d1b update metadata 2025-04-18 22:56:30 +02:00
Thomas Camlong
f593c37c19 update metadata 2025-04-18 22:56:07 +02:00
Thomas Camlong
39620c27b1 Merge branch 'main' into feat/ai-categories 2025-04-18 22:39:01 +02:00
Thomas Camlong
38ae50ed8a Merge branch 'main' into feat/ai-categories 2025-04-18 18:34:08 +02:00
Thomas Camlong
0ae0b7fdc8 use google studio to add categories 2025-04-16 17:07:15 +02:00
Thomas Camlong
47b775ee48 Fix favicons 2025-04-16 16:34:38 +02:00
437 changed files with 25971 additions and 29955 deletions

4
.github/FUNDING.yml vendored
View File

@@ -1,4 +0,0 @@
# These are supported funding model platforms
open_collective: homarr
github: lammersbjorn

View File

@@ -1,88 +1,78 @@
name: "Add light & dark icon"
description: |
Submit a new icon with distinct 'light' and 'dark' versions.
- A **Light Icon** is typically light-colored (e.g., predominantly white/very light shades, like Sonarr's logo) and is best suited for dark backgrounds.
- A **Dark Icon** is typically dark-colored (e.g., predominantly black/very dark shades, like Ollama's logo) and is best suited for light backgrounds.
title: "feat(icons): add monochrome [icon-name]"
labels: ["icon addition", "monochrome icon"]
description: Use this template to add a new icon to the project. Monochrome icons need both light and dark versions.
title: "feat(icons): add [NAME]"
labels: ["monochrome-icon"]
body:
- type: markdown
attributes:
value: |
Thanks for contributing a new icon with light and dark variants! Please complete the following.
Ensure your icons are optimized and adhere to quality standards.
**Light Icon Definition:** Predominantly light colors (e.g., white, light grays - like Sonarr's logo), designed for optimal visibility on dark backgrounds.
**Dark Icon Definition:** Predominantly dark colors (e.g., black, dark grays - like Ollama's logo), designed for optimal visibility on light backgrounds.
Hello and thank you for contributing to the project! Please fill out the following information to add a new icon to the project.
Once you've submitted the issue, sombody from the team will review it, before adding a label which automatically creates a pull request with the other filetypes.
If you submit a PNG icon, please note, that the SVG can not be generated from it.
- type: input
id: icon-name
attributes:
label: "Icon Name"
description: "The unique name for the icon (e.g., `home-assistant`). This will be the base filename."
placeholder: "e.g., sonarr"
validations:
required: true
label: Icon name
description: The name has to be unique and should be kebab-case.
placeholder: e.g. "icon-name"
- type: textarea
id: svg-code-light
attributes:
label: "SVG Code (Light Version)"
description: "Paste the SVG code for the **Light Version** of the icon (predominantly light colors, for dark backgrounds)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
label: Paste light mode icon
description: |
Please paste the icon here. It will automatically upload it to github. This icon should be visible on a light background.
- type: textarea
id: svg-code-dark
attributes:
label: "SVG Code (Dark Version)"
description: "Paste the SVG code for the **Dark Version** of the icon (predominantly dark colors, for light backgrounds)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
- type: input
id: brand-guidelines
attributes:
label: "Brand Guidelines URL (Optional)"
description: "If available, provide a link to the official brand guidelines or logo source."
placeholder: "e.g., https://brand.home-assistant.io/"
- type: input
id: source-url
attributes:
label: "Icon Source URL (Optional)"
description: "Link to where you found the icon (e.g., official website, GitHub repository)."
placeholder: "e.g., https://example.com/logo.svg"
label: Paste dark mode icon
description: |
Please paste the icon here. It will automatically upload it to github. This icon should be visible on a dark background.
- type: dropdown
id: icon-type-confirmation
attributes:
label: "Icon Type Confirmation"
description: "Confirm this icon submission includes separate light and dark variants as defined above."
label: Icon type
options:
- "Yes, this includes light and dark variants."
validations:
required: true
- type: input
id: categories
- SVG
- PNG
- type: dropdown
attributes:
label: "Categories (Optional, comma-separated)"
description: "Relevant categories for the icon (e.g., `media, automation`). Helps with searching and organization."
placeholder: "e.g., dashboard, utility, networking"
label: Categories
multiple: true
options:
- Operating-Systems
- Web-Browsers
- Cloud-Computing
- Databases
- Media-Servers
- Password-Managers
- Monitoring-Tools
- Version-Control-Systems
- Home-Automation
- Download-Managers
- VPN
- Social-Media
- Office-Suites
- File-Sharing-&-Sync
- Search-Engines
- Graphics-Editors
- Containerization-&-Orchestration
- Networking-Tools
- Note-taking-Apps
- AI-&-LLM-Platforms
- Music-Streaming
- Video-Streaming
- Linux-Distributions
- Gaming-Platforms
- E-commerce-Platforms
- Finance-&-Banking
- Email-Providers
- Smart-Home
- Server-Panels
- Programming-Languages
- Developper-Tools
- type: input
id: aliases
attributes:
label: "Aliases (Optional, comma-separated)"
description: "Alternative names or keywords for the icon (e.g., `ha, hass`)."
placeholder: "e.g., prox, pve"
label: Aliases
description: A comma separated list of aliases
placeholder: e.g. "icon-alias, icon-alias-2"
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information or context for the maintainers."
label: Additional information
description: |
Add additional informations like a link to the application.

View File

@@ -1,74 +1,73 @@
name: "Add normal icon"
description: "Submit a new 'normal' icon. A normal icon is designed to be versatile and visually consistent across both light and dark backgrounds without requiring separate versions."
title: "feat(icons): add [icon-name]"
labels: ["icon addition", "normal icon"]
description: Use this template to add a new icon to the project. Normal icons work for both light and dark themes.
title: "feat(icons): add [NAME]"
labels: ["normal-icon"]
body:
- type: markdown
attributes:
value: |
Thanks for your interest in contributing a new icon! Please complete the following details.
A **normal icon** should be designed to work well and maintain good contrast/readability on both light and dark backgrounds.
Ensure your icon is optimized and adheres to our quality standards.
Hello and thank you for contributing to the project! Please fill out the following information to add a new icon to the project.
Once you've submitted the issue, sombody from the team will review it, before adding a label which automatically creates a pull request with the other filetypes.
If you submit a PNG icon, please note, that the SVG can not be generated from it.
- type: input
id: icon-name
attributes:
label: "Icon Name"
description: "The unique name for the icon (e.g., `home-assistant`). This will be used as the filename."
placeholder: "e.g., sonarr"
validations:
required: true
label: Icon name
description: The name has to be unique and should be kebab-case.
placeholder: e.g. "icon-name"
- type: textarea
id: svg-code
attributes:
label: "SVG Code (Normal Version)"
description: "Paste the SVG code for the icon. This version should be suitable for both light and dark backgrounds. Ensure the icon\'s colors provide good contrast and readability on various background shades."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
- type: input
id: brand-guidelines
attributes:
label: "Brand Guidelines URL (Optional)"
description: "If available, provide a link to the official brand guidelines or logo source."
placeholder: "e.g., https://brand.home-assistant.io/"
- type: input
id: source-url
attributes:
label: "Icon Source URL (Optional)"
description: "Link to where you found the icon (e.g., official website, GitHub repository)."
placeholder: "e.g., https://example.com/logo.svg"
label: Paste icon
description: |
Please paste the icon here. It will automatically upload it to github.
- type: dropdown
id: icon-type-confirmation
attributes:
label: "Icon Type Confirmation"
description: "Confirm this icon is a \'normal\' icon (designed to be versatile and visually consistent across both light and dark backgrounds without requiring separate versions)."
label: Icon type
options:
- "Yes, this is a normal icon."
validations:
required: true
- type: input
id: categories
- SVG
- PNG
- type: dropdown
attributes:
label: "Categories (Optional, comma-separated)"
description: "Relevant categories for the icon (e.g., `media, automation`). Helps with searching and organization."
placeholder: "e.g., dashboard, utility, networking"
label: Categories
multiple: true
options:
- Operating-Systems
- Web-Browsers
- Cloud-Computing
- Databases
- Media-Servers
- Password-Managers
- Monitoring-Tools
- Version-Control-Systems
- Home-Automation
- Download-Managers
- VPN
- Social-Media
- Office-Suites
- File-Sharing-&-Sync
- Search-Engines
- Graphics-Editors
- Containerization-&-Orchestration
- Networking-Tools
- Note-taking-Apps
- AI-&-LLM-Platforms
- Music-Streaming
- Video-Streaming
- Linux-Distributions
- Gaming-Platforms
- E-commerce-Platforms
- Finance-&-Banking
- Email-Providers
- Smart-Home
- Server-Panels
- Programming-Languages
- Developper-Tools
- type: input
id: aliases
attributes:
label: "Aliases (Optional, comma-separated)"
description: "Alternative names or keywords for the icon (e.g., `ha, hass`)."
placeholder: "e.g., prox, pve"
label: Aliases
description: A comma separated list of aliases
placeholder: e.g. "icon-alias, icon-alias-2"
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information or context for the maintainers."
label: Additional information
description: |
Add additional informations like a link to the application.

View File

@@ -1,110 +0,0 @@
name: "Add Wordmark Icon"
description: |
Submit a new wordmark icon (icon featuring brand name).
A **Wordmark Icon** incorporates the brand's name or logotype directly into or alongside the graphical mark.
It can be a single version for all themes, or have separate light/dark versions.
- **Light Icon Version:** (If applicable) predominantly light colors (e.g., Sonarr's logo), for dark backgrounds.
- **Dark Icon Version:** (If applicable) predominantly dark colors (e.g., Ollama's logo), for light backgrounds.
title: "feat(icons): add wordmark [icon-name]"
labels: ["icon addition", "wordmark icon"]
body:
- type: markdown
attributes:
value: |
Thanks for contributing a new wordmark icon!
**What is a Wordmark Icon?** It's an icon that integrates the brand's name/logotype with its graphical mark for stronger brand recognition.
Please complete the following details. Ensure your icon is optimized.
- type: input
id: icon-name
attributes:
label: "Icon Name (Base)"
description: "The unique name for the icon (e.g., `my-service-wordmark`). This will be used as the base for filenames."
placeholder: "e.g., awesome-app-wordmark"
validations:
required: true
- type: markdown
attributes:
value: |
**Icon Versioning:** Does this wordmark have a single version or separate light/dark versions?
- type: checkboxes
id: wordmark-type
attributes:
label: "Wordmark Version Type"
description: "Select how this wordmark is provided."
options:
- label: "Single version (works on both light and dark backgrounds)"
required: false
- label: "Separate light and dark versions"
required: false
- type: textarea
id: svg-code-wordmark-normal
attributes:
label: "SVG Code (Single/Normal Wordmark)"
description: "If this is a single-version wordmark, paste the SVG code here. Ensure it's versatile for all backgrounds."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: textarea
id: svg-code-wordmark-light
attributes:
label: "SVG Code (Light Wordmark Version)"
description: "If providing separate versions, paste the SVG for the **Light Version** here (predominantly light colors, e.g., for dark UIs)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: textarea
id: svg-code-wordmark-dark
attributes:
label: "SVG Code (Dark Wordmark Version)"
description: "If providing separate versions, paste the SVG for the **Dark Version** here (predominantly dark colors, e.g., for light UIs)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: markdown
attributes:
value: |
**Important:** Please ensure you fill out the correct SVG code section(s) based on your selection above. If providing separate light/dark versions, both are typically required. If a single version, only the 'Single/Normal' field is needed.
- type: input
id: brand-guidelines
attributes:
label: "Brand Guidelines URL (Optional)"
description: "Link to official brand guidelines, if available."
placeholder: "e.g., https://brand.example.com/"
- type: input
id: source-url
attributes:
label: "Icon Source URL (Optional)"
description: "Link to where you found the wordmark (e.g., official website)."
placeholder: "e.g., https://example.com/logo-wordmark.svg"
- type: input
id: categories
attributes:
label: "Categories (Optional, comma-separated)"
description: "Relevant categories for the icon."
placeholder: "e.g., service, productivity"
- type: input
id: aliases
attributes:
label: "Aliases (Optional, comma-separated)"
description: "Alternative names or keywords."
placeholder: "e.g., myapp-text, full-logo"
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information."

View File

@@ -1,59 +1,36 @@
name: "Update light & dark icon"
description: |
Improve an existing icon with distinct 'light' and 'dark' versions.
- A **Light Icon** is typically light-colored (e.g., predominantly white/very light shades, like Sonarr's logo) and is best suited for dark backgrounds.
- A **Dark Icon** is typically dark-colored (e.g., predominantly black/very dark shades, like Ollama's logo) and is best suited for light backgrounds.
title: "fix(icons): update monochrome [icon-name]"
labels: ["icon update", "monochrome icon"]
description: Use this template to update an existing icon. Monochrome icons need both light and dark versions.
title: "feat(icons): update [NAME]"
labels: ["monochrome-icon"]
body:
- type: markdown
attributes:
value: |
Thanks for improving an icon with light and dark variants!
Please ensure the updated versions adhere to the definitions:
**Light Icon Definition:** Predominantly light colors (e.g., white, light grays - like Sonarr's logo), for dark backgrounds.
**Dark Icon Definition:** Predominantly dark colors (e.g., black, dark grays - like Ollama's logo), for light backgrounds.
Please specify the icon name and provide the updated SVGs.
Hello and thank you for contributing to the project! Please fill out the following informations to update an existing icon in the project.
- type: input
id: icon-name
id: iconName
attributes:
label: "Icon Name to Update"
description: "The name of the existing icon you are updating (e.g., `home-assistant`)."
placeholder: "e.g., sonarr"
validations:
required: true
label: Icon name
description: The name has to be unique and should be kebab-case.
placeholder: e.g. "icon-name"
- type: textarea
id: svg-code-light
attributes:
label: "Updated SVG Code (Light Version)"
description: "Paste the new SVG code for the **Light Version** (predominantly light colors, for dark backgrounds)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
label: Paste light mode icon
description: |
Please paste the icon here. It will automatically upload it to github. This icon should be visible on a light background.
- type: textarea
id: svg-code-dark
attributes:
label: "Updated SVG Code (Dark Version)"
description: "Paste the new SVG code for the **Dark Version** (predominantly dark colors, for light backgrounds)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
label: Paste dark mode icon
description: |
Please paste the icon here. It will automatically upload it to github. This icon should be visible on a dark background.
- type: dropdown
attributes:
label: Icon type
options:
- SVG
- PNG
- type: textarea
id: reason-for-update
attributes:
label: "Reason for Update"
description: "Briefly explain why this icon needs an update (e.g., outdated design, quality, color adjustment)."
validations:
required: true
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information or context for the maintainers."
label: Additional information
description: |
Add additional informations like, the reason for the update, or what has been changed.

View File

@@ -1,44 +1,31 @@
name: "Update normal icon"
description: "Improve an existing 'normal' icon. A normal icon is designed to be versatile and visually consistent across both light and dark backgrounds."
title: "fix(icons): update [icon-name]"
labels: ["icon update", "normal icon"]
description: Use this template to update an existing icon. Normal icons work for both light and dark themes.
title: "feat(icons): update [NAME]"
labels: ["normal-icon"]
body:
- type: markdown
attributes:
value: |
Thanks for helping improve an existing icon!
A **normal icon** should be designed to work well and maintain good contrast/readability on both light and dark backgrounds.
Please specify the icon name and provide the updated details.
Hello and thank you for contributing to the project! Please fill out the following informations to update an existing icon in the project.
- type: input
id: icon-name
id: iconName
attributes:
label: "Icon Name to Update"
description: "The name of the existing icon you are updating (e.g., `home-assistant`)."
placeholder: "e.g., sonarr"
validations:
required: true
label: Icon name
description: The name has to match the existing icon name.
placeholder: e.g. "icon-name"
- type: textarea
id: svg-code
attributes:
label: "Updated SVG Code (Normal Version)"
description: "Paste the new SVG code for the icon. This version should be suitable for both light and dark backgrounds. Ensure the icon\'s colors provide good contrast and readability."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: true
label: Paste icon
description: |
Please paste the icon here. It will automatically upload it to github.
- type: dropdown
attributes:
label: Icon type
options:
- SVG
- PNG
- type: textarea
id: reason-for-update
attributes:
label: "Reason for Update"
description: "Briefly explain why this icon needs an update (e.g., outdated design, quality improvement, color adjustment for better universal background compatibility)."
validations:
required: true
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information or context for the maintainers."
label: Additional information
description: |
Add additional informations like, the reason for the update, or what has been changed.

View File

@@ -1,87 +0,0 @@
name: "Update Wordmark Icon"
description: |
Improve an existing wordmark icon.
A **Wordmark Icon** incorporates the brand's name or logotype.
Remember the light/dark definitions if applicable for the wordmark.
title: "fix(icons): update wordmark [icon-name]"
labels: ["icon update", "wordmark icon"]
body:
- type: markdown
attributes:
value: |
Thanks for helping improve a wordmark icon!
Please specify the icon name and provide the updated details.
- type: input
id: icon-name
attributes:
label: "Wordmark Icon Name to Update"
description: "The name of the existing wordmark icon you are updating (e.g., `my-service-wordmark`)."
placeholder: "e.g., awesome-app-wordmark"
validations:
required: true
- type: markdown
attributes:
value: |
**Icon Versioning Being Updated:** Is this wordmark a single version or does it have separate light/dark versions? This helps in providing the correct updated SVGs.
- type: checkboxes
id: wordmark-update-type
attributes:
label: "Wordmark Version Type (of the icon being updated)"
description: "Indicate the type of wordmark you are updating."
options:
- label: "Updating a single-version wordmark"
required: false
- label: "Updating a wordmark with separate light and dark versions"
required: false
- type: textarea
id: svg-code-wordmark-normal-updated
attributes:
label: "Updated SVG Code (Single/Normal Wordmark)"
description: "If updating a single-version wordmark, paste the NEW SVG code here."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: textarea
id: svg-code-wordmark-light-updated
attributes:
label: "Updated SVG Code (Light Wordmark Version)"
description: "If updating light/dark versions, paste the NEW SVG for the Light Version here (predominantly light colors)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: textarea
id: svg-code-wordmark-dark-updated
attributes:
label: "Updated SVG Code (Dark Wordmark Version)"
description: "If updating light/dark versions, paste the NEW SVG for the Dark Version here (predominantly dark colors)."
placeholder: "<svg>...</svg>"
render: svg
validations:
required: false
- type: markdown
attributes:
value: |
**Important:** Provide the updated SVG(s) in the relevant section(s) above based on the type of wordmark being updated.
- type: textarea
id: reason-for-update
attributes:
label: "Reason for Update"
description: "Briefly explain why this wordmark icon needs an update (e.g., outdated design, quality improvement, color adjustment)."
validations:
required: true
- type: textarea
id: additional-notes
attributes:
label: "Additional Notes (Optional)"
description: "Any other relevant information."

View File

@@ -1,15 +0,0 @@
name: Trigger Cloudflare Pages Build
on:
schedule:
- cron: '0 0 * * *' # Runs every day at midnight UTC
workflow_dispatch:
jobs:
cron_job:
runs-on: ubuntu-latest
steps:
- name: Run Your Cron Job
run: |
curl -X POST "${{ secrets.CLOUDFLARE_DEPLOY_HOOK_URL }}"

View File

@@ -4,7 +4,7 @@
"7-zip"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-05T00:02:27Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Databases",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2022-08-16T17:22:56Z",

View File

@@ -5,7 +5,7 @@
"app-builder"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Cloud-Computing"
],
"update": {

View File

@@ -4,7 +4,7 @@
"Automation Tool"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"DevOps"
],
"update": {

View File

@@ -5,7 +5,7 @@
"site-scraper"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T19:32:46Z",

View File

@@ -4,7 +4,7 @@
"GitOps Tool"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"DevOps",
"Containerization-&-Orchestration"
],

View File

@@ -6,7 +6,7 @@
],
"categories": [
"File-Sharing-&-Sync",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T19:32:46Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Office-Suites",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
"build-server"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Version-Control-Systems"
],
"update": {

View File

@@ -4,7 +4,7 @@
"Issue Tracker"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Office-Suites"
],
"update": {

View File

@@ -1,16 +1,16 @@
{
"base": "svg",
"aliases": [
"atuin-sh"
],
"categories": [
"Development"
],
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-04-28T18:58:39.840943",
"timestamp": "2024-10-20T17:24:03Z",
"author": {
"id": 71191962,
"login": "lammersbjorn"
"name": "walkxcode"
}
},
"colors": {
"dark": "atuin",
"light": "atuin-light"
}
}

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Databases",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
"data-backup"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-07T17:54:03Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Security",
"Developer-Tools",
"Developper-Tools",
"Networking-Tools"
],
"update": {

View File

@@ -4,7 +4,7 @@
"php-web-framework"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Organization"
],
"update": {
"timestamp": "2025-05-08T21:13:01.765713",
"author": {
"id": 1506555,
"login": "danielkoster"
}
}
}

View File

@@ -1,14 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Logistics"
],
"update": {
"timestamp": "2025-05-08T20:55:30.191802",
"author": {
"id": 31495062,
"login": "jeremywillans"
}
}
}

View File

@@ -4,7 +4,7 @@
"CI/CD"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"DevOps"
],
"update": {

View File

@@ -4,7 +4,7 @@
"go-web-framework"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-07T17:54:03Z",

View File

@@ -1,14 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Finance"
],
"update": {
"timestamp": "2025-04-22T18:36:00.262663",
"author": {
"id": 41155244,
"login": "giovannicalabro"
}
}
}

View File

@@ -5,7 +5,7 @@
],
"categories": [
"File-Sharing-&-Sync",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-05T01:06:46Z",

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Media"
],
"update": {
"timestamp": "2025-04-22T17:31:36.311538",
"author": {
"id": 2319445,
"login": "samcro1967"
}
}
}

View File

@@ -5,7 +5,7 @@
"browser-inspector"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Web-Browsers"
],
"update": {

View File

@@ -3,10 +3,10 @@
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-05-08T20:18:32.644615",
"timestamp": "2022-08-16T17:22:56Z",
"author": {
"id": 61716607,
"login": "lesolski"
"id": 71191962,
"name": "walkxcode"
}
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Cloud-Computing",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -5,7 +5,7 @@
"online-ide"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Cloud-Computing"
],
"update": {

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Web-Browsers",
"Developer-Tools",
"Developper-Tools",
"Cloud-Computing"
],
"update": {

View File

@@ -5,7 +5,7 @@
"ide"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58Z",

View File

@@ -4,7 +4,7 @@
"Code Analytics"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Monitoring-Tools"
],
"update": {

View File

@@ -1,17 +0,0 @@
{
"base": "png",
"aliases": [
"comfy",
"comfyui"
],
"categories": [
"Design"
],
"update": {
"timestamp": "2025-05-08T21:28:48.301900",
"author": {
"id": 76230780,
"login": "TheRedCyclops"
}
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Web-Browsers",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Networking-Tools",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-01-01T11:20:28Z",

View File

@@ -4,7 +4,7 @@
"App Deployment"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Server-Panels"
],
"update": {

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Organization"
],
"update": {
"timestamp": "2025-05-08T19:48:01.476843",
"author": {
"id": 132705454,
"login": "crocofied"
}
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Programming-Languages",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -1,12 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-04-27T15:11:25.174121",
"author": {
"id": 77530549,
"login": "sergi0g"
}
}
}

View File

@@ -1,14 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Hardware"
],
"update": {
"timestamp": "2025-05-08T20:21:10.157803",
"author": {
"id": 33011496,
"login": "Zachmoore111"
}
}
}

View File

@@ -5,7 +5,7 @@
"the-cyber-chef"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Containerization-&-Orchestration",
"Developer-Tools",
"Developper-Tools",
"Cloud-Computing"
],
"update": {

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Programming-Languages",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Containerization-&-Orchestration",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -6,7 +6,7 @@
],
"categories": [
"File-Sharing-&-Sync",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-07T17:54:03Z",

View File

@@ -1,14 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Media"
],
"update": {
"timestamp": "2025-04-22T17:34:50.612136",
"author": {
"id": 2319445,
"login": "samcro1967"
}
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Monitoring-Tools",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58",

View File

@@ -4,7 +4,7 @@
"Text Editor"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58Z",

View File

@@ -6,7 +6,7 @@
"categories": [
"Networking-Tools",
"Smart-Home",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -1,16 +0,0 @@
{
"base": "svg",
"aliases": [
"ems-esp"
],
"categories": [
"Cloud"
],
"update": {
"timestamp": "2025-04-22T16:56:16.429675",
"author": {
"id": 33312839,
"login": "vladbejenaru"
}
}
}

View File

@@ -1,14 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"Finance"
],
"update": {
"timestamp": "2025-04-22T18:33:50.980132",
"author": {
"id": 41155244,
"login": "giovannicalabro"
}
}
}

View File

@@ -5,7 +5,7 @@
"decentralized-apps"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Finance-&-Banking"
],
"update": {

View File

@@ -5,7 +5,7 @@
"idea-voting"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Office-Suites"
],
"update": {

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Media-Servers",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Cloud-Computing",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-09-11T09:55:09Z",

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-01-05T14:11:25Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58Z",

View File

@@ -3,7 +3,7 @@
"aliases": [],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58Z",

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-06-01T17:47:33Z",

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2022-10-03T09:35:40Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Version-Control-Systems",
"Developer-Tools",
"Developper-Tools",
"DevOps"
],
"update": {

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Security",
"Developer-Tools",
"Developper-Tools",
"Version-Control-Systems"
],
"update": {

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Office-Suites",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Monitoring-Tools",
"Developer-Tools",
"Developper-Tools",
"Networking-Tools"
],
"update": {

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Note-taking-Apps",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-06-01T17:38:50Z",

View File

@@ -1,15 +0,0 @@
{
"base": "svg",
"aliases": [],
"categories": [
"File",
"Cloud"
],
"update": {
"timestamp": "2025-04-22T17:02:14.266586",
"author": {
"id": 105980537,
"login": "keywal"
}
}
}

View File

@@ -1,12 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-04-22T17:37:06.429465",
"author": {
"id": 2319445,
"login": "samcro1967"
}
}
}

View File

@@ -5,7 +5,7 @@
"app-monetization"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"E-commerce-Platforms"
],
"update": {

View File

@@ -5,7 +5,7 @@
"tracking-tool"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -5,7 +5,7 @@
"website-performance"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Search-Engines"
],
"update": {

View File

@@ -5,7 +5,7 @@
"analytics-tool"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
"content-management-system"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Gaming"
],
"update": {
"timestamp": "2025-04-25T10:38:43.384959",
"author": {
"id": 48109134,
"login": "jdcool00"
}
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Networking-Tools",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -6,7 +6,7 @@
],
"categories": [
"Security",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2024-10-20T17:24:03Z",

View File

@@ -5,7 +5,7 @@
"text-paste-service"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-08-10T08:28:08Z",

View File

@@ -4,7 +4,7 @@
"Script Collection"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-07T17:54:03Z",

View File

@@ -6,7 +6,7 @@
"categories": [
"Password-Managers",
"Security",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2025-01-05T22:18:03Z",

View File

@@ -5,7 +5,7 @@
"website-builder"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -3,10 +3,14 @@
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-05-08T21:06:35.478852",
"timestamp": "2024-10-20T17:24:03Z",
"author": {
"id": 3457368,
"login": "tankerkiller125"
"id": 71191962,
"name": "walkxcode"
}
},
"colors": {
"dark": "homebox",
"light": "homebox-light"
}
}

View File

@@ -6,7 +6,7 @@
],
"categories": [
"AI-&-LLM-Platforms",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-16T22:04:08Z",

View File

@@ -5,7 +5,7 @@
"jamstack-tool"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -1,12 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-05-08T20:51:04.195894",
"author": {
"id": 209011735,
"login": "StuckAntichris"
}
}
}

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Media"
],
"update": {
"timestamp": "2025-04-22T18:22:01.834809",
"author": {
"id": 2319445,
"login": "samcro1967"
}
}
}

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Containerization-&-Orchestration",
"Developer-Tools",
"Developper-Tools",
"Server-Panels"
],
"update": {

View File

@@ -5,7 +5,7 @@
"modern-web-dev"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T20:27:58",

View File

@@ -3,7 +3,7 @@
"aliases": [],
"categories": [
"Programming-Languages",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -4,7 +4,7 @@
"Static Site Generator"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Web-Browsers"
],
"update": {

View File

@@ -3,14 +3,10 @@
"aliases": [],
"categories": [],
"update": {
"timestamp": "2025-04-28T18:59:35.544514",
"timestamp": "2023-05-26T20:42:05Z",
"author": {
"id": 71191962,
"login": "lammersbjorn"
"name": "walkxcode"
}
},
"colors": {
"light": "jellystat",
"dark": "jellystat-dark"
}
}

View File

@@ -4,7 +4,7 @@
"CI/CD"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"DevOps"
],
"update": {

View File

@@ -5,7 +5,7 @@
"website-builder"
],
"categories": [
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-04-13T13:56:18Z",

View File

@@ -1,14 +0,0 @@
{
"base": "png",
"aliases": [],
"categories": [
"Media"
],
"update": {
"timestamp": "2025-04-22T17:43:20.146082",
"author": {
"id": 2319445,
"login": "samcro1967"
}
}
}

View File

@@ -4,7 +4,7 @@
"Workspace Streaming"
],
"categories": [
"Developer-Tools",
"Developper-Tools",
"Cloud-Computing"
],
"update": {

View File

@@ -5,7 +5,7 @@
],
"categories": [
"Containerization-&-Orchestration",
"Developer-Tools"
"Developper-Tools"
],
"update": {
"timestamp": "2023-08-10T08:28:08Z",

Some files were not shown because too many files have changed in this diff Show More