diff --git a/.vs/Crunchyroll Downloader/v17/.suo b/.vs/Crunchyroll Downloader/v17/.suo index d2803d4..478eba6 100644 Binary files a/.vs/Crunchyroll Downloader/v17/.suo and b/.vs/Crunchyroll Downloader/v17/.suo differ diff --git a/Crunchyroll Downloader/CRD_List_Item.vb b/Crunchyroll Downloader/CRD_List_Item.vb index 8f4dca8..62c6719 100644 --- a/Crunchyroll Downloader/CRD_List_Item.vb +++ b/Crunchyroll Downloader/CRD_List_Item.vb @@ -583,6 +583,7 @@ Public Class CRD_List_Item Dim KeyFile As String = GeräteID() + ".key" Dim KeyFilePath As String = Folder + "\" + KeyFile 'needs to be in the ffmpeg/downloader directory + KeyFilePath = KeyFilePath.Replace("\\", "\") Dim Fragments() As String = InputData.Split(New String() {"#EXT-X-BYTERANGE:"}, System.StringSplitOptions.RemoveEmptyEntries) Dim FragmentsInt As Integer = Fragments.Count - 2 @@ -884,7 +885,10 @@ Public Class CRD_List_Item Dim KeyFile As String = GeräteID() + ".key" KeyFileCache = KeyFile - Dim Evaluator = New Thread(Sub() Me.TS_DownloadAsync(KeyFileUri3, Folder + "\" + KeyFile)) + + Dim KeyFilePath As String = Folder + "\" + KeyFile + KeyFilePath = KeyFilePath.Replace("\\", "\") + Dim Evaluator = New Thread(Sub() Me.TS_DownloadAsync(KeyFileUri3, KeyFilePath)) Evaluator.Start() LoadedKeys.Add(KeyFileUri3) diff --git a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj index 26f21db..e3db406 100644 --- a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj +++ b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj @@ -21,6 +21,21 @@ + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true AnyCPU @@ -34,6 +49,7 @@ false 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 + 1 AnyCPU @@ -47,6 +63,7 @@ false 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 + 1 On @@ -70,11 +87,13 @@ true true true + 1 x64 bin\x64\Release\ 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 + 1 My Project\app.manifest @@ -92,6 +111,7 @@ MinimumRecommendedRules.ruleset 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 true + 1 true @@ -104,6 +124,7 @@ x86 MinimumRecommendedRules.ruleset 41999,42016,42017,42018,42019,42020,42021,42022,42032,42036 + 1 @@ -417,6 +438,18 @@ + + + False + Microsoft .NET Framework 4.8 %28x86 und x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + diff --git a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj.user b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj.user index 944ec00..b7b8614 100644 --- a/Crunchyroll Downloader/Crunchyroll Downloader.vbproj.user +++ b/Crunchyroll Downloader/Crunchyroll Downloader.vbproj.user @@ -2,5 +2,13 @@ ShowAllFiles + publish\ + + + + + + de-DE + false \ No newline at end of file diff --git a/Crunchyroll Downloader/Main.vb b/Crunchyroll Downloader/Main.vb index 2b4c913..c6669e5 100644 --- a/Crunchyroll Downloader/Main.vb +++ b/Crunchyroll Downloader/Main.vb @@ -379,6 +379,7 @@ Public Class Main settings.CefCommandLineArgs.Add("disable-gpu-vsync") settings.CefCommandLineArgs.Add("disable-d3d11") settings.CefCommandLineArgs.Add("disable-gpu-rasterization") + settings.DisableGpuAcceleration() 'settings.CefCommandLineArgs("autoplay-policy") = "no-user-gesture-required" settings.LogFile = Path.Combine(Application.StartupPath, "lib", "browser.log") 'Initialize Cef with the provided settings diff --git a/Crunchyroll Downloader/My Project/AssemblyInfo.vb b/Crunchyroll Downloader/My Project/AssemblyInfo.vb index 359d9cb..43eaf5b 100644 --- a/Crunchyroll Downloader/My Project/AssemblyInfo.vb +++ b/Crunchyroll Downloader/My Project/AssemblyInfo.vb @@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices ' übernehmen, indem Sie "*" eingeben: ' - - + + diff --git a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.dll b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.dll index 36bdd43..feb8257 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.dll and b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.dll differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.pdb b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.pdb index dffbbe2..5f45a98 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.pdb and b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.Core.pdb differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.exe b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.exe index 15c0130..f4c679b 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.exe and b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.exe differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.pdb b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.pdb index 80ed008..2e6f971 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.pdb and b/Crunchyroll Downloader/bin/x64/Debug/CefSharp.BrowserSubprocess.pdb differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.exe b/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.exe index 965e6da..fefe136 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.exe and b/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.pdb index 2fb949c..3764567 100644 Binary files a/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.pdb and b/Crunchyroll Downloader/bin/x64/Debug/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/bin/x64/Debug/WebInterface/error_Page.html b/Crunchyroll Downloader/bin/x64/Debug/WebInterface/error_Page.html index 9a9d098..fddabe2 100644 --- a/Crunchyroll Downloader/bin/x64/Debug/WebInterface/error_Page.html +++ b/Crunchyroll Downloader/bin/x64/Debug/WebInterface/error_Page.html @@ -43,7 +43,7 @@

Failed!

System.IndexOutOfRangeException: Der Index war außerhalb des Arraybereichs. - bei Crunchyroll_Downloader.Main.ProcessRequest(NetworkStream stream, String htmlReq) in D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0 - CefSharp\Crunchyroll Downloader\Main.vb:Zeile 4584.

+ bei Crunchyroll_Downloader.Main.ProcessRequest(NetworkStream stream, String htmlReq) in D:\Projecte\Crunchyroll Downloader - v3.0-final\Crunchyroll-Downloader-v3.0 - CefSharp\Crunchyroll Downloader\Main.vb:Zeile 4636.

\ No newline at end of file diff --git a/Crunchyroll Downloader/einstellungen.vb b/Crunchyroll Downloader/einstellungen.vb index 0ecd406..7ef2f34 100644 --- a/Crunchyroll Downloader/einstellungen.vb +++ b/Crunchyroll Downloader/einstellungen.vb @@ -18,7 +18,7 @@ Public Class Einstellungen Private Sub Einstellungen_Load(sender As Object, e As EventArgs) Handles MyBase.Load - Label6.Text = "You have: v" + Application.ProductVersion.ToString + " Chromium-U15" + Label6.Text = "You have: v" + Application.ProductVersion.ToString BackgroundWorker1.RunWorkerAsync() diff --git a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.exe b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.exe index 965e6da..fefe136 100644 Binary files a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.exe and b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.exe differ diff --git a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.pdb b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.pdb index 2fb949c..3764567 100644 Binary files a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.pdb and b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.pdb differ diff --git a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.vbproj.AssemblyReference.cache b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.vbproj.AssemblyReference.cache index a786c50..204fdef 100644 Binary files a/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.vbproj.AssemblyReference.cache and b/Crunchyroll Downloader/obj/x64/Debug/Crunchyroll Downloader.vbproj.AssemblyReference.cache differ diff --git a/Crunchyroll Downloader/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache b/Crunchyroll Downloader/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache index 33ae3c6..fe21e49 100644 Binary files a/Crunchyroll Downloader/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache and b/Crunchyroll Downloader/obj/x64/Debug/DesignTimeResolveAssemblyReferences.cache differ