tune mas version

pull/289/head
Mikael Finstad 2020-04-01 18:22:52 +08:00
rodzic 296e844323
commit 649042d9b6
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -104,6 +104,7 @@ const calcShouldShowKeyframes = (zoomedDuration) => (zoomedDuration != null && z
const commonFormats = ['mov', 'mp4', 'matroska', 'mp3', 'ipod']; const commonFormats = ['mov', 'mp4', 'matroska', 'mp3', 'ipod'];
const isMasBuild = window.process.mas;
// TODO flex // TODO flex
const topBarHeight = 32; const topBarHeight = 32;
@ -1170,7 +1171,7 @@ const App = memo(() => {
const outDirPath = getOutDir(customOutDir, firstFile); const outDirPath = getOutDir(customOutDir, firstFile);
const hasDirWriteAccess = await checkDirWriteAccess(outDirPath); const hasDirWriteAccess = await checkDirWriteAccess(outDirPath);
if (!hasDirWriteAccess) { if (!hasDirWriteAccess) {
if (window.process.mas) { if (isMasBuild) {
await Swal.fire({ await Swal.fire({
title: i18n.t('Mac OS file security'), title: i18n.t('Mac OS file security'),
icon: 'info', icon: 'info',
@ -1456,7 +1457,7 @@ const App = memo(() => {
), [AutoExportToggler, askBeforeClose, autoMerge, autoSaveProjectFile, customOutDir, invertCutSegments, keyframeCut, renderCaptureFormatButton, renderOutFmt, timecodeShowFrames, setOutputDir, onWheelTunerRequested, language]); ), [AutoExportToggler, askBeforeClose, autoMerge, autoSaveProjectFile, customOutDir, invertCutSegments, keyframeCut, renderCaptureFormatButton, renderOutFmt, timecodeShowFrames, setOutputDir, onWheelTunerRequested, language]);
useEffect(() => { useEffect(() => {
loadMifiLink().then(setMifiLink); if (!isMasBuild) loadMifiLink().then(setMifiLink);
}, []); }, []);
useEffect(() => { useEffect(() => {