mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-10 18:25:05 +01:00
fixes
-bugfix at name of movies -bugfix US unlock got stuck - replaced ffmpeg.exe with newer version
This commit is contained in:
parent
fac153649c
commit
c2d0753b1e
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -49,6 +49,8 @@ Public Class GeckoFX
|
|||||||
Main.Pause(1)
|
Main.Pause(1)
|
||||||
If Main.LoginDialog = True Then
|
If Main.LoginDialog = True Then
|
||||||
Login.ShowDialog()
|
Login.ShowDialog()
|
||||||
|
Else
|
||||||
|
WebBrowser1.Navigate("https://www.crunchyroll.com/")
|
||||||
End If
|
End If
|
||||||
|
|
||||||
End If
|
End If
|
||||||
@ -375,6 +377,7 @@ Public Class GeckoFX
|
|||||||
MsgBox("copied: " + Chr(34) + WebBrowser1.Url.ToString + Chr(34))
|
MsgBox("copied: " + Chr(34) + WebBrowser1.Url.ToString + Chr(34))
|
||||||
Catch ex As Exception
|
Catch ex As Exception
|
||||||
End Try
|
End Try
|
||||||
|
|
||||||
'MsgBox(WebBrowser1.Document.Cookie)
|
'MsgBox(WebBrowser1.Document.Cookie)
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
|
@ -90,7 +90,8 @@ Public Class Login
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub pictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click
|
Private Sub pictureBox3_Click(sender As Object, e As EventArgs) Handles pictureBox3.Click
|
||||||
Main.UserCloseDialog = True
|
'Main.UserCloseDialog = True
|
||||||
|
GeckoFX.WebBrowser1.Navigate("https://www.crunchyroll.com/")
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
@ -111,6 +112,7 @@ Public Class Login
|
|||||||
End Sub
|
End Sub
|
||||||
|
|
||||||
Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click
|
Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click
|
||||||
|
GeckoFX.WebBrowser1.Navigate("https://www.crunchyroll.com/")
|
||||||
Me.Close()
|
Me.Close()
|
||||||
End Sub
|
End Sub
|
||||||
End Class
|
End Class
|
@ -652,13 +652,32 @@ Public Class Main
|
|||||||
|
|
||||||
#Region "Name von Crunchyroll"
|
#Region "Name von Crunchyroll"
|
||||||
|
|
||||||
|
'Dim Bug_Deutsch As String = "-"
|
||||||
|
'If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
||||||
|
' Bug_Deutsch = ":"
|
||||||
|
'End If
|
||||||
|
'Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
|
'CR_FilenName = CR_Name_by_Titel_2(0).Trim()
|
||||||
|
|
||||||
Dim Bug_Deutsch As String = "-"
|
Dim Bug_Deutsch As String = "-"
|
||||||
If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
||||||
Bug_Deutsch = ":"
|
Bug_Deutsch = ":"
|
||||||
End If
|
End If
|
||||||
Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
CR_FilenName = CR_Name_by_Titel_2(0).Trim()
|
Dim CR_Title As String = Nothing
|
||||||
|
If CR_Name_by_Titel_2.Count > 2 Then
|
||||||
|
For i As Integer = 0 To CR_Name_by_Titel_2.Count - 2
|
||||||
|
If CR_Title = Nothing Then
|
||||||
|
CR_Title = CR_Name_by_Titel_2(i).Trim()
|
||||||
|
Else
|
||||||
|
CR_Title = CR_Title + " " + CR_Name_by_Titel_2(i).Trim()
|
||||||
|
End If
|
||||||
|
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
CR_FilenName = CR_Title
|
||||||
|
CR_FilenName_Backup = CR_Title
|
||||||
|
'MsgBox(CR_FilenName)
|
||||||
If CBool(InStr(WebbrowserText, "<h4>")) Then ' false on movie true on series
|
If CBool(InStr(WebbrowserText, "<h4>")) Then ' false on movie true on series
|
||||||
Dim CR_Name_1 As String() = WebbrowserText.Split(New String() {"<h4>"}, System.StringSplitOptions.RemoveEmptyEntries)
|
Dim CR_Name_1 As String() = WebbrowserText.Split(New String() {"<h4>"}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
Dim CR_Name_2 As String() = CR_Name_1(1).Split(New String() {"</h4>"}, System.StringSplitOptions.RemoveEmptyEntries) '(New [Char]() {"-"})
|
Dim CR_Name_2 As String() = CR_Name_1(1).Split(New String() {"</h4>"}, System.StringSplitOptions.RemoveEmptyEntries) '(New [Char]() {"-"})
|
||||||
@ -1095,12 +1114,32 @@ Public Class Main
|
|||||||
#Region "Name von Crunchyroll"
|
#Region "Name von Crunchyroll"
|
||||||
If TextBox2_Text = Nothing Or TextBox2_Text = "Name of the Anime" Then
|
If TextBox2_Text = Nothing Or TextBox2_Text = "Name of the Anime" Then
|
||||||
'MsgBox("True")
|
'MsgBox("True")
|
||||||
|
'Dim Bug_Deutsch As String = "-"
|
||||||
|
'If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
||||||
|
' Bug_Deutsch = ":"
|
||||||
|
'End If
|
||||||
|
'Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
|
'CR_FilenName = CR_Name_by_Titel_2(0).Trim() '+ " " + CR_Name_by_Script2(0).Trim
|
||||||
|
|
||||||
Dim Bug_Deutsch As String = "-"
|
Dim Bug_Deutsch As String = "-"
|
||||||
If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
If CBool(InStr(WebbrowserTitle, "Anschauen auf Crunchyroll")) Then
|
||||||
Bug_Deutsch = ":"
|
Bug_Deutsch = ":"
|
||||||
End If
|
End If
|
||||||
Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
Dim CR_Name_by_Titel_2 As String() = WebbrowserTitle.Split(New String() {Bug_Deutsch}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
CR_FilenName = CR_Name_by_Titel_2(0).Trim() '+ " " + CR_Name_by_Script2(0).Trim
|
Dim CR_Title As String = Nothing
|
||||||
|
If CR_Name_by_Titel_2.Count > 2 Then
|
||||||
|
For i As Integer = 0 To CR_Name_by_Titel_2.Count - 2
|
||||||
|
If CR_Title = Nothing Then
|
||||||
|
CR_Title = CR_Name_by_Titel_2(i).Trim()
|
||||||
|
Else
|
||||||
|
CR_Title = CR_Title + " " + CR_Name_by_Titel_2(i).Trim()
|
||||||
|
End If
|
||||||
|
|
||||||
|
Next
|
||||||
|
End If
|
||||||
|
CR_FilenName = CR_Title
|
||||||
|
CR_FilenName_Backup = CR_Title
|
||||||
|
'MsgBox(CR_FilenName)
|
||||||
|
|
||||||
If CBool(InStr(WebbrowserText, "<h4>")) Then ' false on movie true on series
|
If CBool(InStr(WebbrowserText, "<h4>")) Then ' false on movie true on series
|
||||||
Dim CR_Name_1 As String() = WebbrowserText.Split(New String() {"<h4>"}, System.StringSplitOptions.RemoveEmptyEntries)
|
Dim CR_Name_1 As String() = WebbrowserText.Split(New String() {"<h4>"}, System.StringSplitOptions.RemoveEmptyEntries)
|
||||||
|
@ -32,6 +32,6 @@ Imports System.Runtime.InteropServices
|
|||||||
' übernehmen, indem Sie "*" eingeben:
|
' übernehmen, indem Sie "*" eingeben:
|
||||||
' <Assembly: AssemblyVersion("1.0.*")>
|
' <Assembly: AssemblyVersion("1.0.*")>
|
||||||
|
|
||||||
<Assembly: AssemblyVersion("3.2.7")>
|
<Assembly: AssemblyVersion("3.2.8")>
|
||||||
<Assembly: AssemblyFileVersion("3.2.7")>
|
<Assembly: AssemblyFileVersion("3.2.8")>
|
||||||
<Assembly: NeutralResourcesLanguage("en")>
|
<Assembly: NeutralResourcesLanguage("en")>
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user