Skip to content

Commit

Permalink
feat: overlay for confetti!
Browse files Browse the repository at this point in the history
  • Loading branch information
iamEvanYT committed Dec 1, 2024
1 parent 52e10ef commit dd9ac54
Show file tree
Hide file tree
Showing 24 changed files with 314 additions and 475 deletions.
22 changes: 15 additions & 7 deletions backend/forge.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ const config: ForgeConfig = {

// Linux
new MakerRpm({
"options": {
"name": "quick-finder",
"genericName": "QuickFinder",
options: {
name: "quick-finder",
genericName: "QuickFinder"
}
}),
new MakerDeb({
"options": {
"name": "quick-finder",
"genericName": "QuickFinder",
options: {
name: "quick-finder",
genericName: "QuickFinder"
}
})
],
Expand All @@ -55,11 +55,19 @@ const config: ForgeConfig = {
entryPoints: [
{
name: "main_window",
html: "./src/out/index.html",
html: "./src/out/spotter.html",
js: "./src/renderer.ts",
preload: {
js: "./src/preload.ts"
}
},
{
name: "overlay_window",
html: "./src/out/overlay.html",
js: "./src/windows/overlay/renderer.ts",
preload: {
js: "./src/windows/overlay/preload.ts"
}
}
]
}
Expand Down
Loading

0 comments on commit dd9ac54

Please sign in to comment.