Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat:add linux mint icons #28

Merged
merged 2 commits into from
May 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/VtuberLogos/LinuxMint/Mint.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 added public/VtuberLogos/LinuxMint/MintShadowed.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 added public/VtuberLogos/LinuxMint/MintStroked.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
27 changes: 27 additions & 0 deletions src/data/VtuberLogos/LinuxMint.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import { BrandCategory } from "../categories";
import { Author, getCredit } from "../credits";
import { IBrand } from "../type";

export const LinuxMint: IBrand = {
name: "Linux Mint",
categories: [BrandCategory.OS],
logos: [
{
url: "https://raw.githubusercontent.com/syke9p3/Syke-VTuber-Icons/main/Linux%20Mint/Mint.png",
credit: getCredit(Author.syke9p3),
type: "default",
},

{
url: "https://raw.githubusercontent.com/syke9p3/Syke-VTuber-Icons/main/Linux%20Mint/MintStroked.png",
credit: getCredit(Author.syke9p3),
type: "stroked",
},

{
url: "https://raw.githubusercontent.com/syke9p3/Syke-VTuber-Icons/main/Linux%20Mint/MintShadowed.png",
credit: getCredit(Author.syke9p3),
type: "shadowed",
},
],
};
7 changes: 7 additions & 0 deletions src/data/VtuberLogos/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { LinuxMint } from "./LinuxMint";

import { IBrand } from "../type";

export const VTuberLogos: IBrand[] = [
LinuxMint,
];
3 changes: 2 additions & 1 deletion src/data/brand.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ import { CuteVtubingThing } from "./CuteVtubingThing";
import { DownloadedLogos } from "./DownloadedLogos";
import { ProgrammingVTuberLogos } from "./ProgrammingVTuberLogos";
import { ServiceLogos } from "./ServiceLogos";
import { VTuberLogos } from "./VtuberLogos";
import { FindViaTwitterLogos } from "./brands";
import { IBrand } from "./type";

const BRANDS: IBrand[] = [...ProgrammingVTuberLogos, ...FindViaTwitterLogos, ...ServiceLogos, ...DownloadedLogos, ...CuteVtubingThing];
const BRANDS: IBrand[] = [...ProgrammingVTuberLogos, ...FindViaTwitterLogos, ...ServiceLogos, ...DownloadedLogos, ...CuteVtubingThing, ...VTuberLogos];

BRANDS.sort((a, b) => a.name.localeCompare(b.name));

Expand Down
10 changes: 10 additions & 0 deletions src/data/credits.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export enum Author {
mkpoli,
AlexB,
murimurikyu,
syke9p3,
}
export const CREDITS: { [key in Author]: ICredit } = {
[Author.Aikoyori]: {
Expand Down Expand Up @@ -72,6 +73,15 @@ export const CREDITS: { [key in Author]: ICredit } = {
twitter: "https://twitter.com/tsuki_setsuna",
github: "https://github.com/murimurikyu/CuteVtubingThing",
},
[Author.syke9p3]: {
author: "syke9p3",
pk: "syke9p3",
github: "https://github.com/syke9p3",
license: {
url: "https://github.com/syke9p3/Syke-VTuber-Icons/blob/main/LICENSE.md",
name: "CC BY-NC-SA 4.0",
},
},
};

export function getCredit(author: Author): ICredit {
Expand Down