Merge branch 'ciderapp:develop' into develop
This commit is contained in:
commit
4bc31005b9
12 changed files with 196 additions and 81 deletions
|
@ -622,7 +622,10 @@ export class BrowserWindow {
|
|||
const wpBase64: string = await readFileSync(wpPath, 'base64')
|
||||
// add the data:image properties
|
||||
const wpData: string = `data:image/png;base64,${wpBase64}`
|
||||
event.returnValue = wpData;
|
||||
event.returnValue = {
|
||||
path: wpPath,
|
||||
data: wpData
|
||||
};
|
||||
})
|
||||
|
||||
ipcMain.handle("reinstall-widevine-cdm", () => {
|
||||
|
|
|
@ -128,7 +128,8 @@ export class Store {
|
|||
"windowLayout": "default"
|
||||
},
|
||||
"windowControlPosition": 0, // 0 default right
|
||||
"nativeTitleBar": false
|
||||
"nativeTitleBar": false,
|
||||
"uiScale": 1.0
|
||||
},
|
||||
"lyrics": {
|
||||
"enable_mxm": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue