mirror of
https://github.com/mifi/lossless-cut.git
synced 2024-11-23 02:42:37 +01:00
d1661e8706
also let close file dialog obey this setting
19 lines
388 B
JavaScript
19 lines
388 B
JavaScript
const Store = require('electron-store');
|
|
|
|
const store = new Store({
|
|
defaults: {
|
|
captureFormat: 'jpeg',
|
|
customOutDir: undefined,
|
|
keyframeCut: true,
|
|
autoMerge: false,
|
|
timecodeShowFrames: false,
|
|
invertCutSegments: false,
|
|
autoExportExtraStreams: true,
|
|
askBeforeClose: false,
|
|
muted: false,
|
|
autoSaveProjectFile: true,
|
|
},
|
|
});
|
|
|
|
module.exports = store;
|