Skip to content

Commit ad76ba5

Browse files
authored
Merge pull request #138 from brick-a-brack/dev
Dev
2 parents f3108c8 + cc22b8e commit ad76ba5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+680
-513
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
custom: https://brickfilms.com/offers/
1+
custom: ["https://brickfilms.com/offers/", Brickfilms.com]

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "npm"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
target-branch: "dev"

electron-builder.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ mac:
3030
extendInfo:
3131
NSMicrophoneUsageDescription: Please give us access to your microphone
3232
NSCameraUsageDescription: Please give us access to your camera
33+
NSCameraUseContinuityCameraDeviceType: true
34+
AVCaptureDeviceTypeContinuityCamera: true
3335
com.apple.security.device.audio-input: true
3436
com.apple.security.device.camera: true
3537

electron.vite.config.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,15 @@ export default defineConfig({
1717
plugins: [externalizeDepsPlugin()],
1818
},
1919
preload: {
20+
build: {
21+
sourcemap: true,
22+
},
2023
plugins: [externalizeDepsPlugin()],
2124
},
2225
renderer: {
26+
build: {
27+
sourcemap: true,
28+
},
2329
worker: {
2430
format: 'es',
2531
},

jsconfig.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
"compilerOptions": {
33
"baseUrl": ".",
44
"paths": {
5-
"~": ["*"],
65
"@components/*": ["src/renderer/components/*"],
76
"@core/*": ["src/renderer/core/*"],
87
"@views/*": ["src/renderer/views/*"],
98
"@icons/*": ["src/renderer/icons/*"],
109
"@hooks/*": ["src/renderer/hooks/*"],
11-
"@config": ["src/renderer/config.js"],
12-
"@i18n": ["src/renderer/i18n.js"],
13-
"@common/*": ["src/common/*"]
10+
"@common/*": ["src/common/*"],
11+
"@config-web": ["src/renderer/config.js"],
12+
"@i18n": ["src/renderer/i18n.js"]
1413
}
1514
}
1615
}

0 commit comments

Comments
 (0)