You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixed ResourceAVMedia not being serialisable and also resources not being destroyed when a project is closed (causing things like file handles to stay open until closing the editor), added online/offline indicator in resource manager (red outline + red header), replaced standard message box usage with custom one (for the dark theme :D), added frame progress text block to export dialog
@@ -103,8 +105,7 @@ public async Task InitWPFApp() {
103
105
ffmpeg.avdevice_register_all();
104
106
}
105
107
catch(Exceptione){
106
-
MessageBox.Show("The FFmpeg libraries (avcodec-60.dll, avfilter-9, and all other 6 dlls files) must be placed in the build folder which is where the EXE is, e.g. /FramePFX/bin/x64/Debug","FFmpeg not found");
107
-
thrownewException("FFmpeg Unavailable. Copy FFmpeg DLLs into the same folder as the app's .exe",e);
108
+
IoC.MessageService.ShowMessage("FFmpeg registration failed","The FFmpeg libraries (avcodec-60.dll, avfilter-9, and all other 6 dlls files) must be placed in the build folder which is where the EXE is, e.g. /FramePFX/bin/x64/Debug",e.GetToString());
MessageBox.Show($"Dropping files directly into the timeline is not implemented yet.\nYou dropped: {string.Join(", ",files)}","STILL TODO");
24
+
IoC.MessageService.ShowMessage("STILL TODO",$"Dropping files directly into the timeline is not implemented yet.\nYou dropped: {string.Join(", ",files)}");
0 commit comments