Skip to content

Commit

Permalink
Merge pull request #28 from syke9p3/feat/add-mint-icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Ender-Wiggin2019 authored May 24, 2024
2 parents 8634552 + 6ae97c2 commit e7f4b33
Show file tree
Hide file tree
Showing 7 changed files with 46 additions and 1 deletion.
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

0 comments on commit e7f4b33

Please sign in to comment.