From b475948e4e68dac1a5e6d3ee2b6dc9831cc797a2 Mon Sep 17 00:00:00 2001 From: Anime4000 Date: Mon, 8 Jul 2024 22:28:09 +0800 Subject: [PATCH] neg profile fix --- IFME/Properties/AssemblyInfo.cs | 6 +++--- IFME/frmMain.cs | 15 +++++++++------ changelog.txt | 5 +++++ 3 files changed, 17 insertions(+), 9 deletions(-) diff --git a/IFME/Properties/AssemblyInfo.cs b/IFME/Properties/AssemblyInfo.cs index aa793e7..aa10f5c 100644 --- a/IFME/Properties/AssemblyInfo.cs +++ b/IFME/Properties/AssemblyInfo.cs @@ -9,7 +9,7 @@ [assembly: AssemblyDescription("Allow user to compress raw media")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Anime4000")] -[assembly: AssemblyProduct("Astral Reverie")] +[assembly: AssemblyProduct("Luminous Veil")] [assembly: AssemblyCopyright("© 2024 Anime4000")] [assembly: AssemblyTrademark("Anime4000, MulticoreWare, VideoLAN, IETF, Xiph.Org Foundation, Josh Coalson, Erik de Castro Lopo, Jean Le Feuvre, People@GPAC, FFmpeg Team, Nero AG, Moritz Bunkus, AMD, Intel, Nvidia, Google, Alliance for Open Media, et al.")] [assembly: AssemblyCulture("")] @@ -32,5 +32,5 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("8.3.2")] -[assembly: AssemblyFileVersion("8.3.2")] +[assembly: AssemblyVersion("8.3.3")] +[assembly: AssemblyFileVersion("8.3.3")] diff --git a/IFME/frmMain.cs b/IFME/frmMain.cs index 66a9162..fb62050 100644 --- a/IFME/frmMain.cs +++ b/IFME/frmMain.cs @@ -333,15 +333,18 @@ private void lstFile_SelectedIndexChanged(object sender, EventArgs e) var data = lstFile.SelectedItems[0].Tag as MediaQueue; var isImgSq = false; + // Profile + if (data.ProfileId >= 0) + { + if (Profiles.Items[data.ProfileId].Container == data.OutputFormat) + cboProfile.SelectedIndex = data.ProfileId; + else + cboProfile.SelectedIndex = -1; + } + // Format cboFormat.SelectedIndex = (int)data.OutputFormat; - // Profile - if (Profiles.Items[data.ProfileId].Container == data.OutputFormat) - cboProfile.SelectedIndex = data.ProfileId; - else - cboProfile.SelectedIndex = -1; - // MP4 Remux Test chkVideoMP4Compt.Checked = data.FastMuxVideo; chkAudioMP4Compt.Checked = data.FastMuxAudio; diff --git a/changelog.txt b/changelog.txt index 6f93a3f..a3c8536 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,8 @@ +Version 8.3.3 (Luminous Veil) +----------------------------- +[Fixed] Add another file when selected profile is blank cause a crash +[Update] FFmpeg (Non-Free build) updated to version git-2024-07-07-0619138. + Version 8.3.2 (Astral Reverie) ------------------------------ [New] Added ETA in Progress status.