Skip to content

Commit

Permalink
REFACTOR: Removed field for keeping track of whether project has thum…
Browse files Browse the repository at this point in the history
…bnail

- Not needed anymore as it can be read from the file system
  • Loading branch information
mbeps committed Feb 3, 2024
1 parent e9249a0 commit 69582e2
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
40 changes: 20 additions & 20 deletions database/projects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ const webdevProjects: ProjectInterface[] = [
algorithms,
],
category: "Full-Stack Web Development",
hasImage: true,

},
{
name: `Ringmaster Messaging`,
Expand Down Expand Up @@ -227,7 +227,7 @@ const webdevProjects: ProjectInterface[] = [
algorithms,
],
category: "Full-Stack Web Development",
hasImage: true,

},
{
name: `Magician AI`,
Expand Down Expand Up @@ -274,7 +274,7 @@ const webdevProjects: ProjectInterface[] = [
algorithms,
],
category: "Full-Stack Web Development",
hasImage: true,

},
{
name: `Drumroll Music`,
Expand Down Expand Up @@ -313,7 +313,7 @@ const webdevProjects: ProjectInterface[] = [
algorithms,
],
category: "Full-Stack Web Development",
hasImage: true,

},
{
name: "Joker Notes",
Expand Down Expand Up @@ -353,7 +353,7 @@ const webdevProjects: ProjectInterface[] = [
],
category: "Full-Stack Web Development",
deploymentURL: "https://joker-notes.vercel.app/",
hasImage: true,

},
];

Expand Down Expand Up @@ -403,7 +403,7 @@ const extraWebDevProjects: ProjectInterface[] = [
algorithms,
],
repositoryURL: "https://github.com/mbeps/quizmify",
hasImage: true,

},
{
name: `Sideshow Articles`,
Expand Down Expand Up @@ -437,7 +437,7 @@ const extraWebDevProjects: ProjectInterface[] = [
],
category: "Full-Stack Web Development",
archived: true,
hasImage: true,

},
{
name: `Noodle`,
Expand Down Expand Up @@ -482,7 +482,7 @@ const extraWebDevProjects: ProjectInterface[] = [
],
category: "Full-Stack Web Development",
archived: true,
hasImage: true,

},
{
name: `ConvoGPT`,
Expand Down Expand Up @@ -931,7 +931,7 @@ const gameDevProjects: ProjectInterface[] = [
black,
],
category: "Game Development",
hasImage: true,

},
{
name: "Surface Fight",
Expand All @@ -953,7 +953,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/surface-fight",
archived: true,
hasImage: true,

},
{
name: "Platformer",
Expand All @@ -976,7 +976,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/platformer",
archived: true,
hasImage: true,

},
{
name: "Platformer Death Walk",
Expand All @@ -999,7 +999,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/platformer-death-walk",
archived: true,
hasImage: true,

},
{
name: "Coding Breakout",
Expand All @@ -1021,7 +1021,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/coding-break-out",
archived: true,
hasImage: true,

},
{
name: "Catch Maruf",
Expand All @@ -1043,7 +1043,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/catch-maruf",
archived: true,
hasImage: true,

},
{
name: "Against Gravity",
Expand All @@ -1065,7 +1065,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/against-gravity",
archived: true,
hasImage: true,

},
{
name: "Scrolling Shooter",
Expand All @@ -1086,7 +1086,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/scrolling-shooter",
archived: true,
hasImage: true,

},
{
name: "Dungeon",
Expand All @@ -1107,7 +1107,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/dungeon-",
archived: true,
hasImage: true,

},
{
name: " Veg Ninja",
Expand All @@ -1129,7 +1129,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/vej-ninja",
archived: true,
hasImage: true,

},
{
name: " Angry Cats Space",
Expand All @@ -1151,7 +1151,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/angry-cats-space",
archived: true,
hasImage: true,

},
{
name: " Angry Cats",
Expand All @@ -1173,7 +1173,7 @@ const gameDevProjects: ProjectInterface[] = [
],
deploymentURL: "https://bepary-games.itch.io/angry-cats-space",
archived: true,
hasImage: true,

},
];

Expand Down
1 change: 0 additions & 1 deletion interfaces/material/ProjectInterface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,4 @@ export default interface ProjectInterface extends MaterialInterface {
repositoryURL?: string;
deploymentURL?: string;
thumbnailImage?: string; // added dynamically from file system
hasImage?: boolean; // used for adding image path to imageURL
}

0 comments on commit 69582e2

Please sign in to comment.